#voice-chat-text-0
1 messages · Page 864 of 1
yea and they ask money
I wish I got calls like that
no i also too dont get
Reminds me of this call: https://www.reddit.com/r/Unexpected/comments/o7zc3p/how_a_news_anchor_deals_with_scam_calls/
I wonder how long you could just talk over them until they hang up
you just did
Having to do 50 messages to talk in VC is pretty crazy 😦 Is there a way to check how many youve currently sent?
25
Hey
you have sent 25
Oh legend thank you verbose you beautiful man
well that's a fair revenge for what I said to the scammer
I wish there was a channel where I could spam 20 messages without annoying hehe
Lol , hello from Russia)
just talk with us 🙂
If I have to higgs...
what does l33t means?
leet
Jojo)
😉
Hey @gentle flint
it's a slang called "leetspeak"
The computer is typing by itself...
1337$p34k
I am a freak fun of jojo , SpeedWagon
hell yeah jojo is great
@gentle flint
But i don't see 3 season(
Why? Because I once pissed the admins and mods by using TTS.
In mathematics, a permutation of a set is, loosely speaking, an arrangement of its members into a sequence or linear order, or if the set is already ordered, a rearrangement of its elements. The word "permutation" also refers to the act or process of changing the linear order of an ordered set.Permutations differ from combinations, which are sel...
Jojo part 3 is my fave
ya i remember it
@short gate are you just insanely fast at typing?
This is where "THE WORLD"?
lol yes
this is what happens when i try to type fast
@gloomy vigil do you mind if I ask what country you are from?
i am just used to be pressing tabs
I'm a pretty fast typer
same
Yaaaa , this is mean that i don't see 4
yea i am from india
@gentle flint @graceful grail I made my PC type namemaker.py by itself.
ouf
oof*?(edited)
Can you spell that sneiv?
how to do you do that trick
ouif
What trick?
guess "weef" doesn't sound as terse
next scammer called
really?
but he almost immediately hung up
What was the permutation called sneiv?
yeah
What?
maybe you're getting infamous with the scammers verbose
lol
the scammers' sex offender
lmao
fear into their hearts
mhm
Is this channel usually this active? 🙂
often
yes
this is like my first time here but I like it here
Yeah same higgs haha. Nice community
this is me "making social connections relevant to my field" 😉
What kind of field?
Computer engineering
Hilrious lyrics
This channel is often active, at about 8:00 PM UTC+7 (Indochina Time).
Ahhh, oops
What?
Ram Ranch is a good Christian album created by a wholesome artist named Grant MacDonald. This music is best played at a church or any other religious place. My favorite song on this album is called "Ram Ranch" which is about wholesome cowboys playing around and having good family fun. Another song that I like is called "Ya Sure Are Hung", which portrays the struggles that Jesus went through when being crucified and dying for our sins. If I could rate this album out of 5, it would be 10/5. If you want some wholesome fun Christian music, this album is for you.
why are you crying higgs?
...
That description is too beautiful
Seems like a nice place to take the kids, get away from the wife for a weekend
Bs4?)
Eighteen naked programmers in the office at Python Programmers, Big Hard Keyboards wanting to be pressed
hail mary is an actual hymn
Okay bad idea. Do you guys know the game where people in a group have 1 person say a sentence and every person says a sentence and we chain together to try and make a story?
and tupac named his song hail mary
That but we make a python program together
Like?)
a beautiful frankenstein's monster of a program
Scrabing from websites?))
BeautifulRequest comes from bs4+reuqests
just wherever it goes
This is actual library?
na just like i combined the name
Once I get my 50 messages I got the whole Python Ranch lyrics to sing for ya's 😉
Like a pun)
In current moment i haven;t opportunity do it..,
I can;t speak , i try achive requirements for speak
is that belgium/netherlands/germany?
oh
My micro is block(
omg
meanwhile in belgium
had no idea this was going in europe D:
We have a very hot weather
verbose has a perfect geography
hmm
germany
[Chorus]
Eighteen talented programmers in the office at Python Ranch
Big hard mechanical keyboards wanting to be pressed
Eighteen skilled programmers wanting to be hired
Programmers in the office at Python Ranch
On their butts wanting to script CEO problems
Python Ranch really rocks
And if you haven't split system , this is strike for you'r heart system
damn
peace)
I love how the Anglicans manage to be more Catholic than most Catholics
I could not but upload this great version of this popular carol. I especially enjoyed the organ interlude.
This is part of the Christmas Eve Service of Eucharist at Westminster Abbey, broadcast live on BBC One on Tuesday, 24th of December 2013.
© BBC MMXIII
You from India?
yea
0oooo sound good
How cold in you county in the winter?
nnot that much
depends upon the region
hmmmm
in my region its not much less than 5 degree C
but areas of mid india is fucking cold
The huge difference?
I have in this winter -35 celsius
hahaah
same heresorry +35degrees
oh you are from russian right?
This is so cold , that i can't start engine in my car
russia*
from USSR)
can america just switch to celsius tbh?
This is joke
more like stubborn
Yea , from Russia)
@whole bear so that problem I sent you earlier in DMs, no one has the solution to it. Close to giving up
why cant veryone switch to KElvin
they did
partially
at NASA
then they had a disaster because their subcontractors didn't
maybe there's some weird byte magic out there?
In C- cystem - we have celsius
Muda or Ora?)
Ora of course
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
ll count(ll n)
{
if(n < 6) {
return 0;
}
int dig = 0, digits[19];
// Reverses digits (123 => 321)
while(n) {
digits[dig++] = n % 10;
n /= 10;
}
// How many numbers are present that will be < N
// dp[i][j] = amount of numbers that (i = have / don't have) 8 and (j = have / don't have) 6.
ll Prev[2][2] = {{0}};
bool seen8 = 0; // If the explored prefix has 8
bool seen6 = 0; // If the explored prefix has 6
// Iterating left to right (reverse order but digits are reversed)
for(int i = dig - 1; i >= 0; i--) {
ll Curr[2][2] = {{0}};
// Counting 0..9 choices for all the numbers that will be less than N
for(int d = 0; d < 10; d++) {
for(int has8 = 0; has8 < 2; has8++) {
for(int has6 = 0; has6 < 2; has6++) {
Curr[has8 | (d == 8)][has6 | (d == 6)] += Prev[has8][has6];
}
}
}
// Here we assume that we picked the whole prefix of N before the current digit
// So, we can choose from [0, N_ith_digit) and for last digit from [0, N_ith_digit] in order to not go above N
for(int d = 0; d < digits[i] + (i == 0); d++) {
Curr[seen8 | (d == 8)][seen6 | (d == 6)]++;
}
// Updating prefix info
seen8 |= (digits[i] == 8);
seen6 |= (digits[i] == 6);
// Copying current to previous
for(int has8 = 0; has8 < 2; has8++) {
for(int has6 = 0; has6 < 2; has6++) {
Prev[has8][has6] = Curr[has8][has6];
}
}
}
// Only pick lucky numbers
return Prev[0][1] + Prev[1][0];
}
int main()
{
ll L, R;
cin >> L >> R;
ll r = count(R), l = count(L - 1);
cout << r - l << endl;
}
Apparently this is it, just need to port to python
Yeah sorry !
Although 7 page of muda?)
ora is my way
The Mars Climate Orbiter (formerly the Mars Surveyor '98 Orbiter) was a 638-kilogram (1,407 lb) robotic space probe launched by NASA on December 11, 1998 to study the Martian climate, Martian atmosphere, and surface changes and to act as the communications relay in the Mars Surveyor '98 program for Mars Polar Lander. However, on September 23, 19...
@gloomy vigil its just for a technical interview question
The primary cause of this discrepancy was that one piece of ground software supplied by Lockheed Martin produced results in a United States customary unit, contrary to its Software Interface Specification (SIS), while a second system, supplied by NASA, expected those results to be in SI units, in accordance with the SIS. Specifically, software that calculated the total impulse produced by thruster firings produced results in pound-force seconds. The trajectory calculation software then used these results – expected to be in newton seconds (incorrect by a factor of 4.45) – to update the predicted position of the spacecraft.
You know that Jojo can stop time always?)
there are things that can't be answered by "it moves really fast" but that could be explained with "it stops time for a few moments and moves really fast"
think about it
jotaro wasn't even surprised when he stopped time against DIO
welcome to linux
Why?
welcome to chili's
by we i mean those who hate windows
I have 2 system
wow
I just downloaded more ram
ram ranch?
yo brothers
@leaden yoke can I call you Hassan Mahdood
are you south african?
yes I downloaded 1tb of ram anything is possible
if so, yes
i hacked nasa
no
oh
with nasa?
Hello
or html
But i know about speedwagon)
?
I also wash my computer with soap and water so nice and clean
I just clean the bugs out of the code
When you ask your wife to clean up your laptop..
This is some kind of old school memes
But i think her husband was not satisfated)
Xmmm , i write down 50 messages , and i yet can speak
its from like an idnian tv show
Why?
indian*
@celest junco you also need to have been in the server for I think a week
indian b movies are amazing tbh
write down , and server analyse about type my messagesx
And approve that?
i am algging a lot
Server will analyze my messages?
ping
pong
pong
ping
pong
pong
pringle
dingle
ping
monk
drip
ey
drop
drop
ayyyy
hip
flop
mass
my man
it's just a mess
hop
A mash-up of over dramatic and totally unrealistic slaps and stares in the famous bollywood serials from star plus that always makes me laugh. i've realised this video is kinda like marmite...either u get it or u don't! but it was fun to make anyway :)
mom's spaghetti
lose yourself
I have never danced, nor plan to!
nah
Smash Karts is a free io Multiplayer Kart Battle Arena game. Drive fast. Fire rockets. Make big explosions.
@gloomy vigil :white_check_mark: Your eval job has completed with return code 0.
game started
Come play Smash Karts
https://smashkarts.io/join/U3ks
Smash Karts is a free io Multiplayer Kart Battle Arena game. Drive fast. Fire rockets. Make big explosions.
let's play trollface.io it's real link trust me
there's a python game??
!e
while True:
print("hi")
@leaden yoke :x: Your eval job has completed with return code 143 (SIGTERM).
001 | hi
002 | hi
003 | hi
004 | hi
005 | hi
006 | hi
007 | hi
008 | hi
009 | hi
010 | hi
011 | hi
... (truncated - too many lines)
Full output: too long to upload
!e
class Derived(str):
def __str__(self):
return str(self)
a = Derived(2)
print(a)
@gloomy vigil :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 6, in <module>
003 | File "<string>", line 3, in __str__
004 | File "<string>", line 3, in __str__
005 | File "<string>", line 3, in __str__
006 | [Previous line repeated 330 more times]
007 | RecursionError: maximum recursion depth exceeded while calling a Python object
so what game is everyone doing?
oh ok
Come play Smash Karts
https://smashkarts.io/join/U3ks
Smash Karts is a free io Multiplayer Kart Battle Arena game. Drive fast. Fire rockets. Make big explosions.
I'm having no idea how to do that thing kk
spacebar fires
Come play Smash Karts
https://smashkarts.io/join/U3ks
Smash Karts is a free io Multiplayer Kart Battle Arena game. Drive fast. Fire rockets. Make big explosions.
Come play Smash Karts
https://smashkarts.io/join/CGCj
Smash Karts is a free io Multiplayer Kart Battle Arena game. Drive fast. Fire rockets. Make big explosions.
new link
ParserError: Error tokenizing data. C error: Expected 1 fields in line 17, saw 2
i have to go guys bye
data = pd.read_csv('file1.csv', error_bad_lines=False)
hi c:
Hello :)
oh thats crazy
i actually was going to start using that library as well
lmao
i needed to kinda simulate cron jobs in python
idk if that makes sense
XD
for web scraping purposes
true
horrible docs
@errant nova is your project on github?
public or private?
can u send the link?
oh wait
i thought it was another thing lmao
nvm
@hollow plank are u coding too?
ye
currently
u mean sneivs code?
nice
XD
avoiding boilerplate u mean
i worked both ways already, raw implementation and opencv
the thing here is
i think python is kinda slow for that task, isn it?
that kind of task*
oh ok
i didnt see numpy there
sorry
i was experimenting with rust lately for these stuff
because of college
im learning rust because its like a fresh option for C++
idk
starred ur repo btw
:3
wait u asked me?
br
brazil
and u?
yea yea
ok
hmm
canada?
no?
oh wow
KKKKKKKKKKKKK
I'll be on later, have some things to catch up on here at work
being in rut
What's the desired output, boom?
Eh. Fine enough
@zenith epoch hes helping you
You?
its 2 am here so eh
Can't sleep or just trying not to?
i want to create a new column which will merge the product names as in list or string serparated with commas
So are these points already in the same df?
@zenith epoch Sorry, just now catching back up
nvm i was afk too
yes whatever it wont be a problem the output column should have stuff like this
would anyone help me with something boring please 🥺
only if you're free
cause this sucks
I need an answer to all of these 😂
or at-least prepare an answer for them
hello
Sorry, you know me, I’m confused when people are shocked that app works in method you would expect
my task for now 😔
Some soothing tunes
@rugged root did it had to use .loc with a dataframe to avoid the warning was not able to implement it properly
a "firm" and "corporation" are synonyms, right?
Yes.
Huh, neat
Though firm has at least two meanings. Firm, the consistency/structural stability. "His muscles felt firm."
Firm, like a legal firm.
Information Technology Consulting Company
found this on the company site
I'll use this
!e
spam = [1]
ham = [2, 3, spam]
pork = [spam, 4, 5]
print(spam, ham, pork, sep='\n')
spam[0] = 6
print(spam, ham, pork, sep='\n')
@rugged root :white_check_mark: Your eval job has completed with return code 0.
001 | [1]
002 | [2, 3, [1]]
003 | [[1], 4, 5]
004 | [6]
005 | [2, 3, [6]]
006 | [[6], 4, 5]
!e
spam = 3
ham = [spam]
pork = [spam]
print(ham, pork)
spam = 4
print(ham, pork)
ham[0] = 5
print(ham, pork)
@rugged root :white_check_mark: Your eval job has completed with return code 0.
001 | [3] [3]
002 | [3] [3]
003 | [5] [3]
360p ew
it's because, these two other "interns" in my team, keep writing while(true) loops everywhere 😠
lol
"Your wiles do not impress me."
I was looking at the meaning
and I don't understand this work in the meaning itself 😂
I was playing on the homonym.
Honestly the answer to this for me changes. Right now looking at other people shi*code makes me angry.
for tomorrow, I think this'll do 😌
I'll add more stuff after shi* code part

I mean, you just need one source of "super income"
Artificial gravity (sometimes referred to as pseudogravity) is the creation of an inertial force that mimics the effects of a gravitational force, usually by rotation.
Artificial gravity, or rotational gravity, is thus the appearance of a centrifugal force in a rotating frame of reference (the transmission of centripetal acceleration via normal...
Sex in space, specifically human sexual activity in the weightlessness of outer space, presents difficulties due to Newton's third law. According to the law, if the couple remain attached, their movements will counter each other. Consequently, their actions will not change their velocity unless they are affected by another, unattached, object. S...
I guess, this would be fine 🤷♂️
!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.
I have no idea what that is
Docker proper has built in Developer Environment stuff now
@glad sandal what does it do?
using a venv is great when you dont want to crowd your global environment with all the stuff you install
I mean what do you use venv for
and you delete a venv all trash is out
I’ll google it
It’s VSCode shit I’ve been preaching for past 6 months
Right, but now it's fully built into docker, which should make it more accessible
get started with Dev Environments, you must have the following tools and extension installed on your machine:
Git
Visual Studio Code
Visual Studio Code Remote Containers Extension
Call me when PyCharm gets it
#web-development Will be able to help more than I can @desert sluice
alright thanks I'll ask there
!stream 689087720018280478
@glad sandal
✅ @glad sandal can now stream.
!voice @whole bear If you're wondering why you can't talk, please take a look at the #voice-verification channel
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
why
Why what?
@glad sandal You could add an idea generator, it would jumple multiple words into weirder words till an idea forms
could call it a random word generator
🪨 📰 ✂️
Are we gonna work on these? Or is it a personal thing
@glad sandal calculator?
my mosquito died

wow
!server
was it a good mosquito at least?
Please step up to view the remains.
key and peele pretty funny skits
he buzzed
that's about all I can say
At least it had a good life however brief
:respect:
hahaha
that of drinking my blood

The vampire Gods await him in valhalla
with a feast of blood
How to get malaria 1 on 1
yeah had malaria many times... not fun
take your worst flu x10
How do you explain making a database?
take a table x10
@gentle flint where to click
Heading out on a delivery run, I'll be Carlock here shortly
And a good tip is if you wanna disable it, just repress it 15 times
Can't hear you @rugged root

has more reqs
the olllam ag casadh Bridge of Gllass ar #FleadhTV
@flat sentinel
very standard Amsterdam bike

more bike pics
no
how do they still work
sotp
oopski
they are 99% rust
tf
because they are simple and uncomplicated
with barely any moving parts
when you go mbt'ing with a bike form the duch
you can drag those things through a metre of mud and drown them in a canal
they will still work
this one is dead tho
why the streaming is blocked?
ive never joined vc in here before, are we just watching some coding lmao
Well we're glad to have you!
thanks!
Me too for the first time hah
whats the project?
One sec
hmm
you were trying to get like users with voice verified role
or smth similar
to that
764802720779337729
#000000
0.00 0.00 0
3086
7
6445596672
That many
!e
print(308600/200000)
@gloomy vigil :white_check_mark: Your eval job has completed with return code 0.
1.543
1.543%
!server
are having the voice verification
Wait why would it be 308600 rather than 3086
Personally i prefer lack of video streaming permission because of the flood
!stream 411031233364099072
@cosmic lark
✅ @cosmic lark can now stream.
back later
bye verbose i hope when you comeback you have another mosquito
oh yea pretty cool stuff
Damn verbose is leaving as soon as I come
no, you're coming as soon as I leave
And yes, that is what she said.
Skynet it nothing compared to my power!
v2.0 is now available for general testing. The #669155775700271126 channel will be where I announce breaking changes and where you can ask for help. There will be role pings for breaking changes. Though I will try to batch them so you don't get excessively pinged for every little breaking change. You can get access to this channel by going to #381963689470984203 or #559455534965850142 and typing ?tester.
There is currently no documentation for a lot of stuff, I hope to fix this in the future. If you use v2.0 you are expected to update before asking questions to reduce the help bandwidth. To update to v2.0 alpha type the following command into a venv: ```
pip install -U git+https://github.com/Rapptz/discord.py
As the v2 implies, **there are breaking changes**. Right now the changes aren't incredibly breaking and there will be a migrating guide. For now, the list of breaking changes can be found in the project board (seen here: <https://github.com/Rapptz/discord.py/projects/3>). **Currently the major breaking changes that people will encounter are assets and timezones.**
Essentially all `datetime` return types will be timezone aware, so they have a `tzinfo` of `datetime.timezone.utc`. Likewise, if a timezone naive datetime is passed (such as `datetime.datetime.now()` or `datetime.datetime.utcnow()`) then it'll be interpreted as your local time zone. To get a timezone aware `datetime` in UTC there is a helper function, `discord.utils.utcnow()`. Alternatively you can type `datetime.datetime.now(datetime.timezone.utc)` though the util is shorter.
For assets, they have been reworked so you do e.g. `member.avatar.url` instead of `member.avatar_url`. To read you do `member.avatar.read()` instead of `member.avatar_url.read()`. You can check for more info by checking the documentation which resides in <https://discordpy.readthedocs.io/en/master/>.
**tl;dr: if you want to test v2 go to [#381963689470984203](/guild/267624335836053506/channel/381963689470984203/) and type `?tester` then install the library into a venv**
<@&859169678966784031>
The library has been updated with breaking changes. I promised I'd do role pings for breaking changes at an interval, so this documents all the breaking changes that have been done since commit hash e96df33 (June 28th) to c1c6457 (July 4th).
Breaking Changes
Asset.replacenow only accepts keyword argumentsAsset.with_functions now only accept positional only argumentsTextChannel.get_partial_messageis now pos-onlyTextChannel.get_threadis now pos-onlypermissions_foris now pos-onlyGroupChannel.owneris nowOptionaleditmethods now only acceptNoneif it actually means something (e.g. clearing it)timeoutparameter forui.View.__init__is now keyword only- When an interaction has already been responded and another one is sent,
InteractionRespondedis now raised.- Discord's API only allows a single
interaction.response.
- Discord's API only allows a single
- Separate
on_member_updateandon_presence_update- The new event
on_presence_updateis now called when status/activity is changed. on_member_updatewill now no longer have status/activity changes.
- The new event
Additions
- Channel types are now typed
- Member is now typed
- Client is now typed
- Permissions are now typed
- Core library errors are now typed
- Add various examples showing how to use views. There are more to come.
GroupChannel.owner_idnow gets the owner IDeditmethods now don't rely on previous stateView.from_messageconverts aMessage.componentsto aViewThread.typeto get the thread channel typeButtonStyle.urlalias forButtonStyle.link- Add default style for
ui.Buttonconstructor- This makes it so creating a URL button is as simple as
ui.Button(url='...', label='...')
- This makes it so creating a URL button is as simple as
Thread.mentionto get the mention string for a threadThread.is_nsfw()to check whether the parent channel of the thread is NSFWCommandOnCooldown.typeto get back the type of the cooldown since it was removed fromCooldown- Add support for fetching the original interaction response message.
Interaction.original_messagewill retrieve it and returns anInteractionMessageInteractionMessage.editorInteraction.edit_original_messagewill edit itInteractionMessage.deleteorInteraction.delete_original_messagewill delete it
MessageFlags.ephemeralto get whether a message is ephemeralClient.fetch_channelnow fetches threads as wellSelectOptionnow has a__str__that matches the client representation.- This might change in the future to remove the description from it.
Fixes
- Channel converters now work in DMs again
- Fix
Interaction.channelbeing None in threads - Change timeouts in
ui.Viewto work as documented Message.__repr__now shows the proper type, e.g.WebhookMessageandInteractionMessage- Change
Cooldownhandling to not reset token window when the number of tokens reaches 0 - Fix audit log permission construction breaking due to unexpected type errors.
- Fix
on_thread_joinnot dispatching when a thread is unarchived - Fix
Message.guildbeingNonewhen a thread is unarchived due to a new message
@zealous wave You didn't get muted from that right?
I only ask because it's a lot of text
She was not, got it
No
Good
I just had to do something
The timing was crazy
I'm sure I sent a log tho
Well yes
But like
Effort
This I'm stoked about
@leaden comet https://docs.godotengine.org/en/stable/tutorials/shading/shading_reference/shading_language.html
Introduction: Godot uses a shading language similar to GLSL ES 3.0. Most datatypes and functions are supported, and the few remaining ones will likely be added over time. If you are already familia...
Hey @leaden comet can I have perms to stream?
!role 764245844798079016
!role 764245844798079016
764245844798079016
#000000
0.00 0.00 0
8
8
512
Lmao imagine not having the role
Only cool kids have the role.
Rabbit is a cool kid, because he has the role.
Don’t put that on me
lmfao
Sludge metal (also known as sludge or sludge doom) is a genre of heavy metal music that originated through combining elements of doom metal and hardcore punk. It is typically harsh and abrasive, often featuring shouted vocals, heavily distorted instruments and sharply contrasting tempos. The Melvins from the US state of Washington produced the f...
Guys Atom or Tkinter
Those are different things. Tkinter is for creating a GUI, Atom is a code editor
"what" q&a 
Hey Mina
hi chiligurl
How are you today?
@dense ibex do you have brown eyes?
Provided to YouTube by Kakao M
brown eyes (갈색 눈동자) · Ha Dong Kyun(하동균)
ANOTHER CORNER
℗ LOEN Ent.
Released on: 2008-02-12
Auto-generated by YouTube.
yeah
Mine are a weird sea green colour
@leaden comet sorry if I'm interupting your coding but what language are u using to program your game. Also it looks very cool!
that sounds pretty 😔
like, really pretty
brown/black eyes are so boring
i say that as a fellow brown eyed person lol
except i'm asian so they're practically speaking, black
hmmm
A lot of people say that about my eye colour
I guess I will except that
!e
try:
print("Mina's bullshit")
except Exception as fine:
print(fine)

@dense ibex :white_check_mark: Your eval job has completed with return code 0.
Mina's bullshit
!e ```py
@import
@lambda _: _.name
class hello: pass
@zealous wave :white_check_mark: Your eval job has completed with return code 0.
Hello world!
!e ```py
package='hello';from.import*
@zealous wave :white_check_mark: Your eval job has completed with return code 0.
Hello world!
Where i can sing-up to code jam?
Sing-up?
No. This is the vc text channel, and this link is context to something that we're talking about
code jam qualifiers are over, and the event is not taking any new participants
Pycharm code reformat made my amazing oneliner(check out my other gist) into this - no longer a one liner.py
Yikes dude. Not cool.
hello
done with calling sis
should I join or go for a midnight bike ride and swim
you're not saving yourself lol, better to drop it
Yes
Guys @zealous wave @hallow warren, can we drop this convo please 😄
i shall join to find out what's going on with lx
Actually, come join us
@zealous wavesunmi
@zealous wave https://youtu.be/H8YW1tlsmE8
[MV] SUNMI(선미) _ pporappippam(보라빛 밤)
K-POP Wonderland, 1theK
K-POP의 모든 즐거움을 1theK(원더케이)에서 만나보세요! :)
Welcome to the official YouTube channel of K-POP Wonderland, 1theK
"1theK Originals" Subscribe 👉 https://www.youtube.com/1theKOriginals
[Notice] 1theK YouTube is also an official channel for the MV, and music shows will count the views from t...
Gan Ddeoreojineun Donggeo
Cat cute
oh my god that was a perfect diamond pattern of clicks
now the cat is licking my mosquito net
no
Ohh right I remember now
That's cool
thx
Anyways I'm going to go now, I'll be back later.
k cya
I found an article that said "The microwave was invented to heat hamsters humanely in 1950s experiments." And I thought, no it wasn't. ...was it?
Pull down the description for thorough references and credits.
Thanks to James Lovelock for his time! His latest book is Novacene: https://amzn.to/3hmKsWz [that is, of course, an Amazon affiliate lin...
The track is:
Michael Giacchino - I Hate My Life
this feels rather like the Customs and Excise Department
A mighty wizard really has to spell things out.
Starring Eddie 'Eddache' Bowley (http://youtube.com/eddache)
New merch! New merch! New merch! (http://tomskashop.com)
Written and Directed by Thomas 'TomSka' Ridgewell (http://youtube.com/tomska)
Featuring Harry 'Hbomberguy' Brewis (http://youtube.com/hbomberguy)
Cinematography and Colour Grading b...
this rather reminded me of monty python
Have you ever have a dream you were so sure was real? The simulation argument challenges our very notions of reality by asking whether everything we perceive is nothing more than an elaborate computer simulation. Recently, we've even seen headlines like "one in a billion" probability that we live in the real world. Could this be right? How does ...
I swear Elon musk believes in this theory too
He's absolutely sure, but the correct result is 43%
43% of the theory being correct ?
Skip 20 minutes in for the math summary
is that geometry dash files
Agnostic church: https://sundayassembly.online/
Welcome to the international Sunday Assembly movement:a global secular (non-religious) movement for wonder and good. We meet to celebrate life together in secular congregations around the world. Welcome This website is a hub for the international movement. Here you can find out about the Sunday Assembly story, find an assembly, and get informat...
"The final carpark"
Sambal is a chili sauce or paste, typically made from a mixture of a variety of chili peppers with secondary ingredients such as shrimp paste, garlic, ginger, shallot, scallion, palm sugar, and lime juice. Sambal is an Indonesian loan-word of Javanese origin (sambel). It originated from the culinary traditions of Indonesia, and is also an integr...
Researchers at UC San Francisco have successfully developed a “speech neuroprosthesis” that has enabled a man with severe paralysis to communicate in sentences, translating signals from his brain to the vocal tract directly into words that appear as text on a screen.
18 words per minute with up to 93 percent accuracy
Ah, this was a hard level
You're voice verified tho
@olive hedge fastapi has been great
not django?! hdu
not yet
Do not question it.
I have my bot hooked up to the api then I am gonna have my site hooked up to the same api
So all database queries are done through the api.
java 🤮
someone calling me out for using java
ur a java
Space Solar Power Incremental Demonstrations and Research Project (SSPIDR)
SSPIDR is a series of Integrated Demonstrations and Technology Maturation efforts at the Air Force Research Laboratory (AFRL) Space Vehicles Directorate to address space-based power collection and transmission capabilities.
Space solar power beaming is not a new concept...
🥺
if you see this, youve found me
That's great
bro this is amazing
I wonder if there is a tool that allows you to get all network names in a certain area
it's called "scan for wifi networks" 😏
Because technically that's public info
its called a cell phone
built in wifi 😏
fisher knows what's up 😏
Who needs a phone for that, just carry a motherboard that has built in WiFi
raspi
.randomcase Arduino
Arduino
I keep a portable psu, motherboard and monitor in my car so I can use the bios to look at nearby wifi networks
That's
whoat
wew
whoa
Pin it
.help randomcase
.randomcase <text>
Can also use: randomcaps, rcaps, rcase
Randomly converts the casing of a given text.
I've never had that happen to me

I'm just built dif
don't expose me
Im just build like a 

exported
deported
Wrong emoji
I dont get it
Idk I think they're just built like a bisexual flag cut in half
"Accidentally"
No like actully
omg happy bday scouttt
She said thx
Happy one year closer to death day
Cap, you never left your chair.
😦


😦


Alec's
Alecc
STANFORD, CA—A new study released Monday by researchers from the Stanford Center on Poverty and Inequality found that 70% of Americans have less than $1,000 saved to go to space. “Our research suggests that the vast majority of Americans may be woefully unprepared for the dawn of the new space age,” aid study…
ok
but who would even want to
Once again, why did you feel the need to post about this?
You never know when a sky deer might run into the path of the plane.
Is humor unwelcome in the Python serve?
You can make jokes but be respectful and don't shitpost
Plus in this context you had already said it
Add some water
You have to say "hello, how are you?" to the whisky.
Reasons to be religious:
- Nice wedding venue options.
@brisk current is that you making that rustling noise?
Can you turn on PTT
Captain Fisher: Pull Request review Any%
kurzgesagt
@olive hedge am I cool now
no
never
yes, I am proud

Kurzgesagt
Cursed time
Dammm. Captain Fisher: 200 seconds and 13 ms world record
cough the socks
quartz ge-socked
awwwww
how i feel about anyone born post 2000 
"Back in my day..."
where my 1900s fans at
If you're legally able to drink in the US, you're too old /s
1900s lmao
20th century gang
imagine not measuring the year relative to your own birth
me born in 2004
was I mentioned?
I was born in the year 0, it's currently the year 21
When you are born in the 1900s but you are still considered a gen z
1999 is fake 90's tbh
ahahahhahaha
poser 90's kids 
peppero
@hollow cape are you a 90s baby 
peppero is so nice
Pepperess > all other types of peppers
XD
totally tubular for sure

if fisher told me to jump I'd ask for a parachute first
!otn a off-I-fuck
that's what I'm thinkin 
and hes bad
otn a
thanks
Mmhm
lolll
le no

le sadge



nitro flex huh

Is that a 4k lemon emoji?
@brisk current turn on PTT please.
Sounds like your mic is rubbing against something.
WHAT IS THIS SORCERY

WHY




I really hate these and they aren't even about me

I need to make my own chili emojis but I'm not even a tiny bit gifted in art.
Damn that's def worth the monthly $50 for photoshop.
no not worth money for any software
GRAPHS!
furriners!
Seriously the small Denmark conquered Norway. lol
small denmark also fought extensive wars with sweden
look up Snapphane
@leaden comet
so pitiful
This is a Discord bot that comforts you when you are lonely, is there for you in the middle of the night, keeps you hydrated, and does all of your bidding like a sexy butler with a true passion for what they do.



I just had to deal with the slowest most ineffective raid I've ever seen. I don't think it can even be considered a raid
eh?
lololol so slow we didn't even notice?
there's a lot of that
gonna go grab some dinner and prep for a meeting, catch y'all later
later @hollow haven
Later!
A parody of YMCA, instrumental (WHICH I DO NOT OWN) taken from https://www.youtube.com/watch?v=5j9TP6Cp-yY
Inspired by that tumblr post...the one from which the 1st two lines were borrowed.
LYRICS:
Comrade, steel production is down
I said comrade, you must sleep on the ground
I said comrade, cause youre in new gulag
There’s no need to be capi...
A POLKA ABOUT HOW SOME GUY FEELS
WITH ARTWORK BY SOFIE MEISINGSET
do you know how it is that I feel?
do you know what it is that I've seen?
do you know what it is that I mean?
do you know how I feel?
unfortunately the DB has a not-joe condition
honestly banjo solo slaps

50523
177059





> 


artist moment

