#voice-chat-text-0
1 messages · Page 67 of 1
They aren't as satisfying to fight as the Valkyries were in the first one
They're more varied, yeah
But these guys just kind of feel.... oh look, there's one
I miss the reverence before a val fight
If that makes sense
Short for Valkyrie
Like going into the vaults that hold them, approaching them
Just had a lot better mood building
Any of the fights
No no, again
This was the first game that I'm talking about
Back later
Custom in house thing
Uhh I mean there's nothing to checkout? I haven't touched the cpp stuff
It's all a bit of a nightmare
(sorry, was stuck in meetings)
user = int(input('enter your :'))
print('*'*user)
@cedar glacier 👋
class Solution:
def lengthOfLastWord(self, s: str) -> int:
res = 0
for char in reversed(s):
if res == 0 and char == " ":
continue
if res != 0:
if char != " ":
res += 1
else:
return res
!e
string = ' this is the test string '
string = string.strip()
string = string.split(' ')
print(len(string))
for i, v in enumerate(string):
last = len(string) - 1
print(string[last])
noob says...
@pallid hazel :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | 5
002 | string
i = len(s)
k = 0
temp = 0
word = 0
while i != 0:
i-=1
if b[i]%32 == 0:
temp = k
if temp > word:
word = temp
k = 0
continue
else:
k+=1
return word```
for _ in k:
class Solution:
def lengthOfLastWord(self, string: str) -> int:
character_count = 0
for character in reversed(string):
if character_count == 0 and character == " ":
continue
if character != " ":
character_count += 1
else:
break
return character_count
b = bytes(s, 'utf-8')
i = len(s)
k = 0
while i != 0:
i-=1
if b[i] != 32:
k+=1
if b[i-1] == 32:
break
return k
beats 71% in time 74% in memory
@tepid edge character_count += 1 if character != " " else return character_count
That will make this part shorter:
if character != " ":
character_count += 1
else:
return character_count
It's a ternary expression
I'm still learning and following along, are we looking for shortest solution or more efficient?
why have this channel instead of just using the built-in VC chat? just curious
because not everyone has VC permissions yet, and also allows to post code and other stuff
They were coming up with a solution for a problem
now they are talking about communication etiquette online
We can't assume everyone's status, knowledge, and learning abilities, we are all at different levels and cooperation is important in a field like this.
Robustness principle applied to social interactions:
"be conservative in what you do, be liberal in what you accept from others"
They are summoning Italian deities upon each other
I speak 1 language loosely
Nope leaves
👋 @rigid nest
precariousness
"Democracies are designed to give power to the people through free and fair elections. While in theory, a democracy should not put authoritarians in power, there have been instances where this has happened. This can occur due to a variety of reasons, including:
Lack of political education and awareness among the voters, leading them to make uninformed decisions.
A manipulation of the election process or media by the authoritarian candidate or their supporters.
Economic and social conditions that lead to frustration and disillusionment among the population, leading them to turn to authoritarian leaders as a solution.
The emergence of a charismatic and compelling leader who exploits people's fears and anxieties.
It's important for democracies to remain vigilant and protect the integrity of their elections, as well as promote political education and civic engagement to prevent the rise of authoritarianism." -ChatGPT
Juvenoia
(uncountable)
(neologism) The fear or hostility directed by an older generation toward a younger one, or toward youth culture in general.
out of curiosity, what would you recommend to upcoming high school seniors that want to do coding, does it matter at all what college u go to ultimately ?
I'd do cs50 online if you want to learn coding
thanks bro
np
magic
× pip subprocess to install build dependencies did not run successfully.
│ exit code: 1
╰─> See above for output.
note: This error originates from a subprocess, and is likely not a problem with pip.
@lofty drum 👋
@fathom wigeon 👋
Oh right
hello
If you've forgotten PyGame, take it as an opportunity to learn Pylget instead 😄
How's everyone
Ah right ok. Pyglet is what Arcade is built on top of.
Bit more modern than PyGame.
Great
SCP-999 goes to a rave.
hello
You think therefore you are?
@fair wedge 👋
I too thought you said "the crap"
Or maybe the craic
Yep
Dragon fractal
I literally haven't changed it in about 3 years.
Take a strip of paper and keep folding it in half.
Yeah something like that
This is the code to generate it.
Just used search 😄
This is what I mean about folding a strip of paper: https://www.cutoutfoldup.com/216-dragon-curve.php
How to fold a dragon curve out of paper.
Erm, more for throwing away unwanted output.
!e py axiom = '' trans = str.maketrans('AB', 'BA') for i in range(5): axiom = axiom + 'A' + axiom.translate(trans)[::-1] print(axiom)Just from memory.
@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.
AABAABBAAABBABBAAABAABBBAABBABB
There's a similar thing which is supposed to be the "most fair" order to take penalties in 🤔
A new type of shell.
gtg 👋
hello
@willow gate 👋
you guys know any good website to practice python?
@green tinsel 👋
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
!kindling
Kindling Projects
The Kindling projects page on Ned Batchelder's website contains a list of projects and ideas programmers can tackle to build their skills and knowledge.
thanks sure
Can you guide me after completing the basic in python what other things should i learn?
i am doing bsc in computer science
ok
did you come daily on voice chat?
means whenever i need help will you guide me?
ok
have you made any project?
ok you can show me
yes what its called
ok i want to learn
we have to use turtle python?
ok
i understand little bit
did you play chess?
ok
its looks good but its has too much code
ok
ok i will check numpy
yes in college i use it numpy for plotting the graphs
yes
matplotlib
Nice to meet you have some work
@somber heath Have a great day
did you come daily here?
bye
[W:=64,H:=32,M:=128,[[[r:=(x-W/2)*4/W-1,I:=(y-H/2)*4/H,c:=r+complex(0,I),z:=complex(0,0),([(z:=complex(z*z+c),e:=i)for i,_ in zip(range(M+1),iter(lambda:abs(z)>2,True))],print("#" if e==M else ".", end="\n" if x+1==W else ""))] for x in range(W)] for y in range(H)]]
mandelbrot in one line
Too many unnecessary spaces, why waste bytes
¯_(ツ)_/¯
Golf it more
!e ```py
[W:=64,H:=32,M:=128,[[[r:=(x-W/2)*4/W-1,I:=(y-H/2)4/H,c:=r+complex(0,I),z:=complex(0,0),([(z:=complex(zz+c),e:=i)for i,_ in zip(range(M+1),iter(lambda:abs(z)>2,True))],print("#" if e==M else ".", end="\n" if x+1==W else ""))] for x in range(W)] for y in range(H)]]
@ruby hatch :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | ................................................................
002 | ................................................................
003 | ................................................................
004 | ................................................................
005 | ................................................................
006 | ................................................................
007 | ................................................................
008 | ................................................................
009 | ................................................#...............
010 | ..............................................#.................
011 | .............................................###................
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/hosikidapa.txt?noredirect
Okay
!e```py
[W:=64,H:=32,M:=128,[[[r:=(x-W/2)*4/W-1,I:=(y-H/2)4/H,c:=r+complex(0,I),z:=0j,([(z:=complex(zz+c),e:=i)for i,_ in zip(range(M+1),iter(lambda:abs(z)>2,True))],print("#"if e==M else".", end="\n"if x+1==W else""))] for x in range(W)] for y in range(H)]]
@ruby hatch :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | ................................................................
002 | ................................................................
003 | ................................................................
004 | ................................................................
005 | ................................................................
006 | ................................................................
007 | ................................................................
008 | ................................................................
009 | ................................................#...............
010 | ..............................................#.................
011 | .............................................###................
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/zoxayeveva.txt?noredirect
More?
let me see how short I can make it
[W:=64,H:=32,M:=128,[[[r:=(x-W/2)*4/W-1,I:=(y-H/2)*4/H,c:=r+I*1j,z:=0j,([(z:=z*z+c,e:=i)for i,_ in zip(range(M+1),iter(lambda:abs(z)>2,1))],print(".#"[e==M],end="\n"[x+1!=W:]))]for x in range(W)]for y in range(H)]]
"#"if e==M else"." -> ".#"[e==M]
[W:=64,H:=32,M:=128,[[[r:=(x-W/2)*4/W-1,I:=(y-H/2)*4/H,c:=r+complex(0,I),z:=0j,([(z:=complex(z*z+c),e:=i)for(i,_)in zip(range(M+1),iter(lambda:abs(z)>2,1))],print(end="\n"if(x+1==W)else("#"if(e==M)else".")))] for(x)in range(W)] for(y)in range(H)]]
"\n"if x+1==W else"" -> "\n"[x+1!=W:]
Okok
True -> 1
complex(0,I) -> I*1j
Huh
!e```py
[W:=64,H:=32,M:=128,[[[r:=(x-W/2)4/W-1,I:=(y-H/2)4/H,c:=r+I1j,z:=0,([(z:=(zz+c)*1j,e:=i)for(i,_)in zip(range(M+1),iter(lambda:abs(z)>2,1))],print(end="\n"if(x+1==W)else("#"if(e==M)else".")))] for(x)in range(W)] for(y)in range(H)]]
@ruby hatch :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | ...............................................................
002 | ...............................................................
003 | ...............................................................
004 | ...............................................................
005 | ...............................................................
006 | ...............................................................
007 | ...............................................................
008 | ...............................................................
009 | ................................................#..............
010 | ..................................................#............
011 | .................................................###...........
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/uzatohomig.txt?noredirect
(y-H/2)*4/H -> y*4/H-2
!e```py
[W:=64,H:=32,M:=128,[[[r:=(x-W/2)4/W-1,I:=y4/H-2,c:=r+I1j,z:=0,([(z:=(zz+c)*1j,e:=i)for(i,_)in zip(range(M+1),iter(lambda:abs(z)>2,1))],print(end="\n"if(x+1==W)else("#"if(e==M)else".")))] for(x)in range(W)] for(y)in range(H)]]
@ruby hatch :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | ...............................................................
002 | ...............................................................
003 | ...............................................................
004 | ...............................................................
005 | ...............................................................
006 | ...............................................................
007 | ...............................................................
008 | ...............................................................
009 | ................................................#..............
010 | ..................................................#............
011 | .................................................###...........
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/femevenaco.txt?noredirect
Jesus
^
Oh wait
and above that
^can also do this for X/W
[W:=64,H:=32,M:=128,[[[r:=(x-W/2)*4/W-1,I:=y*4/H-2,c:=r+I*1j,z:=0,([(z:=(z*z+c)*1j,e:=i)for(i,_)in zip(range(M+1),iter(lambda:abs(z)>2,1))],print(end="\n"if(x+1==W)else("#"if(e==M)else".")))] for(x)in range(W)] for(y)in range(H)]]
Can you do ot with this code I don't seem to understand
[W:=64,H:=32,M:=128,[[[r:=x*4/W-3,I:=y*4/H-2,c:=r+I*1j,z:=0,([(z:=z*z+c,e:=i)for i,_ in zip(range(M+1),iter(lambda:abs(z)>2,1))],print(".#"[e==M],end="\n"[x+1!=W:]))]for x in range(W)]for y in range(H)]]
Thats a relly big change
still a bunch more easy stuff, but i gotta get to work
Uhm what more
Wdym?
for y in range(M):
for x in range(N):
...
is same as
for i in range(N*M):
x,y=i%N,i//N; ...
my god i can't type today
good
Thank
!e```py
[W:=64,H:=32,M:=128,[[[r:=x4/W-3,I:=y4/H-2,c:=r+I1j,z:=0,([(z:=zz+c,e:=i)for i,_ in zip(range(M+1),iter(lambda:abs(z)>2,1))],print(".#"[e==M],end="\n"[x+1!=W:]))]for x in range(W)]for y in range(H)]]
@ruby hatch :white_check_mark: Your 3.10 eval job has completed with return code 0.
001 | ................................................................
002 | ................................................................
003 | ................................................................
004 | ................................................................
005 | ................................................................
006 | ................................................................
007 | ................................................................
008 | ................................................................
009 | ................................................#...............
010 | ..............................................#.................
011 | .............................................###................
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/eyakoyewus.txt?noredirect
!e```py
[W:=64,H:=32, M:=32,[[[r:=x4/W-3,I:=y4/H-2,c:=r+I1j,z:=0,([(z:=zz+c,e:=i)for i,_ in zip(range(M+1),iter(lambda:abs(z)>2,1))],print(".#"[e==M],end="\n"[x+1!=W:]))]for x in range(W)]for y in range(H)]]
@ruby hatch :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | ................................................................
002 | ................................................................
003 | ................................................................
004 | ................................................................
005 | ................................................................
006 | ................................................................
007 | ................................................................
008 | ................................................................
009 | ................................................#...............
010 | ..............................................#.................
011 | .............................................####...............
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/coboturuzu.txt?noredirect
128 isnt required to render mandelbrot in 64x32 area
@lavish rover the one you've sent is the red one
Y axis is time
Oof
I'm colorblind
Higher up means higher speed right /s
Is there two dots of the same color at the same x?
Or is is different colors and I'm really need to see an eye doctor
guys
Wait half a second for 10²? Doesn't seem right @vocal basin
Ik I am not allowed to say this here, but I am really in a fucked up situation
and I am looking for help
those aren't averaged; they're accumulated
Ah
around 30'000'000 characters per each sample
I wonder if it's the max
(the tests are AAA )
hi
assuming most algorithms' performance depends only on the length of the word and spaces after it
I can try A to throttle full copying solutions
"learn python the hard way" website has "learn javascript instead" written on it in quite an insinuating form
!e
[print("spam"if(i%2)else("eggs"))for(i)in(range(5))]
@ruby hatch :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | eggs
002 | spam
003 | eggs
004 | spam
005 | eggs
Spam eggs
"learn python the hard way"
"First, we will learn C and do a comprehensive deep dive on the Cpython interpreter"
"pep7 > pep8"
!e
[print("spam"if(i%2)else("eggs"))for(i)in(range(10))]
@ruby hatch :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | eggs
002 | spam
003 | eggs
004 | spam
005 | eggs
006 | spam
007 | eggs
008 | spam
009 | eggs
010 | spam
!e
[print("esgpgasm"[i%2::2])for(i)in(range(5))]
@lavish rover :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | eggs
002 | spam
003 | eggs
004 | spam
005 | eggs
🤷♀️
I am professional python developer™
perl?
golfscript*
I don't like second line's formatting
I'll redo this one day when I get it to compile again
https://gist.github.com/afeistel/b32ade307373dbe2e4c71806c4bbf1c4
What does the double semi colon mean
Obh
Ohh okay
start:end:step
omitted values default to None
Yes
I didn't know there was a second colonn
Uh 😐
(joke is that it's a colon)
!e
# perl program generator
print("".join(__import__('random').choices(__import__('string').punctuation, k=80)))
@vocal basin :white_check_mark: Your 3.11 eval job has completed with return code 0.
/:'.\/})}^@&=,/&^$@^#]">.>]~{{((/_:)<&}%:]?@\]\&<',>+[!{#_<!~?)^~~;/;#<~|>({:[-`
@ruby hatch :warning: Your 3.11 eval job has completed with return code 0.
[No output]
@ruby hatch :white_check_mark: Your 3.11 eval job has completed with return code 0.
eg
Guys eg
A
@lime zealot @strange dragon 👋
I like how Perl just responds with EOF and no explanation
I doubt Perl itself realises what it's trying to parse
oh hi there
silence....
what kind of test?
Try to find it
Discord feature that lets you hide secret messages
oh there is smth like that too?
a lot of \u200bs
Its more of an exploit
!rule 5
5. Do not provide or request help on projects that may break laws, breach terms of services, or are malicious or inappropriate.
Rather than a feature
how are we supposed to read em?
?
"Copy Message" then scroll down the copied message
'Test' + 198 * '\u200b' + ' '
if there's any other information, it's probably lost
Its alot of bars
I always have it in my clipboard
I also have this
I just this message
more varied mixing of different spaces is more information-rich than just repeating one multiple times
Its just a bunch of rtl chars
typical unicode behaviour
Yep
@queen frost 👋
Left
he left
😐->🫥
I also did a weird thing with discord using discord timestamp
Dynamic messages
Without having to edit them
this is an actual feature
@fierce crown 👋
And decided I'd be doing a bit of trolling
Hellooo guys
Hi
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
It is required to talk
@crimson badger over here
k so
i created a telegram bot
i need it to answer some commands
🫥
wat
yup
- i have no idea about coding
i have the key of it
buuuuuuuuuuuuut
i need it rn
bruh
f
sup?
chatgpt it ig then
aaaaaaannnnnnddddd i am 13
yeah rn in 2 years
i dont have 2 years
rn+(2years)
frickin hell
rn+(2years)=bot, so, we can rearrange to make rn to subject of the equation giving rn = bot-(2years)
i actually made the code in a webaite
music to novice programmer's ears
if you want to have rn occur in half the time, we can also express this equation as (rn)/2 = bot/2-(1year)
import telebot
API_KEY = os.getenv('API_KEY')
bot = telebot.TeleBot(API_KEY)
@bot.message_handler(func=lambda message: True)
def echo_message(group):
bot.reply_to(message, Join @imgnai to unlock Website.text)
bot.infinity_polling()
this is the code
but then obviously you'll only have half the bot.
lol gtp
cn u find whats wrong wiht this
ChatEMG?
Trying to listen to someone while having adhd is like listening to them with really loud bassy music on the background
....
can u guys find whats wrong with this
You guys know about ChatGPT but do you know about ChatLMG?
Uhm
it looks perfectly correct.
Put in a prompt and it will aim & shoot that object.
then its because i dont have python downloaded right?
well it doesnt
well i don't know, you could put it into an online python interpreter and see what the result is
how does it give u an error if python isnt even intalled
it is in an online python thing but it gives error
its web
I like not sleeping and listening to pure silence for hours and then getting it interrupted by a discussion about the python programming language.
how to chance the color of title bar in tkinter?
whaaaa
get that web python code you gave us and put that on the web.
do you understand?
no
yes its already on a web but it gives error
whats the weberror for the webcode?
i need help
Replit
You can't
If you want you can create your own custom window
yes
Then change the "title" on that custom window
what language were you using on replit @crimson badger ?
python
To make it look like you canged the color of it
Nh i am already into this shit
oooooooooh my bad
webcode into webc++
ok
ok
https://stackoverflow.com/questions/23836000/can-i-change-the-title-bar-in-tkinter I've had a play around with the first example in this and it seems to at least change the colour of the title bar. I haven't gone so far as to apply the window move bug with it, however, but that does seem to be covered.
@crisp gorge
It doesn't look like it's very straightforward.
You probably shouldn't be doing it.
more points
dw now my friend is on amma ask him'
@robust lichen
I wonder why there's a dip around 100
Already slammed today
Wheeeeee
And not in the fun way
So I guess booooo
No I've been running around since
Just fucking spears me to the wall
OOOO YEEEEEEEAH
Randy Savage
Not Rowdy Roddy Piper
What the hell dude
You absolute tool
Yes
Rowdy Roddy Piper
Yes
He is not, believe it or not, Randy Savage
But I guess now you wouldn't see them in the same room ever
Mainly because Savage is dead
Oh right, forgot Piper passed
Right, but Randy Savage prevented the rapture by snapping it into a Slim Jim
Not the most savage of last names to have
Nope
2011 was when the rapture was supposed to happen
But the Macho Man saved us
Nothing has been the same since
Every day has just been hollow
Even the Slim Jims just aren't greasy in the same way
Band name
I have determined that we are nothing - wait
How did you know I was slouching in my chair
Well yeah
I'm at work
Would be weird otherwise
!otn s sausage
• 𝖮pal-the-4d-sausage
• 𝖯y𝖣is-sausage-factory
🙌
... what is the fun way??
Yes
!topic
Off-topic channels
There are three off-topic channels:
• #ot0-psvm’s-eternal-disapproval
• #ot1-perplexing-regexing
• #ot2-never-nester’s-nightmare
The channel names change every night at midnight UTC and are often fun meta references to jokes or conversations that happened on the server.
See our off-topic etiquette page for more guidance on how the channels should be used.
i'm giving up
No it's not a thing, Fury
It changes daily
I mean I can
But the system is just automated
Hey blizter
Hey ami
Hey pat
Hello everyone
?
Oh sweet
hi
🙌
i know it's annoying
but anyone knows pgadmin 4?
First time I've heard of it
Hi!
it's a gui app for postgresql
i think so
i'm a newby at sql
You can drop it in here
but this app is killing me
@molten pewter We used to, I think
@somber heath Nice
@golden sonnet #databases might have someone who has
No guarantees, though.
You'll want to make sure you have a LICENSE file in the root of the repo
I think GitHub has a way to auto gen one
@fast umbra https://choosealicense.com/
Non-judgmental guidance on choosing a license for your open source project
Yep yep!
Forgot that was a thing
It does
i lose my will to live when working with polars
You can actually generate a couple different things under the thing
Oooooooooo
Hemmy like
SaaS
Laying down the mad SaaS
How dare you
Personally I prefer "Sandwich as a Starter"
Delicious justice
I wouldn't recommend MIT for something like this, though
In the Insights tab you can have it generate it
Interesting enough, it doesn't have an option for changing your licensing later
Which I guess makes sense
And these are ones in a similar field?
@dense ibex Sup brah
Ah okay, fair enough
hi
Streaky bacon, because pigs aren't naked enough as they are.
I thought you were saying "Burger Time"
Airwolf Licence clearly superior.
Black Hawk
Or something that rhymes with that
It's not
Porridge is a mixture of any grain, cereal, or legume boiled in water, milk, or broth. It is served hot and made from a variety of cereals such as oats, maize, rice, corn, wheat, and barley. Oatmeal is a type of porridge made from ground, rolled, or flattened oats
Ah
Interesting
Oatmeal is a kind of porridge
Learn something new everyday
@dense ibex Homophobia?
AH
Right
@molten pewter You are back to mouse volume
Or it's a video
@molten pewter I moved you because I think you had a video coming through your mic
iswydt
@molten pewter You still have audio bleed.
I'm only moving you because of the sound
@dense ibex Yeah it more or less makes sense here
HA
Nice
There is nothing better than hearing a Frenchman doing a British accent
How dare you talk about Opal that way
Sure, but you have to reach that point
I was so temped to say that
@somber heath Why whatever do you mean you bastard
@dense ibex In this VC?
Okay good
I mean I don't care what happens in other VCs
Outside of my jurisdiction
@patent forge 👋
hi ! @somber heath
no one roast me?😕
I don't actually know where you're from
iran
AZIZAM
isis 💀
🙌
no thats west of us
i like arabic country
sorry if i have a bad english, it's beacause i'm french
they are lovely
we have arabs in south west
how to make a highlight effect when hovering over a button? (in tkinter)
As in like the font changes or do you mean a tooltip
oooh ok ok i see
@crisp gorge
bro @rugged root how did u get the moderator alumni
yes
Do you mean like the font changing or the little window tooltip
@patent forge I was in the old Moderator Discord server thing
ooooh ok ok
@rugged root no no
Binding a callback function to that button's <Enter> and <Leave> events, by the looks.
@stuck furnace Sup
@terse needle Right there with you, brother
GOG Galaxy?
No
Streaming is way worse
Floppy discs
Installing and having to swap the discs out
And if one of them is bad or gets read wrong
Guess what, you start at the beginning
Yes?
Click Me
Vegas
@dense ibex Gets you into the high tier of a KickStarter
Conflict of interest
tele me lumbrdige?
tele?
Every time I hear RuneScape, that's what I think of
Did he still claim ownership of said pig?
Journalism is incredibly important
Incredibly incredibly important
Andrew Taint
Jake, do you actually like that guy?
The more you say it, the more you start to believe it
Repetition is a powerful influence on the mind
Tudor?
It's alpha because they're still on the concept stage
Why did you even start
Yes you were
Peer pressure doesn't mean they're forcing you to do it
Group influence
Acceptance
You want to be one of the toolbags
Instagram influencers
Ook
As in monkey noise
Not a typo
"There is no such thing as gaslighting. You made it up and you're crazy"
You start the habits now you have a hard time kicking them later down the line
Man you make the best choices
Amazing
I mean
They will patrol public areas
That's their job
clever people than me i need your help
"It'll never happen to me"
i didnt mean to reply to you my gy
What's your question
@terse needle Money
They have to be able to make new ones
And
Like
Eat
import telebot
bot = telebot.TeleBot("my bots key")
@bot.message_handler(commands=['start'])
def echo_message(group):
bot.reply_to(group, "Join @imgnai to unlock Website.text")
bot.infinity_polling()```
this thing doeant work
amma cry
whats the problem with itt
it gives so many errors when i run it
What are the errors
Wait, Flash is still a thing? 
I remember making a website with flash.
It's saying that you're using a variable named message but you don't have it defined anywhere
"It's okay. You can't always be the fastest."
HA
what should i do
@molten pewter There are wrappers that let you use flash anyway
NewGrounds has their own
@rugged root ?
I don't know enough about the telebot library and I currently don't have the time to look, apologies
AAAAAAAA amma go crazy all day on this code
@terse needle It is, but at the same time people have written a paper on the fact that Magic: The Gathering is Turing complete
It's kind of lost its meaning
Or its oomph
You're thinking of the Turing Test 🤔 (Furyo)
There's an academic paper
Fury is ye
https://arxiv.org/abs/1904.09828 A full on god damn academic paper
It kills me inside
"Turing Complete refers to a machine that, given enough time and memory along with the necessary instructions, can solve any computational problem, no matter how complex."
I prefer markdown
Easier to futz with
Try-hard mode
I mean
Accurate
Fair
I'm a try hard for using Sublime Text, honestly
It's comfortable for me
Shareware
It's shareware
Or pesterware
I miss those terms
Yeah
Lets you use it
But it'll bug you
I purchased Sublime Text because I liked the product enough to want to support them
I'm a whale
That's the term
Yep
is there any website that cn fix my code?
I really like Merge
If adequately complex computation begets consciousness, would an adequately complex Magic game be conscious?
It's really clean
?
?
You might try opening up a thread in our help system. See #❓|how-to-get-help for more details on that
they wont fix the code for you though
is there any site that cn fix my code?
cn u?
@crimson badger
no, I can't program
"Advance my skills"
no one is answering 😢
Ah yeah, consistently burnt
@crimson badger they are
I love drinking ash
Fresh ground ash
@dense ibex You're the kid in high school that I just couldn't stand
Just shook my head and felt bad for them
Entitlement
@terse needle Don't Godwin's Law this
Come on
godwin's law?
"An internet argument, given enough time, will eventually mention either Hitler or the Holocaust"
so true
It's just about being responsible and not do it
reminds me of the one where if you keep clicking links on wikipedia you eventually get to Philosophy
Tom Petty theft
I'm actually secretly a deep cover agent for Starbucks
Stop the cowardice and add a Godwin button emoji to this server
Your co-workers as well
it was an unfair comparison but that doesn't make me irresponsible
What would that button even look like
@terse needle No no no
That was to jake
You're fine
I just had to make the Godwin joke
ty
I don't think so
What kind of store is it?
Or is it something different
Ah no
We don't have that
Costa Georgiadis (born 1 January 1964) is an Australian landscape architect and television presenter. He is a second generation Australian of Greek descent. Georgiadis is currently hosting Gardening Australia on ABC and previously appeared as ‘Costa the Garden Gnome’ in the ABC Kids program Get Grubby TV.
@rugged root there's a specific gif that I want and have seen plenty of times but can't find
We have Krispy Kreme 👀
Instead
Phrasing Jake lol
Not something to drop in this server, though
They're huge subs though
Like that's two meals
I love Subway
Those are standard things for subs
I will eat Subway, but it's not great.
@terse needle embrace Subway!!
no it's shit
y
overpriced
If it wasn't?
Meal deals are a British institution
Combos or meals yeah
They claim to
Ehhh
On average they're like 50 cents or so cheaper
Still, that adds up
Depending on how much you go out to eat
tee hee
It's like a sweet citrus sauce
Oh absolutely
That and their honey walnut shrimp
Dear god
It will catch up with you
Late 20's early 30's
The blerch.
Fish is good
Fish dish
tee hee
It runs in most families
"As much as you can"
You can do it like
Never
You have that choice
Don't act like you don't have a choice when you're with your friends
You make that decision
"I'm worried about cancer. VAPE IT UUUUUUUP"
They do
Vapes are terrible for you as well
Smoke is still smoke
You can choose to believe that
Yes, there is still particulate matter in the air, but it's about minimizing exposure
And not like
Dumping it right into your body
Shooting up weed in the alley?
yes
God that would hurt
Huh
Didn't know that
HA
No
Bad
Don't
Okay
Good
Okay, timesheets done
And now for mileage
Yay
They may lead to.conditions that don't have cures too
Cause components aren't completely regulated
Can't remember if it causes popcorn lung or not
Huh interesting
Ah yep
Diacetyl is frequently added to flavored e-liquid to enhance the taste. Inhaling diacetyl causes inflammation and may lead to permanent scarring in the smallest branches of the airways — popcorn lung — which makes breathing difficult. Popcorn lung has no lasting treatment
It's not as delicious as the name might imply
Well done Jake
Nerdalands
some other brothers can't deny
Sure sure
<3
No no no
I just couldn't remember whether it was linked at one point
Yes we do
@zenith radish Again, I just couldn't remember
The electronic cigarette (e-cigarette), for many considered as a safe alternative to conventional cigarettes, has revolutionised the tobacco industry in the last decades. In e-cigarettes, tobacco combustion is replaced by e-liquid heating, leading some manufacturers to propose that e-cigarettes have less harmful respiratory effects than tobacco ...
I can keep looking
No no no no no
Hold on
It's not just the individual
Those around you are affected by it
No
Second hand
Is there any debate that Vapes are same as not smoking?
And it's fine if their kids are exposed?
Am I not doing that?
And again, I'm not doing the popcorn lung thing
Hey Rabbit 👋
Do you reckon they sell popcorn at the Vatican?
@zenith radish Breathe
What is argument? Vaping is bad for you full stop.
Initially it was me trying to remember if at one point popcorn lung was associated with vaping
And it was, specifically to that one chemical
So I was like "okay, cool, I know something now"
Yeah yeah yeah
Not yet
Well
They can test short term things
Yeah we don't have enough potential long term studies
But
It is
For sure
How are things going with the co-worker?
There are more studies coming out showing specifically cardio vascular issues (specifically oxygen binding to red blood cells which seems to be more severe in vaping vs smoking)
And I'll look whenever I'm not stuck doing mileage
And I know, I try to find good stuff
And handle your own taxes and shit
It's a tarp
More and more papers are corroborating each other
@zenith radish Okay, you can't get second hand burger
That's the thing
Chonky boy
We live in a new gilded age where companies have incredible power over us peasants
Would a second hand burger be a knuckle sandwich?
same shit, new Century
hardly, it's a very modern development for companies to have this much power
Yeah that's been the case for a looooooong time.
HA HA HA, no
Well it happened at the turn of the industrial revolution in the US, where companies nickled and dimed every worker and squeezed the life out of them
not at all, the industrial revolution saw the rise of big companies without regulation due to their very fast growth
im sad.. i had to recreate a network site to site matching algo, only running the 1st area. 8k sites.. been 10 minutes and not done 😦
regulation didn't exist because government was the big company
Unpopular (gen z) opinion: I wish everyone still used Facebook
Where else can you find a single platform for all your friends, photos, events, groups, life updates, messages, birthday reminders, free & for sale, memes, etc. Social media peaked in 2011-2016 /-:
8149
352
Right right
A.I. Brain: Companies in the end aren't the problem...humans are the problem 👹
10 minutes of it spinning up? Or of working on it
working on.. scrubbing uncommon names to extract common names to match i think is slowing it down, but is needed
The comments on CERN's Instagram page are pretty interesting 😄
😮
well then the U.K. needs to stop having Curry dishes and start serving their own basic crap as food
A lot of people who think CERN are literally summoning demons.
Word
i idsntify as a meat popsicle
My homie g funk brother yo
I need to watch that again
It's been too long
Kabanos
I live in a small town in the US and the indians at a gas station have some of the best food of the whole town
I'm not sure that you can boil cucumber sandwiches.
@zenith radish
Okay
Honestly
Keep the polish
But what have the lithuanians done
btw hemmy.. if this run is sucessful.. i only have to do 15 more and most are 2x 3x the size 😦
Helped name Lithium?
Just kick you out in particular LP.
Well at least you'll get a better feel for what is where to knock it out a little faster
I mean you all are stuck on an island...of course you got a lot of cross-breeding going on lol
think im gonna research pool.mapping this
Remember, small testing first
this is the smallest area lol
Per year
oo i forgot england is back to pounds
Never left
They never adopted the Euro
wasn't it euro before brexit?
no, it's 1.23USD -> 1 GBP
Yeah, it's called wealth gap, extreme
There should never be billionaires that exist in the world
americans are egoistic 🙂
Hello guys
Wait wait wait
the US is in inner turmoil currently
Am new here
Glad to have you! Welcome to the server
Thanks
@terse needle Countries will just trade debt around anyway
There's a lot bubbling under the surface in the US, that's why I call it a 'New Gilded Age', things seems fine on the surface but a lot of stuff is corrupt and tainted behind the scenes
I think we should have imaginary debt
send politicans to the void
we're good to go
US education is falling apart, basically Tik-Tok has more educational power than any school in the US
well this is just like how negative numbers were invented
greetings

