#voice-chat-text-0
1 messages · Page 941 of 1
well we have AI running in all fields
hmm
True
i love PHYSICS but Chem is like 🤪
if u did study bio then tell me the scientific name of cockroach without googling
sotoru its fr u
😆
btw what was ur most embarrasin moment?
guys
a gal
OHHHHHHHH!
hmm LOL
mine was when i was dancin with my dudes @my class stage bcs my teacher{most strict 1} didnt arrive in the class @ time so i thought he wz gonna be absent bt he was watchin me from the window!
🤪
LOL
LOL
btw gojo u frm india!
hmm
TRUE
yea
i did ctrl+R for no reason
LOL
Ahh cool
hey man i didnt went like that
yea
TRUE
btw i know some reverse engineering
btw he can use GitHub to host his page too!
@haughty idol
https://www.youtube.com/watch?v=WqrCnVAkLIo
WSGI is the foundation of most Python web frameworks, but there's a good chance you've never had to interact with it directly. In this talk we'll explore why it exists, how it works, and what the heck it's doing in your stack.
A great web framework abstracts away all the low-level stuff so that you can focus on the core functionality of your ap...
!e
foo = [1, 2, 3, 4, 5, 6, 7]
print(foo[:])
print(foo[::-1])
print(foo[1:3])
@woeful salmon :white_check_mark: Your eval job has completed with return code 0.
001 | [1, 2, 3, 4, 5, 6, 7]
002 | [7, 6, 5, 4, 3, 2, 1]
003 | [2, 3]
['199', 'A', '200', 'A', 'B', '208', 'A', 'B', 'C', '210', 'B', 'C', 'D', '200', 'E', 'C', 'D', '207', 'E', 'F', 'D', '240', 'E', 'F', 'G', '269', 'F', 'G', 'H', '260', 'G', 'H', '263', 'H']
Refrained from sending in a different Discord:
Maybe using a dict could be helpful?
Also can simplify the logic of winning / losing.
# By assigning negative values as special commands, it helps with handling them separately.
# Using positive values will help for the game.
>>> moves = { 'r': 1, 'p': 2, 's': 3, 'q': -1 }
# Moveset that the CPU / AI can use
>>> cpu_moveset = ( 'r', 'p', 's' )
# Grab user input like normal
...
# Pick the AI's move
>>> cpu = random.choice(cpu_moveset)
# We know a tie is when:
>>> # Same pick ('p'aper is 2; 2-2==0; etc.)
>>> moves[player] - moves[cpu] == 0
# We also know it is a player victor if:
>>> # (P->p & C->r; 2 - 1 == 1) OR
>>> # (P->s & C->p; 3 - 2 == 1)
>>> moves[player] - moves[cpu] == 1
>>> # (P->r & C->s; 1 - 3 == -2)
>>> moves[player] - moves[cpu] == -2
# If neither 1, -2, nor 0, then the computer player won (meaning the value is either -1 or 2; a flip of the player win values if you check the math)
The Indian subcontinent, or simply the subcontinent, is a physiographical region in South Asia. It is situated on the Indian Plate and projecting southwards into the Indian Ocean from the Himalayas. It generally includes the countries: Bangladesh, Bhutan, India, Maldives, Nepal, Pakistan, and Sri Lanka. The terms Indian subcontinent and South As...
The Indian Plate or India Plate is a minor tectonic plate straddling the Equator in the Eastern Hemisphere. Originally a part of the ancient continent of Gondwana, India broke away from the other fragments of Gondwana 100 million years ago and began moving north. Once fused with the adjacent Australian Plate to form a single Indo-Australian Plat...
!e ```py
class A:
def getitem(self, x, /):
return repr(x)
a = A()
print(a[123], a['abc'])
print(a['start':], a[:'stop'], a[::-1])
print(a[1:2, 3:4], a[7, 8, 9])
@primal yacht :white_check_mark: Your eval job has completed with return code 0.
001 | 123 'abc'
002 | slice('start', None, None) slice(None, 'stop', None) slice(None, None, -1)
003 | (slice(1, 2, None), slice(3, 4, None)) (7, 8, 9)
thanks guys!
?
@whole bear :x: Your eval job has completed with return code 1.
001 | File "<string>", line 1
002 | print(“I’m just testing this function”)
003 | ^
004 | SyntaxError: invalid character '“' (U+201C)
@whole bear :x: Your eval job has completed with return code 1.
001 | File "<string>", line 1
002 | print(‘I am just testing this function’)
003 | ^
004 | SyntaxError: invalid character '‘' (U+2018)
This text channel is for the #751591688538947646 voice channel.
oops
but still to you
and the issue you had is you used a "smart quote" style
you need the normal ASCII ' / " for strings
Also:
!e ```py
put your
code here
```
That is the "backtick" / grave symbol.
Type the bot command !code to figure out how to do a code block on Discord.
Who likes this (output is in the replied message)?
class A:
def __getitem__(self, x, /):
return repr(x)
a = A()
print(a[123], a['abc'])
print(a['start':], a[:'stop'], a[::-1])
print(a[1:2, 3:4], a[7, 8, 9])
!e ```py
print(sum(map(int, (1,2,3,4,5))))
@primal yacht :white_check_mark: Your eval job has completed with return code 0.
15
!e
foo = ["1", "2", "3"]
bar = map(int, foo)
print(sum(bar))
print(list(bar))
@woeful salmon :white_check_mark: Your eval job has completed with return code 0.
001 | 6
002 | []
if executable('black')
setlocal formatprg=black\ -q\ -\ 2>\ nul
setlocal formatexpr=
endif
@primal yacht think i'm just gonna solve the part 2 now -> look at your configs and just goto sleep now 🙂 i slept at 5 am yesterday don't wanna repeat that
goodnight 👋
you can look at it another time
Does someone have experience with mySQL?
(using python ofcourse)
when I create a table, it works, but when I insert, it doesn't 🙈
man I have no idea
3 hours on it haha
the database is online, so maybe it's paart of the problem
no, it's online, but if I can creat, why can't I insert
create*
because, If I try to create twice it says error
and I can check inside database, it shows the table that I made
but if I try to insert, nothing happens
like that?
yeah
it didnt work, i tried before
yeah
thanks anyway, frick
I guess I can't curse here haha
aren't we all
ayo
thank you brother
ill try
nope
Yahoy.
Arting.
aha, but what
Howdy howdy.
@somber heath hey you are still here from 6 hrs?
No.
Ohhh
hi
what's up
nothing fancy but thermometer 🌡️ under my arm
haha I am bored isolated
Better under your arm than some alternatives.
yup
i am bored man
Diligence, man!
Ah, well.
I know.
I want to want to do things.
But I don't want to do things.
see u guys by byye
bye
This suuuuuuuuucks
Boss is making me start filling out a spreadsheet for all the IT things I resolve
That includes quick emails
I really really don't want to use a friggin' spreadsheet for this
What's wrong with tickets?
The setup
just write a script to create the spreadsheet lol
Yeah I'm really tempted
What are you going to send someone instead of their ticket number?
The row number of the Excel row?
I'm guessing no change
I mean it's all internal
It's just to report at the end of the month all the stuff I've fixed
Would I prefer a ticket system?
Fuck yes
But I'll probably just write up a little program for my sanity
!tvban 813341106384273429 2w Inappropriate yelling and use of a soundboard in VC is unacceptable. If you decide to return after the voice ban and continue this behavior, you will lose voice permissions permanently.
:ok_hand: applied voice ban to @fading mason until <t:1640010563:f> (13 days and 23 hours).
"And I want a physical copy on my desk"
"...are you particularly attached to it?"
"What?"
"Your desk."
"No, why?"
"Just checking."
later
THUNKCHRAKKK!
"I suppose I asked for this, didn't I?"
"I think so, sir, yes."
map(function, iterable, ...)```
Return an iterator that applies *function* to every item of *iterable*, yielding the results. If additional *iterable* arguments are passed, *function* must take that many arguments and is applied to the items from all iterables in parallel. With multiple iterables, the iterator stops when the shortest iterable is exhausted. For cases where the function inputs are already arranged into argument tuples, see [`itertools.starmap()`](https://docs.python.org/3/library/itertools.html#itertools.starmap "itertools.starmap").
it is a generator object
i'm pretty sure
like an iterable object
that uses a generator in the __iter__
or __next__ 
!e
print(["x","y","z"].pop())
@sweet lodge :white_check_mark: Your eval job has completed with return code 0.
z
I always forget that list.pop() can be used without an index
Performs best without
What's wrong with a database?
Start small, SQLite with a Python CLI
Then make a web frontend with Flask
Then switch to Postgres so you can have multiple concurrent users, because now your boss wants to be able to see too
Before you know it, you're on your fourth rewrite in 3 years, wondering what the hell you're doing with your life
Definitely not speaking from experience BTW
What's wrong with C#?
Boiler plate or lack of experience?
Aren't we all
I'm afraid I can't do that
It really doesn't though
What datapoints do you need to record?
Yeah
Just keep an Excel file of all of the random crap
And have a script pull all the tickets for the month and append them to the file before submitting it
Maybe, but could do all of that with filtering in Excel proper
The only thing that is going to eat at me are the notes
Since I don't like spreadsheets that suddenly have really fat rows
Yes
You do
But you can just use =ROW() for the walk-ins, assuming you don't need distinct values
Yeah
I'm actually working on Advent of Code in Excel
No
My dad said "That's not so hard, I bet I could even do that in Excel"
And I got curious, so now I'm actually trying it
No - he's essentially operations manager for over 200 people
No VBA here, it just confuses me
Yeah, he actually manages his weekly production schedule in Excel, he spends half his day in that damn thing
Lower capacity for energy expenditure right now. Talk later.
hey
what ya guys talking about?
@rugged root
can't you just reduce the size of whole column?
ohh, using google sheets
yeah test it once on gs maybe it will do what you want
he creates games
great games
@whole bear
@molten pewter voice is so clear
my internet will not allow me this even with same headphone
Weird
@rugged root - 2021 day 1 parts 1 and two in Excel completed and on GitHub
https://github.com/shenanigansd/scratchpad/tree/main/challenges/advent_of_code/2021/1/implementations/excel
Want to take bets on how long before I give up?
Entertaiment?
Stupidity?
All of the above?
Day two I got
After that, I have no idea
.
Also need insurance. A really expensive insurance.
I have a um... slightly embarassing question.
What does one need to do after pushing an email password into a public repo?
Asking for a friend.
Other than changing the email password.
Make sure that the password isn't used anywhere else
You may have to start hunting quite a bit. You can revert the commit so long as it's not too deep
But the only really important step is a mass password change of any accounts that share that password
Password was unique. So that bit is covered!
The commit was noticed immediately, so I force pushed to overwrite it.
It is just... Git repo keeps past commits for a while
My friend wants me to play PoE. My poor 4GB laptop cannot handle games though S:
It's weird not having bad breath for once
Like
For years I did because of the plaque built up between the teeth and gums. It was like rocks in there
But since I got all that taken care of, it's such a weird difference
No headaches, no tooth aches, no awful breath
I guess I never realized how much it bothered me before
I was always really self conscious about it
Sorry, just came to mind
If you are not used to it, I can suggest garlic!
You were... having headaches?
Blimey..
Was the dentist visit expensive?
That's.. not too bad I guess.
Mm. I haven't been to a dentist for over a decade.
Really? No donations to the tooth fairy?
That is really unfortunate...
Yea. Those can get really nasty.
!projects
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.
That's quite a range: "US$32K-US$77K"!
Yep
Does anyone know what usually happens in a "non-technical" job interview?
It adds that "no preparations required".
they usually ask about your previous experiences.
like "what was the hardest project you ever done?"
your proudest projects,
and questions like "how would u approach to a problem like blah blah...."
Oh that's awesome that you got that resolved!
yeah, as a technical artist, my experience could be a little different than the others
our job is a "bridge" position and even recruiters don't really know what they should ask to us XD
I am guessing it is not the same as tooling for artists.
generally, in a "non technical" interview even if they ask a question about a technical thing, they expect a point of view from you. Not a technical solution or code.
Mm. I would probably tunnel vision anyway. But thank you, I will keep that in mind!
sure
guys what syntax to remove ' from a string
From They Might Be Giants' album "Mink Car" -- available at Apple Musc http://geni.us/7IyC
Stream They Might Be Giants on Spotify!
https://found.ee/TMBGSpotify
Get They Might Be Giants merch!
https://found.ee/TMBGMerch
See They Might Be Giants on tour!
https://found.ee/TMBGShows
!stream 128363483828977664
✅ @woeful salmon can now stream until <t:1638814550:f>.
Such a good song
do you guys have an idea how to remove this ' character from a string?
' is called an apostrophe.
You can do it by using .replace.
mystring = mystring.replace("'", "")
mystring = mystring.replace('"', "")
replace(self, old, new, count=-1, /)
Return a copy with all occurrences of substring old replaced by new.
count
Maximum number of occurrences to replace.
-1 (the default value) means replace all occurrences.
If the optional argument count is given, only the first count occurrences are
replaced.
@molten pewter what do you do if you have multiple characters to delete?
translate(self, table, /)
Replace each character in the string using the given translation table.
table
Translation table, which must be a mapping of Unicode ordinals to
Unicode ordinals, strings, or None.
The table must implement lookup/indexing via __getitem__, for instance a
dictionary or list. If this operation raises LookupError, the character is
left untouched. Characters mapped to None are deleted.
i
must
send
50
messages
thats
so
annoying
@gentle flint is this already blender3?
2.83
ok
because of the mesages above im sended now more than 50 messages
where can i see how long im on the server?
how many hours are missing?
86400 seconds!
Close but not quite
ah ok
Over halfway there
:(
It serves a good purpose. We had a lot of hit and run trolls who would join the server, join voice chat, scream, and then leave. This was happening multiple times a day
The voice gate has reduced it to maybe one or two a month
And if you plan on being in the server for a while, it's a drop in the bucket
You are not allowed to use that command here. Please use the #bot-commands channel instead.
ou can also say it in the voice chat
i can here you all
Oh my gosh. That's a lot of tabs.
He makes..... interesting choices
good night
gn
Is Aaron showing us the beauty of NixOS?
@elfin bloom No I don't want to watch you play Fortnite
@whole bear freakin fixed it holy hell
Is my laptop requiring to be rebooted already?
I cannot hear anyone
and it does not light up when I speak
may be :x we can't hear you either
sup guys
git push -u origin [branchname]
git commit -m ""
git push -u origin [branchname]
git push origin
git branch -vv
git log --oneline
git clone https://bitbucket.org/atlanticcasualty/interview_angularjs.git
git checkout Ohassan9
can anyone see my phone number in discord when I verified it?
not that I know of
like, if others can see it, then discord had a data leak
git add .
how?
Magic
Susan Boyle – In the Bleak Midwinter (Official Audio)
Follow on Spotify - https://smarturl.it/SusanBoyle_SpTISB
Listen on Apple Music - https://smarturl.it/SusanBoyle_Apple
Amazon - https://smarturl.it/SusanBoyle_Amazon
Follow Susan Boyle
Website - https://smarturl.it/SusanBoyle_Website
Facebook - https://smarturl.it/SusanBoyle_Facebook
Instag...
@honest pier https://math.stackexchange.com/a/1755425/108109
hey are you a github user
@somber heath i wanna store my code online and i am confused how
GitHub
like i heard some people use blogspot
Sourceforge
i am litterally new to it is there anything that i should know like how can i upload the stuff
i have a lot of folders of code
#tools-and-devops Is probably the place you could ask.
ohkk
they use it blogspot as they can see it litterally anytime they want to
it will be a website
ohkk
for me both of them is new
do i have to put every file manually in github
ohk ill look it online
oh cool
k byee
gn
!voiceverify
!d secrets
New in version 3.6.
Source code: Lib/secrets.py
The secrets module is used for generating cryptographically strong random numbers suitable for managing data such as passwords, account authentication, security tokens, and related secrets.
In particular, secrets should be used in preference to the default pseudo-random number generator in the random module, which is designed for modelling and simulation, not security or cryptography.
!d random
Source code: Lib/random.py
This module implements pseudo-random number generators for various distributions.
For integers, there is uniform selection from a range. For sequences, there is uniform selection of a random element, a function to generate a random permutation of a list in-place, and a function for random sampling without replacement.
On the real line, there are functions to compute uniform, normal (Gaussian), lognormal, negative exponential, gamma, and beta distributions. For generating distributions of angles, the von Mises distribution is available.
!d str.join
str.join(iterable)```
Return a string which is the concatenation of the strings in *iterable*. A [`TypeError`](https://docs.python.org/3/library/exceptions.html#TypeError "TypeError") will be raised if there are any non-string values in *iterable*, including [`bytes`](https://docs.python.org/3/library/stdtypes.html#bytes "bytes") objects. The separator between elements is the string providing this method.
while True:
print(MENU)
len_of_pass = int(input('Enter the length of password > '))
if len_of_pass =
choice = input("Enter your choice: ")```
!e py import secrets, string legal_characters = string.ascii_letters + string.ascii_digits #plus whatever else length = 12 print("".join(secrets.choice(legal_characters) for _ in range(length))
Sorry, an unexpected error occurred. Please let us know!
ClientResponseError: 500, message='Internal Server Error', url=URL('http://snekbox.default.svc.cluster.local/eval')
Sorry, an unexpected error occurred. Please let us know!
ClientResponseError: 500, message='Internal Server Error', url=URL('http://snekbox.default.svc.cluster.local/eval')
!e py import random, string legal_characters = string.ascii_letters + string.ascii_digits #plus whatever else length = 12 print("".join(random.choice(legal_characters) for _ in range(length))
Sorry, an unexpected error occurred. Please let us know!
ClientResponseError: 500, message='Internal Server Error', url=URL('http://snekbox.default.svc.cluster.local/eval')
can i just press enter in int(input())?
import random
length = 10
print(''.join(random.choices(legal_characters, k=length)))```But don't do this, because it's not cryptographically secure.
I just know that when doing secure stuff and you don't want it easily predictable, secrets is the module you want to be using, not random.
ohk i havent used this secrets module
You can do all sorts of things. I'm just showing you the underlaying mechanism you can leverage to achieve the result you want.
Besides, input and snekbox don't mix.
Which is why I don't tend to use input for examples in here.
user_input = input("...")
if user_input == "": #User pressed only enter
...
else:
...```
in this line
this is good with just input i am using also changing the None value type that is why its giving me error
Or...something.
You can't expect that the user will always enter in something that makes sense.
Users are stupid and unpredictable.
You may also like to look into try and except.
yeah good idea
Combining a while loop, try/except and input and maybe if/elif/else is a good way of validating input and asking the question again if required, not letting the user proceed until good input has been given.
!e ```py
"Python code goes here"```
Don't copy paste that.
!e print("Snekbox, are you okay, yet?")
Sorry, an unexpected error occurred. Please let us know!
ClientResponseError: 500, message='Internal Server Error', url=URL('http://snekbox.default.svc.cluster.local/eval')
import string
print(string.ascii_letters)
why dont i need to put ()
after ascii_letters
ohk
everyone sleeping here?
Source code: Lib/random.py
This module implements pseudo-random number generators for various distributions.
For integers, there is uniform selection from a range. For sequences, there is uniform selection of a random element, a function to generate a random permutation of a list in-place, and a function for random sampling without replacement.
On the real line, there are functions to compute uniform, normal (Gaussian), lognormal, negative exponential, gamma, and beta distributions. For generating distributions of angles, the von Mises distribution is available.
!d secrets
New in version 3.6.
Source code: Lib/secrets.py
The secrets module is used for generating cryptographically strong random numbers suitable for managing data such as passwords, account authentication, security tokens, and related secrets.
In particular, secrets should be used in preference to the default pseudo-random number generator in the random module, which is designed for modelling and simulation, not security or cryptography.
!d tkinter
Source code: Lib/tkinter/__init__.py
The tkinter package (“Tk interface”) is the standard Python interface to the Tcl/Tk GUI toolkit. Both Tk and tkinter are available on most Unix platforms, including macOS, as well as on Windows systems.
Running python -m tkinter from the command line should open a window demonstrating a simple Tk interface, letting you know that tkinter is properly installed on your system, and also showing what version of Tcl/Tk is installed, so you can read the Tcl/Tk documentation specific to that version.
!d pyqt
anybody here has used tkinter or pyqt? could u pls suggest which would be easier to use for someone who hasnt used a gui method yet?
hey

!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
yeaa, i just joined, i still have a checklist to complete
do you know django by anychance????
I think the most delightful possible visual aesthetic we can pull off right now is a combination of the Renaissance, Art Deco and cyberpunk: the grandeur and humanism of Renaissance, the beautifully articulate ornamentation of Art Deco and the infinite possibilities of cyberpunk.
Imagine if nudity was no longer relegated to porn, but instead was idealized to the point of absolute perfection, where it directly affects the religious centers of your brain because you're looking at something divine and impossibly amazing. That's what I wanna bring. Imagine the beautiful statues of Michelangelo coming to life. We can do this now with CGI.
Imagine if the surroundings in any frame are absolutely resplendent to look at. Beautiful colors, proportions and ornamentation. Something that people took hours to design, every single time. That's maximum value for time spent by your eyeball.
Imagine technologies that you've never seen before letting you do more than you could ever do before.
Beauty is extremely beneficial. It fills us with joy and makes us feel the world is alright, and it really is. The world is our friend, not our enemy. We are part of it and it is part of us.
separate generation from judgment
I prefer to speak in euphamisms.
The longer the better.
Stochastic. Having a property of randomness.
Or, at the least, unpredictability.
nothing is random if you're looking at it or thinking about it
it's part of your code
The simulation hypothesis is a proposal regarding the nature of existence which posits that all of existence is an artificial simulation, such as a computer simulation. Some versions rely on the development of a simulated reality, a proposed technology that would be able to convince its inhabitants that the simulation was "real".
The simulation ...
@whole bear Good luck...
You said you have a question, yes?
Righto.
thank u tho
“God likes to play hide-and-seek, but because there is nothing outside of God, he has no one but himself to play with! But he gets over this difficulty by pretending that he is not himself. This is his way of hiding from himself. He pretends that he is you and I and all the people in the world, all the animals, plants, all the rocks, and all the stars. In this way he has strange and wonderful adventures, some of which are terrible and frightening. But these are just like bad dreams, for when he wakes up they will disappear.
Now when God plays "hide" and pretends that he is you and I, he does it so well that it takes him a long time to remember where and how he hid himself! But that's the whole fun of it-just what he wanted to do. He doesn't want to find himself too quickly, for that would spoil the game. That is why it is so difficult for you and me to find out that we are God in disguise, pretending not to be himself. But- when the game has gone on long enough, all of us will WAKE UP, stop pretending, and REMEMBER that we are all one single Self- the God who is all that there is and who lives forever and ever.
You may ask why God sometimes hides in the form of horrible people, or pretends to be people who suffer great disease and pain. Remember, first, that he isn't really doing this to anyone but himself. Remember too, that in almost all the stories you enjoy there have to be bad people as well as good people, for the thrill of the tale is to find out how the good people will get the better of the bad. It's the same as when we play cards. At the beginning of the game we shuffle them all into a mess, which is like the bad things in the world, but the point of the game put the mess into good order, and the one who does it best is the winner. Then we shuffle the cards and play again, and so it goes with the world.”
Keynote speaker Matt Inman introduces us to a new deity, enlightening the San Francisco audience in the process, in the first ever BAHFest West keynote at the historic Castro Theatre
BAHFest is the Festival of Bad Ad Hoc Hypotheses, a celebration of well-researched, logically explained, and clearly wrong evolutionary theory. Additional informat...
re: Crustacean gods.
See posts, photos and more on Facebook.
Lobsters do not stop growing and do not die of old age. They die when they become too large to properly molt.
We are going to take a lobster, help it molt it’s shell over several generations, and create a leviathan god. Here we will plan our gods birth and rise to divinity.
Their acolytes are at risk and must be protected. Any creature with magic blood is obviously descended from the gods.
No.
I treat Facebook like dog poo.
I avoid stepping in it.
Join the challenge or watch the game here.
"idea is the clue of human"
bye!! @frozen jetty
o/
Canbra
Now you're speaking Australians.
I suppose it's like the difference between Holland and Holland.
Pardon?
ehnd
yes
ind feels weird
Maybe if you're from New Zealand.
What's the data in question?
Maybe ask in #databases.
str or int
Pardon?
Cockney rhyming slang.
Sauce horse
https://en.wiktionary.org/wiki/Appendix:Australian_English_rhyming_slang I've heard of some of these.
I'm not sure many of them are truly notable.
Yeah, I wouldn't say that's a very good list.
https://ielts.com.au/articles/australian-slang-words-phrases/ Decent list, but not so much about rhyming.
Haven't seen a kangaroo in a while, actuallly.
Check out our open positions at Checkout.com here: https://bit.ly/NickChapsas02
Join me and let's build the future of payments!
Check out my courses: https://nickchapsas.com
Become a Patreon and get source code access: https://www.patreon.com/nickchapsas
This video is sponsored by Checkout.com
Hello everybody I'm Nick and in this video I will ...
@cedar briar ^ look at it from half way
its so good 🙂
will check it
hoy hi
!e py v = [[1,2,3], [4,5,6], [7,8,9]] print([*zip(*v)])
@somber heath :white_check_mark: Your eval job has completed with return code 0.
[(1, 4, 7), (2, 5, 8), (3, 6, 9)]
!e py from collections import Counter v = [1,2,2,3,3,3] print(Counter(v))
@somber heath :white_check_mark: Your eval job has completed with return code 0.
Counter({3: 3, 2: 2, 1: 1})
!e py d = {3: 3, 2: 2, 1: 1} print(max(d)) #d.keys()
@somber heath :white_check_mark: Your eval job has completed with return code 0.
3
perhaps
can u come over a vc?
Screen sharing is a privilege and one only granted at moderator/admin discretion and usually only on a temporary basis and generally only with good reason.
Though it's possible it's someone's lucky day.
@stuck sky Do you need streaming permissions to get help with something?
Sorry, what did you want to stream?
yes sir
Alright 👍
an*
!stream 446207619837984777
✅ @stuck sky can now stream until <t:1638885154:f>.
Stream is fine. But your microphone is varying quite a lot in volume.
Databases are cool
We can use ajax for that right
Which one do you want to use?
How about Oracle?
We can transfer data of database from django to ajax data in js
Can we do that
👋
"Say thank-you. AJAX Spray and Wipe. Do do do do do." 🎶
What?
Hm... No Oracle then. How about using AWS Lamba to save the notes as objects in S3?
Fracking - Bad for the environment.
Er, hello 😄
Better than yesterday.
Good!
I got boostered the day before yesterday, so I was a bit flat the day after.
Well, I had a similar experience the previous time as well.

hemlock owns a Rolls-Royce
Everything works fine: "Why do we even pay you?"
Something breaks: "Why do we even pay you?"
No no, I own rolls of rice
!voiceverify
Have to do that in #voice-verification
Mandator xkcd: https://xkcd.com/927/
can anny one join call and help me
help me to debug an error
i'll give u rolls royce

@rugged root - Normalize all the things!
Look at winget's database (SQLite) - Even the names and IDs get their own tables
!code
Here's how to format Python code on Discord:
```py
print('Hello world!')
```
These are backticks, not quotes. Check this out if you can't find the backtick key.
import random
import os
import random
import sys
import time
WIDTH, HEIGHT = 1080,720
SCREEN = pygame.display.set_mode((WIDTH, HEIGHT))
pygame.display.set_caption(("Space Invaders!"))
run = True
while run:
class game:
def __init__ (self):
pass
def main_game():
for event in pygame.event.get():
if event.type == pygame.QUIT:
run = False
if __name__ == "__main__":
tmp = game
tmp.main_game()
```py
```py
Your code here
```
!stream 564839376916447233
✅ @olive narwhal can now stream until <t:1638887391:f>.
running = True
while running:
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
def main_game():
run = True
while run:
for event in pygame.event.get():
if event.type == pygame.QUIT:
run = False
PULL!
Oh, speaking of.
Had one of my pigeons hop up onto my knee, today.
I say my. They're not mine.
They're theirs.
It's watchable.
It's a romp.
The animated Watchmen was good. The movie...some part of it were okay.
Some nice CGI.
Knife.
Omo
Washing powder?
No
But that can't be right?
This?
👍
Has PyDis decided on a migration path away from Rapptz/discord.py yet?
Just rewrite the whole thing
How hard could it be?
I'm looking at rebuilding my Flask app in Rust
I'm not looking forward to redoing the last three years of work
Famous last words.
I know understand why everyone says they regret not starting with statically typed languages
Probably
I started with Java
But then I went to Ruby, which as far as I remember, has no typing whatsoever
And then I went to Python, and by that point I had already forgotten everything about typing
And now I spend an hour or two every few days trying to figure out with of the methods called is forgetting to convert the string to an int before returning
Yep
Introducing RBS, Ruby’s new type signature language
Huh, looks like they finally got it
Years
It'd be about the audio encoding.
and what compresses that best.
mp3 is container
not content
Hm.
I'm the only dev at my company, so I get to pick everything. I also started right out of high school, so I had no experience.
I started in Jawa Swing, because that's what I learned in high school
Then multiple people needed to be able to use the app, so I needed a website. Rails looked the easiest to my inexperienced self, so I picked it.
Then I started getting frustrated with the magicalness of Ruby, so I started looking for something less complicated, and I found Flask
And now I'm on the fourth iteration of the Flask version
I bought WinRar
Yes?
A few years ago
I used to use it a lot
rawr file 😳
Now I just use the builtin on Windows, and tar on Linux
compwession compweted!~~~ ^w^
Did LP's PR ever get merged?
Compwession compweted!
Still open
We should finish it for him
Can I get the Contributors role if I finish that?
I hate it so much
But it would be an amazing story if that's how I got the role
I mean, why not?
New ticket: "please stop by my office"
... fine
Alright, I'll be back
The average slack message I get: "My computer is broken."
rm /* moment
was referring to your moment lol
Tha'tis.
Dats
The solid block sighs. What does it mean?
"Ron for mayor! Elect Ron!"
hey guys
cant talk yet 😦
but what i wanted to ask u guys is, do u guys know any good videos explaining object orientated programming, or could someone explaing it please?
anyine talking here?
What learning resources are you currently using?
jus youtube
so at uni i got taught coding and classes, i did aerospace, but they never went ito it so i have an interview im prepping for and they useoop with embedded c++
Oh right. Do you understand the basic idea of what a class is?
kind off, it holds a fundtion right?
If you imagine all the objects that could possibly exist in your program, a class groups together a set of objects that have similar structure/functionality.
The class itself also serves kind of as a blueprint for its instances.
!eval ```py
class Person:
def __init__(self, name):
self.name = name
def greet(self):
print("Hello, my name is", self.name)
alice = Person("Alice")
bob = Person("Bob")
alice.greet()
bob.greet()
@stuck furnace :white_check_mark: Your eval job has completed with return code 0.
001 | Hello, my name is Alice
002 | Hello, my name is Bob
So, alice and bob are both objects, and are instances of the Person class.
It makes sense for them to be instances of the same class because they are very similar objects. Both objects have one attribute name, and one method greet. The two objects differ only in the value of name.
👍
It gets more interesting when you start talking about the relationships between classes.
I think Corey Schafer has some nice videos on this topic: https://www.youtube.com/playlist?list=PL-osiE80TeTsqhIuOqKhwlXsIBIdSeYtc
so the job istself is saying its sabout c+
the actualy OOP ideas can be transfered right?
Essentially, yes.
does somebody think they could help me in #help-cherries ?
!stream 737321460435124285
✅ @flint hill can now stream until <t:1638895568:f>.
A crude ticket system for work
Hi
what u guys up to
Oh nice lmao, im doing some osdev but i cant talk yet cause ive sent less than 50 msgs here
where are u getting the tickets from? an api?
u grabbing the data from the excel file?
wouldnt json files be more efficient?
oh ok that makes sense

building gcc is taking ages
Nooo, you're not.
Who needs notes?
Mixolydian mode 🤔
"ticket" INTEGER NOT NULL REFERENCES "Ticket" ("id") ON DELETE CASCADE
Cascade all the deletes
Yeah pretty much
essentially
Use the ON DELETE CASCADE option to specify whether you want rows deleted in a child table when corresponding rows are deleted in the parent table. If you do not specify cascading deletes, the default behavior of the database server prevents you from deleting data in a table if other tables reference it.
The cmake(1) Build Tool Mode (cmake –build) gained --parallel [<jobs>] and -j [<jobs>] options to specify a parallel build level. They map to corresponding options of the native build tool.
?
oh yeah lmao cheers
Pony looks fancy - how does it compare to SQLAlchemy?
According to all the gender reveal parties, it's actually not even that much effort
20 mins all for make to encounter errors
Sounds right
pain
ok finally
$HOME/opt/cross/bin/$TARGET-gcc --version
i686-elf-gcc (GCC) 11.2.0
Copyright (C) 2021 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Gassy
thats not gonna happen
realisticly
that is not gonna happen-
they arent gonna print more money to pay off debts
it changes too sporadically
bitcoin went from 45k to 38k in the past couple weeks
its not 60k rn-
crypto isnt stable
Bitcoin inventor Satoshi Nakamoto capped the number of bitcoin at 21 million, meaning there will only ever be 21 million bitcoins in existence. On average, these bitcoins are introduced to the Bitcoin supply at a fixed rate of one block every 10 minutes. ... As Bitcoin reaches its capped supply, its economics will alter.
ive traded crypto and right now with how it is its way too unstable to be used as a normal currency
besides remember if things crash and people start to use crypto miner prices (gpus and asic miners) will skyrocket.
@west lionhttps://github.com/SeleniumHQ/selenium/wiki/ChromeDriver
U are amazing :like:
connor@Inside#9643whale72:~/insideOS$ i686-elf-as boot.s -o boot.oboot.s: Assembler messages:
boot.s: Warning: end of file not at end of a line; newline inserted
anyone know what to do?
What's wrong with stealing?
north korea 😏
Looks like it's just a warning, and it said it fixed it for you, so you shouldn't need to do anything
It added a blank line to the end of the file for you because you didn't have one
yeah just would be good to know eactly what i did wrong for next time
ohhhh ok that makes sense
bitcoin mining is taxed over here as far as im aware
@rugged root
Not per transaction
So there's no sales tax
I think it's strictly listed on income
And it's like...... property I think?
We looked it up a while back
Here's an (several) explanation: https://stackoverflow.com/questions/729692/why-should-text-files-end-with-a-newline
nope not transactions although wallets do usually have transaction fees and if bitcoin got to that point (which it wont in my opinion) the government will probably try to profit off it that way
u can with asics
depends on power costs and shit though
Better than too many crabs
connor@Insidewhale72:~/insideOS$ i686-elf-gcc -T linker.ld -o myos.bin -ffreestanding -O2 -nostdlib boot.o kernel.o -lgcc
/home/connor/opt/cross/lib/gcc/i686-elf/11.2.0/../../../../i686-elf/bin/ld: cannot find -lgcc
collect2: error: ld returned 1 exit status
Hmm... so you need to add your own GCCs path to ld's search path?
Although crabs in submarines can be helpful. ||AoC plot spoiler||
Happens daily at small business levels
Thats the point of social engineering-
it happens all the time
its easy to learn too
People don't learn
anyone who can pay attention to a book for 2 hours and has basic social skills can try social engineering
its easy too spoof numbers too
the original point of this conversation was crypto becoming a standard currency which means everyone no matter how dumb or incompetent will have to use it
even if u dont fall for social engineering whats to say they wont?
@ruby wind
yeah they can....
what if it was ur grandma?
grandpa
@rugged root i beg u tell him to check mute chat
Sorry, I was away
Someone asked to see my private key?
Here it is -
-----BEGIN OPENSSH PRIVATE KEY-----
b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAAAMwAAAAtzc2gtZW
QyNTUxOQAAACDrXg7lmdwDCm+mPpui+3Rpos5Bucr2RWepxp9j9h5cywAAAJjcC/+F3Av/
hQAAAAtzc2gtZWQyNTUxOQAAACDrXg7lmdwDCm+mPpui+3Rpos5Bucr2RWepxp9j9h5cyw
AAAEDeXUMFynhZZ3pHV1XufK4KWk51itZ+B5URu7vtYvEHUeteDuWZ3AMKb6Y+m6L7dGmi
zkG5yvZFZ6nGn2P2HlzLAAAAEURPIE5PVCBTSEFSRSBUSElTAQIDBA==
-----END OPENSSH PRIVATE KEY-----
Social Security does everything
I sent you my private key plz respond
Happens literally daily
Wait, is that Shaggy's account?
then youll get ur beers in 2 decades
Long story short - Everyone gets compromised eventually
yep
Can I get in on this free beer?
i will buy everyone in the voice chat a round if that happens
They were both mine, but they're gone now
Haven't used them in years anyways
Doesn't surprise me
What did the bot flag on?
NTFS however....
@olive hedge - send me your wallet
i perfer ext4
Sure, but the joke doesn't work with that
only good purpose of nfts imo is making your own and selling them to some dumb mfs that think they mean something
my friend made 86$ off of 1
@brisk turret
can i get the voice verification role? sorry for asking
ok im guessing here is the right place?
yeah the conversation just now is really interesting
oh i just realised 🤣
Hadn't heard of that
like rarible can get buyers to pay for the minting part?
What happened? - I left for five minutes and I come back and it's all quiet
You said please copy paste?
Hold my beer
If it's an IPA no guarantee you are getting it back.
Class is in session. Classic 3-ring binder notebook paper design is printed inside with the French conjugation of "To buy". Mighty Wallet® is the original, invented in 2005, that launched a global trend of wallet designs made with Tyvek®. Be Original, Be Creative, BE MIGHTY! Tyvek® is made with thousands of interlockin
I'm seeing how many days of AoC I can do in Excel
How far have you gotten?
o- o why not canvas... like ye i can create that in css but it would take so much more useless effort
do it in html canvas
ez
(if you meant the game in the gif) cuz now i'm not sure if you did
no not the game - game unrelated
@uncut meteor
Haven't gotten anymore done yet.
Been caught up with work fires and family events
@hard spruce 
Works fine for me. What's it doing?
. ┬─┬ ノ( ゜-゜ノ)
Provided to YouTube by TuneCore
Ríu, Ríu, Chíu · Chanticleer
Our Heart's Joy: A Chanticleer Christmas
℗ 2015 Chanticleer Records
Released on: 2008-11-11
Auto-generated by YouTube.
hm do you think threads will be rolled out for DMs?
I... huh
I don't know how useful that'd be
But I guess I could see it
Might if enough people request it
djent
The Official Music Video for the song “Physical Education” by Animals As Leaders.
Directed by:
Cameron Alexander @cameronalxander
Patrick Lawler @patricklawler
Edited by: Dom Mcinerney
Official Merch: http://hyperurl.co/AAL_Merch
--
THE JOY OF MOTION // Available Here
iTunes: http://smarturl.it/thejoyofmotionitunes
GooglePlay: http:/...
Provided to YouTube by Believe SAS
Bleed · Meshuggah · Fredrik Thordendal · Tomas Haake
Monsters of Metal, Vol. 5
℗ 2006 Nuclear Blast
Released on: 2006-06-30
Auto-generated by YouTube.
This is a playthrough of a single my band Covet just released available on bandcamp:
http://covetband.bandcamp.com
Song by: Covet
Band: http://www.facebook.com/covetband
Solo page: http://www.facebook.com/yveyoung
I am playing a 7 string Strandberg that I painted myself. Contact me for custom paintjobs (I run a lil gig out of my garage): yvett...
"G.O.A.T" is from Polyphia's new album, New Levels New Devils, out now. Download/Stream now at https://polyphia.lnk.to/NLND
Vinyl and Merch: http://polyphia.merchnow.com
Director - Jake Woodbridge
http://www.woodbridgepro.com
Guitar and Bass tabs: https://polyphia.store
SUBSCRIBE: http://bit.ly/1SCcPtd
Follow us on social media:
Facebook: ...
it did the same to me again
disconnected -> unable to reconnect to this voice channel until i joined afk and joined back
That's bizarre
😪 discord need to fix their stuff
It's really weird, yeah
wanna play tetris?
just hire me lmao (next day discord employees are locked out because a junior did something horrendous)
jk
fancy mic griff
I wish. Stupid work
You're watching Led Zeppelin perform 'The Ocean' live at Madison Square Garden in 1973. The Song Remains the Same has been reissued with audio remastered by Jimmy Page! Get your copy here https://lnk.to/TSRTS
'The Ocean' refers to the sea of fans seen from the stage at Led Zeppelin concerts, to whom this song was dedicated.
► Listen to Mothe...
o. np
dows anyone know how to program a
with buttons
my bad
thoguht no one wanted to read it
o
my bad
yea
i mena like a umm
let em see
like a menu
im new and want to make a menu
not sure how to code it
ok
thx
blessed
@molten pewter you were sitting in vc for 24 hours without speaking
what happened
is it possible to program something that automatically puts ur information into a website so you don't have to go to proceed checkout and that so u can just hit one button?
how do i talk?
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Guido gets a neck
i did voice thing it sdyas under 50 words
oh
my bad
ok
can i screen share?
or is that not allowed
I typically only grant it for when people need assistance
Fair
@umbral girder you have 50 messages now
try verifying again
arcane is good!
see what it says now
i don't care about league either
I TRUSTED YOU 
33
When we'd first get calls at 2 or 3 in the morning, my husband would answer the phone. He can't hear too well. They'd ask for Jenny, and he'd say "Jimmy doesn't live here any more." ... Tommy Tutone was the one who had the record. I'd like to get hold of his neck and choke him.
— Lorene Burns, an Alabama householder formerly at +1-205-867-5309; she changed her number in 1982.[14]
https://en.wikipedia.org/wiki/867-5309/Jenny
Self respect?
Who can afford that these days?
I don't know, but if you can find a good price let me know
Blender stream?
@umbral girder
https://automatetheboringstuff.com/2e/chapter2/
^ read up on this page
explains it better with visuals
!e
foo = 1
if foo == 1:
print("hi there")
else:
print("you kinda smell")
@gentle flint :white_check_mark: Your eval job has completed with return code 0.
hi there
Need linters!
In software engineering, rubber duck debugging is a method of debugging code by articulating a problem in spoken or written natural language. The name is a reference to a story in the book The Pragmatic Programmer in which a programmer would carry around a rubber duck and debug their code by forcing themselves to explain it, line-by-line, to the...
@sinful tapir
how do i bring up the paste bin thing
If any of you want to copy and paste and try the simple game I made
Let me know if I should improve in some things
Its my project for school
Thank you

Why do I not have the permission to speak? (Sorry, new here)
Wow, 50 non-bot messages, ig I will just leave for now
Plenty of nice people on the server. Just join a conversation in a text channel. 50 messages will come fast.
Zucce! Dude, how've you been?
Doing well!
I saw you were in a voice chat from my friends list thing, so came to just hop in and listen when I found out I haven't spoken enough here since the verification for voice was added. Now I'm forced to talk to people... ;)
How are you??
Actually crap, I have to do shred here at work. I'll have to be back later. I promise to make time to play catch up
I'm doing well, just work and home, rinse and repeat, but I prefer it boring.
I guess it's getting to the busy season for you at work anyway, right?
hey
Don't spam.
:incoming_envelope: :ok_hand: applied mute to @humble oracle until <t:1638914436:f> (9 minutes and 59 seconds) (reason: burst rule: sent 8 messages in 10s).









