#voice-chat-text-1
1 messages · Page 103 of 1
im learning rust rn
does node.js count as a programming language
or just an extension of js
@muted iceso what do you do for work/life guru-ji
(wannabe) astronomer
whhhhhaaaat
lolll guruji I lost my connection ;( will be back
Messier 87 is the name of the galaxy.
that should be an otn, dinosaur-shaped-nuggets
mexican quiche 👀
what makes it mexican? o.O
@tender sand Hi Joe, he's in here
Hello!
hi! ^^
How's everyone~
healthy-ish.
brb
til: continents are fake, just like taste zones on tongues.
ooo does anyone have a geographic tongue? lol
creepy sound there xD
'i just died'
goes silent.
Hot Take: Disconnecting greater than Manually moving to #756327105389920306 Voice Channel
I usually do that to indicate I'm coming back later
Insta is the best
yep that makes sense, not trying to diss anyone or anything lel
hmm interesting
I would understand if you were
lol
!pypi dpy-docs
as soon as they let me talk in this discord i'll be singing opera to y'all
it could be austrian opera
use this
it could also be italian or german
guild.default_role: discord.PermissionOverwrite(read_messages=False),
guild.me: discord.PermissionOverwrite(read_messages=True),
admin_role: discord.PermissionOverwrite(read_messages=True),
}```
guild = ctx.message.guild
member = ctx.author
admin_role = get(guild.roles, name='staff')
overwrites = {
guild.default_role: discord.PermissionOverwrite(read_messages=False),
guild.me: discord.PermissionOverwrite(read_messages=True),
admin_role: discord.PermissionOverwrite(read_messages=True)
}
await guild.create_text_channel(name=f'ticket - {ctx.author}', overwrites=overwrites)```
odd_numbers(x,y):
for i in range(x,y+1):
if i % 2 != 0:
print(i)
!e ```py
x = 10
y = 15
for i in range(x, y):
print(i)
@whole finch :white_check_mark: Your eval job has completed with return code 0.
001 | 10
002 | 11
003 | 12
004 | 13
005 | 14
!e ```py
@import
@lambda _: _.name
class hello: ...
@whole finch :white_check_mark: Your eval job has completed with return code 0.
Hello world!
are you joking
WHAT IS THIS
It's amazing.
idk around here
Can someone help me install something on kali???
import os
len(os.listdir(directory))
hi
a
import os
x = os.listdir()
for I in x:
print(I[-2:])
import os
x = os.listdir()
how_many = 0
for I in x:
testCase = I[-3:].lower()
if testCase == ".py":
how_many += 1
print(how_many)
what projects are you guys working on
it's to easy and small to make a socket connection in python
it seems dangerous
like the lenght of the packet
search engine
import DatePicker from "react-datepicker";
export default function UsersTable({data}){
const columns = useMemo(
() => [
{
Header: 'UserId',
accessor: 'id'
},
{
Header: 'Date Registration',
accessor: 'dateRegistration',
Cell: ({ cell: { value } }) => <DatePicker selected={value} />
},
{
Header: 'Date Last Activity',
accessor: 'dateLastActivity'
},
],
[]
)
370 | var originalDate = toDate(dirtyDate);
371 |
372 | if (!isValid(originalDate)) {
> 373 | throw new RangeError('Invalid time value');
| ^ 374 | } // Convert the date in system timezone to the same date in UTC+00:00 timezone.
375 | // This ensures that when UTC functions will be implemented, locales will be compatible with them.
376 | // See an issue about UTC functions: https://github.com/date-fns/date-fns/issues/376
AllFunction == input('something > ')
if AllFunctions == "MultiplyIntegerEquasion":
num1 = input('enter 1st num: ')
num2 = input('enter 2nd num: ')
result = float(num1)*float(num2)
print('result')```
Cython
All the resources you need to give yourself a world class computer science education
codeavengers
278
usd
2000
would suggest fastapi
FastAPI framework, high performance, easy to learn, fast to code, ready for production
FastAPI Op
actix better
lmao the people who built starlette(which fastapi relies on)
and encode/orm - popular async python orm
are the same people who wrote django rest framework
WHY ARE THESE GUYS SO GOOD
"good"
they're awesome developers though
sure
griffs just salty his PR wasnt accepted
or even reviewed
lolol
lol fastapi was inspired by django rest framework to make their autodocs system
!close
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
there ya go
saved_text = open("SavedText.txt", "w")
text = input("Text: ")
saved_text.write(text)
saved_text.close()
@worthy stump
with open("text.txt", "w") as f:
#code
from tkinter import *
gui = Tk(className='ide')
gui.geometry("400x200")
text_editor = Entry(gui, width=100)
with open("text.txt") as f:
text_editor.insert(0, f.read())
text_editor.pack()
gui['background'] = '#C3C3C3'
gui.mainloop()
@digital cradle
hello casey
hello*
print("Welcome to Cat Text editor!")
text = input("Enter the text you want to save here: ")
txt_filename = input("All of you text will be saved to a text file\nChoose a name for that text file: ")
text_file = open(txt_filename + ".txt", "x")
if text_file+".txt".exisits():
print("\033[1;32;40m ERROR: That file name already exists")
text_file.write(text)
text_file.close()
|| @worthy stump @dusty apex ||
tell your question
whar do u need help with
What will the following code look like for:
text=
" You know, they are pretty cool... "?
print(text.upper())
print(text.lower())
print(text.strip())
print(text.find())
print(text[0:3]+text[14:])
Lastly, write a sentence on how you would utilize the power of user input for Python! (Type this in python as a block comment with the syntax shown below)
"""
Here is your
sentence.
"""
this in python as a block comment with the syntax shown below)
!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.
no not that
What will the following code look like for:
text=
" You know, they are pretty cool... "?
print(text.upper())
print(text.lower())
print(text.strip())
print(text.find())
print(text[0:3]+text[14:])
Lastly, write a sentence on how you would utilize the power of user input for Python! (Type this in python as a block comment with the syntax shown below)
"""
Here is your
sentence.
"""
this in python as a block comment with the syntax shown below)
try:
text_file = open(txt_filename + ".txt", "x")
except FileExistsError:
print("\033[1;32;40m ERROR: That file name already exists")
else:
#code
@digital cradle
ok
hello
so I want to convert the text into the following code: print(text.upper())
print(text.lower())
print(text.strip())
print(text.find())
print(text[0:3]+text[14:])
@digital cradle
print(text.upper())
print(text.lower())
print(text.strip())
print(text.find())
print(text[0:3]+text[14:])
no, convert " You know, they are pretty cool... "? into print(text.upper())
print(text.lower())
print(text.strip())
print(text.find())
print(text[0:3]+text[14:])
yes
@tribal crow
you wanted the output right?
no the code
for what?
my question
hello @ocean hedge
hello@dusty apex
ssup
i am good
n wassup with codin
@dusty apex print(math.ceil(1.4))
File "F:/PyCharm/tkinter_0/main.py", line 17, in <module>
buttons[Button(gui, f"{button_name}", command=lambda: on_click(button_name))] = (math.ceil(button_name / 3), button_name % 3)
ValueError: dictionary update sequence element #0 has length 1; 2 is required
buttons = {}
for button_name in range(10):
buttons[Button(gui, f"{button_name}", command=lambda: on_click(button_name))] = (math.ceil(button_name / 3), button_name % 3)
@worthy stump are you free?
this
hey @worthy stump what can i even do with coding words you guys use throe me off and i have zero idea what im doing
input
@misty sinew diplomacy
i think that's a heavy voiced statement
@misty sinew hey bud
@steep mural do u use sublime text
nope just vsc for the most part
hold on ill get my mic fixed
it's not working for some reason
Why sublime text hehe
why not ??
@misty sinew i have no idea what you said 😦
its nothing
dang why dont i have permission to speak
!voice check the voice verification channel instructions below
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
hi
Hey!
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
import json
# load json from file
data = json.load(open('file.json', 'r')) # for string: json.loads(string)
print(data)
print(data['array'][2])
# export to json:
print( json.dumps([1, 2, {'a': 'b'}]) )
!stream 843651205720702976
@fallen cape
✅ @fallen cape can now stream.
We're a large, friendly community focused around the Python programming language. Our community is open to those who wish to learn the language, as well as those looking to help others.
best resource for security: writing classes (and I don't mean Programming Type)
What is this noise about GPT3
yo
!play devil eyes
@mild flume May I have perms to stream cam for a bit?
!stream 408276512656326656
@half zephyr
✅ @half zephyr can now stream.
Alright I am gonna head out, might be back later
what else would you expect from twitter?
!warn 780464811989139456 Don't post chain-mail here please.
:incoming_envelope: :ok_hand: applied warning to @modern comet.
two cats
huset
Här rumsterar jag Kjelle Bus , en fyrfotad skenhelig pälsboll. Samt Conrad som är en Cane Corso.
I think it was made by a 60-year-old lady
Coeliac disease or celiac disease is a long-term autoimmune disorder that primarily affects the small intestine. Classic symptoms include gastrointestinal problems such as chronic diarrhoea, abdominal distention, malabsorption, loss of appetite, and among children failure to grow normally. This often begins between six months and two years of ag...
@tawdry wraith
Photopea Online Photo Editor lets you edit photos, apply effects, filters, add text, crop or resize pictures. Do Online Photo Editing in your browser for free!
😂😂😂😂
my winter pfp
sjsj
lol
😆
Wait, we have whale playgrounds here??
Also, i really hope you’ve slept
Ohh, I see
I slept from 03:40 to 07:40
My dear verbose oof, you need more regular and consistent sleep
my dear vestergurkan, gurkanship does not automatically confer the rights of fathership
Oh son, if you only knew
uwu daddy
It doesn’t include daddyship though
well a lot of things are happening here
meh
It dont let me speak in vc
Hellow guys in the voice chat
i cant enter but if you know some python am trying to make a script that detects an image then it clicks it
but my script doesn't wrk
i been trying to troubvle shot for like 2,5hours
yes i just started coding
:incoming_envelope: :ok_hand: applied mute to @modern comet until 2021-07-08 23:49 (9 minutes and 59 seconds) (reason: discord_emojis rule: sent 30 emojis in 10s).
my connection is dying lol
does anyone hear me?
Which companies are you talking about?
Hello Lads and Lasses
If there was an admin named pantsforbirds i'd challenge them to a duel to death @elder wraith
I joined that super big space Halo MMO that was popular like 5 years back, and some dude had my name already
told me he saw the name on another game and stole it SMGDH!
@elder wraith i consistently blow out my 32gb of ram 😦
@raw wren its a weird keyboard. its okay for a laptop keyboard, but its not like amazing or 8 hour use every day
alternatively get a company to buy you a macbook pro 🙂
@elder wraith i had to run code on the wikipedia corpus 😦 it was like 800gb when uncompressed and enriched with NLP attributes
Im using 438gb now on my dev laptop
duuude what're you doing that uses that much ram? i ask bc now i have 32gb ram to play with
just NLP stuff
it blows out all the time
We have to be very careful with how we run the code locally so that it is running on streams of data and writing out streams of data so it doesn't collect in memory
oh btw @mild flume i did a thing
pip install == pip unremove
this is only the beginning of my adventures into pip's source :)
that can be done with alias 🙂
how?
alias "pip unremove"="pip install"```could work, not sure tho
doesnt work
fair
anyone got any clue on how to solve this
user_message = input("Enter a message? ")
user_distance_letter_shift = int(input("Enter the distance value? "))
code = ""
for character in user_message:
order_value = ord(character)
cipher_Value = order_value + user_distance_letter_shift
if cipher_Value > ord('z'):
cipher_Value = ord('a') + user_distance_letter_shift -
(ord('z')- order_value + 1 )
code += chr(cipher_Value)
print(code)
Enter a message: Hello world!
Enter the distance value: 4
Lipps${svph%
.love @ember stream
lemon#0001 ❤ _jake#0002 scored 98%!
Your relationship will most likely work out perfect. This doesn't mean thought that you don't need to put effort into it. Talk to each other, spend time together, and you two won't have a hard time.
.love 98195144192331776
Mr. Hemlock#2740 ❤ _jake#0002 scored 22%!
The chance of this relationship working is not very high. You both need to put time and effort into this relationship, if you want it to work out well for both of you. Talk with each other about everything and don't lock yourself up. Spend time together. This will improve the chances of this relationship's survival by a lot.
.bemyvalentine @raw wren p
.bemyvalentine @jake p
Your input was invalid: Member "@jake" not found.
Usage:.bemyvalentine <user> [valentine_type]
.bemyvalentine @jake
Your input was invalid: Member "@jake" not found.
Usage:.bemyvalentine <user> [valentine_type]
.love myself
myself#3928 ❤ Developer#3496 scored 60%!
Your relationship has a reasonable amount of working out. But do not overestimate yourself there. Your relationship will suffer good and bad times. Make sure to not let the bad times destroy your relationship, so do not hesitate to talk to each other, figure problems out together etc.
.bemyvalentine @ember stream
Your input was invalid: You cannot send a valentine to lemon#0001 as they do not have the lovefest role!
Usage:.bemyvalentine <user> [valentine_type]
what a hell
.bemyvalentine @ember stream p
Your input was invalid: You cannot send a valentine to lemon#0001 as they do not have the lovefest role!
Usage:.bemyvalentine <user> [valentine_type]
yeah
test
@tender sand abandoning us smh
silence
@tender sand dullard
@ancient phoenix deal with this man
@reef stirrup Please return to your seat.

good day
hey how can i access the voice chat
!voice-verify in #voice-verification
anyone here very knowledgeable about "Pyenv" ?
!voiceverify
turtles arse green violets are blue
What is the relevance? Why did you do?
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
big 'n scary company
sends shivers down my spine
questioning will shock your mind
seal your doom tonight
@narrow needle
Hmm, could you conditionally highlight the table cells?
busy doing ridiculous shit on android
Wait what did I do lol
Stayed up all night, smh
(I basically did the same 😄 )
oh lol yeah
Oh dear 😄
what is this data about
Oof, are you taking any machine learning courses?
Ah right. I'm considering doing one this year 🤔
dawwwwww
Yeah 😊
it's a whisker explosion
Tomorrow her real owners are taking her back
Also side calf reveal
My cat is 19 yo
Jesus
this one opens almost any door when alone, but when someone else is in the room she meows at the door until that person opens it
If in doubt, ask.
hello
i love the subtitles that ms teasm generate
teams*
@raven orbit we are in vc-1
germany
!voice
4
just trying the repl
!e is what you'd use
wait why dosent it show math
Because it's a built in
okay thanks
hmm
So it's not on pypi
exit caravan
Hello @mild flume. Good to have you back.
Damn I love your voice.
Hey @raven orbit @mild flume, check this out
I don't know, I'm not looking at it right now. I have other stuff I'm taking care of
what are you writing
"hi"
!tvban 368692694551101443 2w You consistently make loud noises in your mic, interrupt conversations, and act as if you don't know what we're talking about. If this happens once again, you will permanently have your voice permissions revoked.
:ok_hand: applied voice ban to @sleek parrot until 2021-07-29 13:50 (13 days and 23 hours).
shayan, why are you reacting to your own message
No brain cells
Hey
vakwerk
Timber framing and "post-and-beam" construction are traditional methods of building with heavy timbers, creating structures using squared-off and carefully fitted and joined timbers with joints secured by large wooden pegs. If the structural frame of load-bearing timber is left exposed on the exterior of the building it may be referred to as hal...
Donaudampfschiffahrtselektrizitätenhauptbetriebswerkbauunterbeamtengesellschaft
<U32
also have a German dialect
Fachwark is een Bauwies no oole Traditschoon, de vele Johrhunderte bi’n Bo von Hüüs un annere Gebüüde bruukt wör.
Dat hölten Gefache an sick - Schwell, Stännerwark, Riegel, Sträben, Plaat - ward vun de Timmerlüüd upstellt.
De Utfachungen (de Füllungen twischen de Hölter) wören fröher mit hölten Flechtwark un Lehm herstellt. Jichenswann un je na...
Fack-waark ees ehn baw-wees naw ool tradit-shun, der well your-hundred been bow fon hews un ahn-ner...
@peak frigate Nuuuuu you escaped
lasaaga
not that far off, although you got a few words wrong
Vietnamese pronunciation:
phác-quác i-xơ en bau-vi-zơ nô ô-lơ tra-đít-sưng đơ phê-lơ yô-hăn-đớt bin bô fon hứt-sơ un ăn-nê-rơ gơ-bứt-đơ bờ-rúc-tơ vơ
This is about as approximate as a Vietnamese can pronounce...
@raven orbit @mild flume This is how I would pronounce it with Vietnamese phonology.
@raven orbit Yes.
Tôn Ngộ Không
Vietnamese name of "Sun Wukong"
@raven orbit One interesting trivia about Vietnamese:
d is pronounced like z in English, unlike d in almost all languages.
đ is pronounced like English d instead...
when i was your age, i was a teenager too
Also, the pronunciation of the digraph ch varies depending on its position.
When behind a vowel/diphthong, it's pronounced ch.
When after a or i, it's pronounced k.
So yeah, Vietnamese orthography is very complex.
@raw wren What translation?
You mean Vietnamese noodle soup.
the Autobanhmi
It's spelled "phở", and pronounced like "fur".
"Bánh mì" is pronounced like "bank-mee".
That sounds very close to how native speakers would pronounce, if we ignore tones and stuffs.
@raw wren he said rice
Recently, I've been working on an auto-typing program tool in Python.
I am planning to use this tool for demonstration purposes.
livestock
Wait what do they do for the environment @mild flume?
from collections import namedtuple
namedtuple('Protocol', '__array_interface__')
Hey @mild flume?
Would you un-vban me?
Well guess what? I'm now a mature person, and I'm not gonna piss you guys off again.
Just un-voice-ban me.
They're important for medical purposes
@mild flume You gotta un-voice-ban me.
No offence.
Wouldn't you want to hear my voice? Real voice?
whats this
If you want to appeal an infraction, send it to @crisp hazel
How?
croquette
A croquette (/kroʊˈkɛt/) is a type of dumpling consisting of a thick binder combined with a filling, which is breaded and deep-fried, and served as a side dish, a snack, or fast food worldwide.
The binder is typically a thick béchamel or brown sauce, mashed potatoes, wheat flour or wheat bread. The binder may be mixed with a filling or may be st...
Send a DM to the @crisp hazel bot, say why you should be unvoice banned, plead your case, etc.
I might consider doing it.
Speaking of food...
The Kugelbake (German: Ball Beacon) is a historic aid to navigation in the city of Cuxhaven, Germany, at the northernmost point of Lower Saxony, where the River Elbe flows into the North Sea. In the Low German dialect of the Middle Ages, the term bake referred to all navigational aids – including lighthouses. About 30 meters (100 feet) high and ...
when you absolutely must bake your kugel
Cuxhaven ([kʊksˈhaːfən], Low German: Cuxhoben) is an independent town and seat of the Cuxhaven district, in Lower Saxony, Germany. The town includes the northernmost point of Lower Saxony. It is situated on the shore of the North Sea at the mouth of the Elbe River. Cuxhaven has a footprint of 14 kilometres (9 miles) (east–west) by 7 km (4 mi) (n...
That is a fuckton of cheese
HII
HII
hIIII
hiii
mmm it's too early to say
i have a doctor friend that codes
problem is she's too busy
but she wants to implement some ML to problems unique to her field
the new computer?
yes
512
it's alright
which is fine, given we use network storage for everything
tf? is that a flash drive or something
Hey guys...
#include <iostream>
int main(){
std::cout << "Natural Harmonia Gropius\n";
return 0;
}
yeah instead he keeps telling us to delete stuff and i'm like uh no
we cannot
idk
i think it's a drive
bc they recently upgraded to SSD
¯_(ツ)_/¯
but like
if it were virtual hemlock
isn't there a drive, somewhere?
i know the 1st drive is off premise at a colo
2nd one is in our office and i thinkk it's hdd
"so many young ppl nowadays" lol
writing script for a game is pretty hard
Script as in dialogue?
you how in like gta they have storyline
Yeah
yea i had to write a whole storyline for the game we made for code jam
i don't think i've ever set foot in an applebees
well that was a very simple wedding
i had a solo dinner w/ my physics teacher in applebees bc that was the 'prize' for scoring perfect on the regents exam
twas so awkward
lol, how was the food though
yea creepy stuff
yes right
apple bees gift card?
that's still fucked tho
naw a nice middle aged woman lololol
twas STILL awkward
there are women predators yes
just ban eating out
i dig old chicks tho
that's nice lmao i don't
xd
($age - 7) * 2
pick a number any number!
the best thing happened in my school was my computer teacher, like he was not interested in teaching us and we had an exam of c++, so thats how I like turned to coding stuff, like i read the computer book and also i read the docs, I think it happened for good, ps: most of the students failed
and i got full both in practical and written
most shell langs use that
poor classmates
wait no, they use () also
wait no, i think it's likei all of them
$() is for running like, another command
i just wanted to reference a var
what was the thing in spaceballs
does stephen speilberg direct jurassic park?
where everyone had the same lastname
i am thinking of making an application which like converts a word file or a libre office file into a .txt
let me fix my mic
aight its audible
@unreal rock
this the cool kid channel?
its good english
Michigan, US
I'm between grandrapids and lansing
so near there
think I'm going to try this https://ttkbootstrap.readthedocs.io/en/latest/tutorial.html#simple-usage
Gmail API is heavily restricted if account isn’t Google Workspace
True
for my gui
Google leaves that little tidbit out
QT is not free though unless for own usage
its been awhile since i was last there using C++ with Qt
PyQt6 is out now iirc
damn
Australian Disney prince
Aussie jokes incoming
This license does not include any resale or commercial use of any Amazon Service, or its contents; any collection and use of any product listings, descriptions, or prices; any derivative use of any Amazon Service or its contents; any downloading, copying, or other use of account information for the benefit of any third party; or any use of data mining, robots, or similar data gathering and extraction tools.
Does Tkinter come with base python now?
when i try to type fast i make horrible typos
Just takes crap tons of patience
try typing with home keys
like thois
Just rip them off and tap the other keys with them.
huh
lmao
yeah
what mr hemlock said
LOL
The only way I learnt to type "faster" was getting used to home keys
bye guys
bye @dusty apex
fdsa on left
LOL
yeah my bad
DAMN
getting naughty with insects
@stuck bluff i was told sea water
and not fresh water, which makes it worse
LOL
yeah pee is pretty warm
ok, didn't knew
definitely would have peed on myself
they don't know do they
why australia have snakes
it's surrounded by water
so where did the snakes come from 🤔
flying
australia have flying snakes
lmao
nothing biting through that steel
everybody gangsta until spider manage to get through the armor
@stuck bluff im always paranoid so i always flip my shoes and check if theres nothing im them before i wear
i know someone that actually faced that
spider inside shoes
pass
true though i once ate cat poo and became jeff bezos
@stuck bluff I must be a female
nerds!
@mild flume I manage fear by just stop caring and pretending its all a video game and will end soon
o-o
perhaps
are you an npc in my simulation or am i an npc in your simulation?
Disassociative tendencies.
you both are in mine 😈
giants are real!
Tbh a lot of religions indirectly suggest that we're in a simulation. They say god is outside the universe and time therefore god is like a user who simply created his game which is this universe that he in not part of @mild flume
oooo
LOL
yea
yea
that could explain alot of stuff
AHAAH
Well apparently theres a god in hinduism who's wife died and he cried and a tear fell on earth which made a river, don't remember the rivers name rn but it exists to date
(if any hindu is here correct me)
Back in a tic
Inb4 Hemlock got called for printers
printers ew
I vaguely remember him saying he's tech support or similar to that
flood is receding in germany
In Erftstadt, nabij Keulen, zijn meerdere huizen ingestort. Op luchtbeelden is te zien dat er veel land is weggespoeld. Volgens de lokale autoriteiten zijn er doden gevallen. Hoeveel is nog niet duidelijk.
looks quite impressive
That is a lot of broken homes
^
Flood is a staple here every monsoon/tropical storm season
and these are beautiful looking homes too
you should see the shit they build over here
mother nature
you never know 😔
"Mommy Earth is p i s s e d"
At least you folks didn't have any destroyed-hydroelectric-dam-induced flash flood
Best part is that you usually don't need a hydroelectric dam to bust open to have flash flood, you just need heavy rain and the operators at the dam go "Ah fuck it, open the gate"
why are these so high res? 🤔
aren't reporters supposed to have shi* cameras?
If you have a decent phone, it’s high res
Like iPhone Pros are really good cameras
I opened the original in the browser
it's really really good image
again, minus the suffering
My iPhone Pro Max at max setting takes really really good images
And Pixels have really good pictures
If you got steady hands and arms and body and footing
ok 😂
Hemlock's bacc
for a second i thought "what we are good ?" "WE'RE FUCKED" oh yeah that sounds about right
Good morning. I apearently cant talk yet in the voice channel, so I have to type more messages and such. How are yall doing?
Doing well, how about yourself?
Hello , we are discussing the grim reality of climate change
Pretty good. Funny enough im right near WV lol.
HA, interesting time to join in
Im actualy a little stuck on somethin. DO any of yall have a helpful link for how to make a dataset for tensorflow? Im trying to have it work with words and an array didtn like it lol
Speaking of making it fart without climate killing us, i wold be suprised if we lived that far given global tensions now that all the nuclear treaties are not being resigned.
With solar panels, a few people are atualy looking into making farms out in sahara desert. Its actualy possible to, even working aorund the natives, can power all of the EU with a farm. Now only thing is it would be huge, like the size of NM. And they would use molten salt to have power over night.
Theres huge campaigns about trying to sponsor this. Only thing is that doesnt seem too viable given global politics sadly... Also Mr. Hemlock thank you! i didnt know there was a channel for that!
Yep! That's the problem with our crap tons of channels. But it's worth eyeballing the Topical channels
We've got all kinds of topics there
Would Dictatorship fix these issues ?
Yeah sad
Me and my friend were once thinking about this, we thought old people and their systems were outdated and the world would be better if world was run by younger people, we thought then they wouldnt have experience then thought every member in high ranking position would have a experienced advisor but only advise the decision has to be the younger persons
All hail our new AI overlord!
Basically, let’s colonize Africa to enrich Europe? Bad Europe, you were supposed to stop doing that.
class MyClass:
def my_method(self):
...
def my_new_method(self):
...
MyClass.my_method = my_new_method```
yeah your brain is blaming your hands, riiiiight
huh
yeah actually
you know the thing about bad handwriting ? i read somewhere smart people have bad handwriting because they can't write it fast enough, could be some thing real
Yeah for sure can never rely on studying without paper
How long is the notice period at your orgs
Our org just decided that 3 months was a good idea
yeah
India
It was 2 months
I think we can abscond but that then is a bad mark on you
2 months was still ok, but 3 months is too much
sadly it is
BOND is like a requirement for new joiners in our country
they are usually 2 years you cant leave until its 2 years other wise you can be fined
shits fucked up
I mean our org rarely pursue the fine because not worth the trouble
heres a nice pun i found
person: officer a storm just blew away 25% of my roof
officer: oof
US courts are looking at those with disfavor
woah you pinned it nice
twas gold
@stuck bluff I think somewhat similarly but I imagine I'm talking to a younger me, that helps a lot
"Oh what the fuck were you thinking ? " so many times when i see old code of mine
@hallow anchor Which book I didnt get the name ?
Looks interesting will definitely take a look !
For sure! I'd highly recommend the Phoenix Project, if you haven't read it too
That one's from Gene Kim, George Spafford, and Kevin Behr
Phoenix is less fun
"10:30 PM" India now
@elder wraith
"24:00" Russia, Sibir now
That is so true , whatever you said
Huh
Neat
It's so weird to me that we have so many countries that we don't call by their actual name
when they tell us "we work with international clients"
they're talking about Rabbit 😂
"Individual Augmentation" I was really hoping for like
Robot arms
@hushed wolf Is this trip for you to head to the temple?
Our Indian education system churns out the worst engineers
Quantity over quality
Although, this is probably wrong, is the main focus of the education there to get skills so that they can be outsourced? Like bringing in outside money?
and it doesn't even give you enough free time to learn stuff on your own 😔
assignments, vivas, frequent exams etc... etc..
most of these are useless, assignments you are going to copy from seniors, vivas are pointless questions and exams also are more on your recalling ability rather than implementing
yeah, I forgot those newly introduced bullshit Project Based Learning
now every subject has a project
every fuc*** subject
even the HSS one's
Vivas?
Roger
get rid of everything else just keep project its ok project you a lot to learn
sorry
it like your oral exams you get asked questions by professors
No you're good
it's just, I'm doing something on the side
I think it's more of a grouping.
this is what they taught me in college......
Like.... primary responsibilities and secondary
So you may have multiple skills you apply to your primary responsibilities that might be different to the secondary ones
But I have no idea
@elder wraith we had to do a test for something and i observed something was incorrect and it wasn't correctly implemented
i said we should point this issue out to our clients
my manager said no we need to solve it first no need our clients know about the issue and that was it
next day our client caught the issue and we just took shit which could've been avoided but "culture" and "hierarchy"
Americans -> Love to do things on their own. So if their satellite broke down or something, they'll go to the store, buy all the parts, and fix it themselves
Japan -> would call the repair guy. They consider it a menial task to fix it themselves
**India **-> Would find the cheapest option. (If they could repair it, they will)
@elder wraith this is it per month
20k rupees for a Tata entry level dev
@elder wraith They keep the employees on payroll and move them onto different projects or if there is no work they are "benched" (no projects or work just on payroll for doing nothing)
Azure functions
@elder wraith No in India its norm to keep education at last
well, we might apply for multinational companies
and recruiter could be from abroad
dell, amazon, google, microsoft etc..
Really?
Because so many contractors won’t shut up about it
Because college education in india doesnt mean shit, we have so many low education standard colleges
.xkcd 1319
g2g, have a nice day everyone !
bad pun
@gleaming agate a "repo" is a "repossession" - like if someone doesn't pay for their car it gets repo'd.
I see - really didn't get that
it's just a bad pun... lol
Here's a good one if you're looking for braces in Python syntax:
from __future__ import braces
Here's what happens:
>>> from __future__ import braces
File "<stdin>", line 1
SyntaxError: not a chance
read the error... lol
@gloomy sinew yes i rememebr u
ur the fast typer
i cant talk
still not verified
:(
lol
spam
i did
it said i need to type for like
yep
its hella painful
@misty sinew
types
yea
types: int, string etc
@unreal heron type on the voice chat 0
oh sh my bad
spam == hot
spam = hot
if spam == hot:
print("Oh yes spam is so hot")
shit
@digital cradle really depends on what you're writing, you can either float or int
for example sometimes you don't wanna use float
@glad vault here bro
ok
but you have the pc right there
Pls adjust with this my pc doesn't have discord
you wrote your code wrong, so uhh
What is wrong in that
can fix but you'll do that yourself
Pls tell me
no
Send me the correct one just the mistake
sry
Okay you also don't know how to do it fine I will ask someone else
No worries
Thanks for your time
ah frig,gotta go
Later
Catch you later
I left for a good forty minutes and shock to still see you all there
Why the first thing I come back to hear is gambling your life with insurance companies 💀
What
Bercow put-down 09/09/19
van uitstel komt afstel
Ever wondered how to make a sneaker bot? You should watch this video!
Check us out at:
https://pythondiscord.com
https://discord.gg/python
Snickers satisfies.
I cannot spell
Generic open source automation framework for acceptance testing, acceptance test driven development (ATDD), and robotic process automation (RPA).
Firefox is much faster than chrome though, even with the UI changes...
on mobile
OOOhh
switch away from the nightly build
the stable is good
@torn sapphire
I would assume that chrome has a superior tech stack. Its just the volume of third party API calls that go through chrome that slow it down.
Firefox + UBlock blocks about 75% of advert API calls for me.
Whats the name of the engine again?
godot
!otn a there-would-be-a-dent-in-me
:ok_hand: Added there-would-be-a-dent-in-me to the names list.
But its rendered client side
but yeah can't really think of any reason not to use the SVG...
Tool to help contributors find interesting good first bugs and issues to work on.
hg.mozilla.org repository index
Content of browser/branding/official/content/about-logo.svg at revision 3d302847f025b332190a747a21bb1fedaa5e7b98 in mozilla-central
I did it
hello
if some_condition:
some_action
!= is the opposite of ==


