#voice-chat-text-0
1 messages · Page 1025 of 1
Ohhh, the area is improving quite fast.
back
Matlab counts as an exercise in masochism
well, i don't think you can count it as video understanding.
I need to wait for 3 days to get voice verified.
Have you done code review for any selection process?
Nathan Evans - Wellerman (Saltwives Mix) | Official Video
Listen now: https://nathanevans.lnk.to/UKWellerman
Use the Wellerman sound on TikTok: https://vm.tiktok.com/ZSwDCN55/
Follow Nathan
TikTok: https://www.tiktok.com/@nathanevanss
Instagram: https://www.instagram.com/nathanevanss.ig/
Twitter: https://twitter.com/NathanEvanss
Wellerman Lyr...
why does it always start raining just before I need to go outside
Can you please go outside near my vegetable garden then?
you do realise that we have invented something called umbrella, or if u want, u could just use a raincoat
🙂
hahahaha
Trousers still get wet
shoes also
having to take an umbrella it with you is also still irritating
wear pants then
wwwwwwwwhhhhhhhaaaaaatttttttttttttttttttt!!!!!!!!!!!!!!!!!!!!
i love umbrealla
i ma tlaking about long one which can be used as a stand too
its just awesome
🙂
i love them
The only stand I'm willing to use is Heavy Weather
corporate needs you to find the difference between trousers and pants
trousers are more likely to have belt loops
what's wrong with belt loops
easy to wear, no zip, no buckle (i am talking about elastic type pants)
easier for an attacker to grab
lol its jsut annoying
do you have plans?
eh
are you sure you don't mean underpants
no
i ma talking about pants
even the one i am wearing rihgt now is of that type
cotton, elastic, no zip, long till the angle or maybe a bit more longer
its just comfortable
speak for yourself, I'm wearing swim shorts because I plan on going paddleboarding later
and because it's over 80 here
:incoming_envelope: :ok_hand: applied mute to @whole bear until <t:1653500668:f> (9 minutes and 59 seconds) (reason: duplicates rule: sent 4 duplicated messages in 10s).
got bonked
last time i saw (SAW) a pool was like 3 years ago
xD
last time I saw one was 6 years ago
no, 5
wow
There's one in my apartment complex. I don't use it because it's only 4 feet deep.
arent u 3'7
?
xD
No, I'm 5'11"
it's not a joke. making fun of people based on height isn't funny, never was, never will
There's something good you can say about every programming language. But that's no fun. Instead, let's take the worst features of all the languages we know, and put them together to create an abomination with the worst syntax, the worst semantics, the worst foot-guns and the worst runtime behaviour in recorded history. Let's make a language so b...
bruh its funny because u are not 3'7
😤
if u were 3'7, i wouldnt making fun of taht
because mostly it would be some medical condition
or even if u were just 5 foot, i still wouldnt make fun of that bruh
😦
i have seen this entire video
its soo amazing that those just died
i feel bad the guys who developed these programming language
well, back to this I guess
https://www.youtube.com/watch?v=bgbH4FAmAA0
Presenting the Train Driver's View / Cab view from two of the most beautiful and scenic railways in the world, The Bergen Line and the Flåm Railway.
All videos was recorded by me, RailCowGirl, from my everyday running passenger trains on the Bergen Line and Flåm Railway through all seasons. Videos are are swapped out every now and then.
Join ...
Gotta love "live" views of norway
I'd say what really lead us astray from Britain was the following:
He has erected a multitude of New Offices, and sent hither swarms of Officers to harrass our people, and eat out their substance.
He has kept among us, in times of peace, Standing Armies without the Consent of our legislatures.
He has affected to render the Military independent of and superior to the Civil power.
He has combined with others to subject us to a jurisdiction foreign to our constitution, and unacknowledged by our laws; giving his Assent to their Acts of pretended Legislation:
For Quartering large bodies of armed troops among us:
For protecting them, by a mock Trial, from punishment for any Murders which they should commit on the Inhabitants of these States:
For cutting off our Trade with all parts of the world:
For imposing Taxes on us without our Consent:
For depriving us in many cases, of the benefits of Trial by Jury:
For transporting us beyond Seas to be tried for pretended offences
So, nothing major, but yes, we had no representation. Legislative or Judicial
Can I write the code for the backend of a website on my laptop and host it on a different server? Specifically, my database
I will connect it to python using MySQL python connector
And I'll use the following command
host=localhost
For the time being while creating the website but when hosting it on a server, how will I connect the database that already exists on my laptop to a different machine somewhere out there in the world?
True, but I'd rather have someone help me out in the vc as I would be able to ask all the questions I want (ideally)
Fair fair
So you want to host the backend on a server elsewhere but keep the database hosted locally?
So I'll be starting off locally, but I will transfer the already existing data (the one on my PC) to the server later on
I'll just release a prototype of the website and the data which will be added to the database will be stored locally
But when I release it officially, I will use a proper server
have you tried opencv ?
Great!, VideoCapture actually support a ton of features
xD
to type that message u asked if anyone tried opencv?
xD
no, actually i just can't speak so tryna take part in the talk xD
ohhhh
moviepy is bit faster
first half of this message made me think u were mute in real life
0_0
hahaha
never tried that
Gotcha
ping me with an image link (lower quality the better) and i'll show you it's output
u got bad internet?
no, you can only render so many characters in a termnial, so the lower number of pixel the better
quality wise for output
i am seeing mass layoffs from tech companies, is it really happening
has anyone seen this trend in their company?
maybe there could be exception condition
that throughs something like that
i know it's very specific xD
cs50
I believe it depends on the region, where I live, the labor is cheap, the currency is smaller, so the technology market is growing
why double // for division in python
returns a whole number
after division
what exactly you love to do?
@rugged tundra
you mean integer
let me share rn, sorry i went for an office call
yumps
sure
yea it rounds down and returns a whole number
BTW i am also new on discord
so basically its the equivelent of integer division in other languages
just truncating
the decimal
does anyone know if there is a way to pass more than one value from a function?
you can do it directly in python
return a tuple
what is tuple?
just a var type like a list
!e
def f(x, y):
return (x**y, y**x)
print(f(6, 4))
@terse needle :white_check_mark: Your eval job has completed with return code 0.
(1296, 4096)
oh nice
thanks
Yep, we laid a ton off.
I can separate them like this too
def f(x, y):
return (x**y, y**x)
result = f(6, 4)
print(result[0], "and", result[1])
!e
def f(x, y):
return (x**y, y**x)
result = f(6, 4)
print(result[0], "and", result[1])
@terse needle :white_check_mark: Your eval job has completed with return code 0.
1296 and 4096
ok,I'll try this
A list may also be better for your return value if you want to return a dynamic amount of results so that there is no fixed size
That's weird. Your account says it's 5 years old.
it is, but i never used it. That's the time when i used to play games and one of my friends told me to download discord. I did download it but never used it xD.
xD
@icy cradle If you're wondering why you can't talk, check out the #voice-verification channel. That'll tell you what you need to know about the voice gate system
@fair stream If you're wondering why you can't talk, check out the voice-verification channel. That'll tell you what you need to know about the voice gate system
Right
Copying a channel link doesn't copy the link
Lame
viva l'edilizia
!e
import arrow
imagine = arrow.get(2022, 3, 27, 2, 30, tzinfo="Europe/Berlin")
assert imagine.imaginary == True
print(imagine.to("UTC").to("Europe/Berlin"))
print(imagine.shift(seconds=0))
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
001 | 2022-03-27T01:30:00+01:00
002 | 2022-03-27T03:30:00+02:00
!pypi arrow
!e import pendulum
@rugged root :warning: Your eval job has completed with return code 0.
[No output]
@rugged root
@graceful grail come amuse me
@amber raptor discord has been acting funny lately.
😳
@bitter osprey 👋
Lol
Nice voice!
Very soothing
Thanks!
I'm new to the discord so I don't qualify yet.
@fringe anchorbruh u have been in afk for a long time now btw 🙂
no, i dont normally depend on stack overflow at all, i normally refer them and understand how to deal with my problem in a better way than what stack overflow showed me
its better than just copy paste as if i wnat to change soemthing, it would be messed up if i dont know what the copied code does
mhm
I copy paste, but I reverse engineer
plus, 90% of the time it's some simple simple shit my brain just forgot how to do
loooooooooooooooooooooooool
true
most times its somthing we just forogt
or soemthing we misunderstood
mhm
nws
@sick dew i can't speak 😦
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
I have not been on this server for at least 3 days
viva l'edilizia acrobatica
ok bye
lolololololololololololololololololol
someone now how to stamp unix time in python?
!e
import time
print(int(time.time()))
@willow light :white_check_mark: Your eval job has completed with return code 0.
1653566325
alternatively
!e
from datetime import datetime as dt
now = dt.now()
print(now.timestamp())
@willow light :white_check_mark: Your eval job has completed with return code 0.
1653566482.501306
I prefer the second way because that way it doesn't have to be right now
ok
What are we talking about?
goodness
I'm in a meeting right now, but I'm going to join after
i -= -1
goodness our CS education is bad
i = i + 1 bruh xD
i++;
i.add(1)
so, @rugged root , is it coax?
Man 🙋🏻♂️ Bee 🐝 Dog 🐶 = Disaster 🔥
Rowan Atkinson stars in Man Vs Bee, a comedy series that will get the whole family buzzing. Lands June 24.
SUBSCRIBE: http://bit.ly/29qBUt7
About Netflix:
Netflix is the world's leading streaming entertainment service with 222 million paid memberships in over 190 countries enjoying TV series, documentaries, f...
that's a cobra
bruh its a cobra
ik xD
📲 Subscribe to @olympics: http://oly.ch/Subscribe
Rowan Atkinson performs under the guise of his famous character Mr. Bean at the Opening Ceremony of the London 2012 Olympic Games.
Every two years, the world's finest athletes gather at the Olympic Games - a spectacular celebration of sporting excellence that captures the attention of billi...
same ngl
bruh xD
lol
bruhhhhhhhhhhhhhhhhhhhh, you are a manace to the company
xD
bruhhhhhhhhh
lol
at times i try commenting too
but i know i need that code
For hiding commands?
feels better with no error than filled with 5 errors
xD
like temporary satisfaction
xD
coffeee javaaa
xD
++
++
what is the actual difference b/w rebase/merge?
Infinite label printer.
"Sir Kor, why are we labelling these monster corpses?"
"Organisation."
HA
hah all this git talk is going over my head. i'm just a humble scientific programmer and all i know are add, remove, commit, push, and clone 😆
👀 or you could just add a well configured formatter as a pre-commit hook so your spacing and crap stays nice without having to do such things
So rebase will take two branches which potentially have commits that are interwoven with each other
So you may have something like:
AABBABAAB
Mumma mia.
And then if Branch B rebases onto A for the last two commits:
AABBAAABB
That can cause confusion or issues based on when some commits lay onto others
- Big commit
- Small commit
- Big commit
- Small commit
- Small commit
- Big commit
Hemlock, I think it'd be tasteful to refer to Branch A and B as Alice and Bob.
- Big commit
- Small commit
- Big commit
- Small commit
- Small commit
- Big commit
->
- Big commit
- Big commit
- Big commit
OR
- Big Commit
- Big Commit
- Big Commit
- Small commit
That is more my style isn't it
Rebasing is scary
all these things are way out of my head, as i just let pycharm do all these stuffs. Also, i am just a research engineer.
Kawaii
You're not alone Spree
Great to know xD
lets spin it at 300 rpm
I didn't know Git has so many things to offer except PR and Merge stuff xD
I might as well have a daemon that syncs my programming folder with Google Drive 🤣
1
I already have one for school
can you turn the microphone on please
Check out the #voice-verification channel
That'll tell you what you need to know about our voice gate
!voiceverify
You have to do that in #voice-verification
ok
Just squash and merge. Squash and merge.
I still can't
I still can't
Did it DM you any reasons
Embrace the CLI!
Is it fine if one decides not to ever rebase until she retires? Or is that bad practice.
to see which files were changed, coz i use pycharm its great for that i belive.
@rugged root we're opposite on that xD i only use a gui to fix merge conflicts
Gotcha
cuz its more convenient
GUI SHAME!
VS code isn't great to handle large projects
And you call yourself a real Linux user ⁉️
that's just my theory xD
@woeful salmon Somewhat quiet.
Isnt that what they said
i'm trying to learn to solve 7x7 rubik's cube
while listening in here
Help me please throw the code on voices
Same. Was talking to my brother about this. How GUIs mess with my brain. And he told me I’m simply “visually challenged”. Whatever that means.
Help me please throw the code on voices
!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.
What are you trying to do?
for me i just don't trust myself to not mess up something in a gui and then never notice it
feel safer manually typing commands
generally been safer using commandline till now too
Jenkins 😵💫
I have an inkwell.
how are u guys not going crazy with 19 poeple in teh voice chat?
I love it
Britain is an old-fashioned, weird place, and its esoteric laws are among the most ridiculous things about the place. From it being illegal to handle a salmon suspiciously, to the threat of having your head chopped off for wearing a suit of armour in Parliament, VICE's Oobah Butler sees if anyone takes any of these laws seriously by trying to br...
"Ah, I see you have a goat in your bathtub. I'm afraid that means I have to issue extra tax on all the tea in your house."
"I'm ruined!"
i saw that video xD
The more the merrier, as they say
thats my secret, I'm already crazy
hell no
@rugged root that does happen, it's usually just called divorce
HA
👀 i have done so many things in life i wouldn't have done if i thought why am i doing this for example learning to solve rubik's cubes from 2x2 to 6x6 and now trying out 7x7
where is this going ? xD
7x7 is pretty fun though
my favorite is 5x5
You must be new around here 😞
well if we think of favorite as the one i go back to the most for me it'd be 3x3 cuz its not as boringly easy as 2x2 but i can solve it within 40 seconds and be done
i prefer like 5 to 6 in vc but not an entire mob
xD
i solve my 5x5 way more than my 3x3
f***** up beyond all reason
deadbeef is used by HackTheBox
fubar
it's the internet, you can curse
@rugged root - Why are you hating on pork() -> Bacon?
It's a very delicious function
Smoking pile of ash.
I will never know 😞
My condolences
0x80081E5
0xBAAAAAAD
@woeful salmon what's your time on a 5x5 like
!eval print(int('80081E5', 16))
@sweet lodge :white_check_mark: Your eval job has completed with return code 0.
134250981
git push --force
I don't get it
That's a perfectly normal number
think my best is 1 min 50?
see i had no friends in highschool and my family made me quit soccer
The one?
so i had nothing but cubes
i thought I was decent rip
and i actually bought expensive speedcubes :x
i can do like 30s on 3x3
same
best prolly 2.5, average ~3 or so
@rugged root watch https://myanimelist.net/anime/50265/Spy_x_Family at some point :3
mom really is a contract killer
in it
ninja hattori vibes
i had the dayan zanchi stickerless
Chopsticks are poorly named. You don't really chop anything with them.
i have one literally in my hand rn lol
lol yea i started looking up newer speedcubes dayan zanchi isnt used anymore
gonna go play bit of minecraft now 🙂 cya
I rly enjoyed when we had 6-7 tallboys spawning in like 2-3 min in nightmare mode
Whack?
Wack is probably U.S. Whack is probably U.K.
"‘Gorra light 'ave yer, wack?’"
Goh-uh
british is schtupid
I thought wack is like being crazy
It does
Hmm
bruh
would you like some wotah
Wa’uh
And the americans be like woahdur
Woh?
Ya u do
wader
Ok maybe i exaggerate a wee bit
!e 'Arry Po'er
@lavish rover :x: Your eval job has completed with return code 1.
001 | File "<string>", line 1
002 | 'Arry Po'er
003 | ^^
004 | SyntaxError: invalid syntax
Why even?
Why nodd?
it seemed odd so I added 1
How to speak Australian: replace all "o"'s with "aur"'s
"no" -> "naur"
i like reading bauraurks
Chewsday
Today some British High Schoolers joins us for a JOLLY look at some of the internet's most popular "British Memes"
Check out our latest JOLLY merch at http://jollymerch.store
If you want to send us anything to open, our PO Box is open again! The address is:
Box 51,
1 Rockley Road,
London,
W14 0DJ
UNITED KINGDOM
Hit join and become a Jollyb...
punfusing
Parameters that would affect how things work.
!e ```py
def australian(text):
trans = str.maketrans({"o": "aur"})
return f"G'day! {text.translate(trans)} By crikey!"
result = australian("Wanna go for a piss up on the beach, crack open a few tinnies, a bag 'o goon and chuck a few shrimp on the barbie?")
print(result)```
@somber heath :white_check_mark: Your eval job has completed with return code 0.
G'day! Wanna gaur faurr a piss up aurn the beach, crack aurpen a few tinnies, a bag 'aur gauraurn and chuck a few shrimp aurn the barbie? By crikey!
Maybe?
It's not that abnormal
Pydantic comes with this built-in
Data validation and settings management using python 3.6 type hinting
All the best ones are
Right ⁉️
Clarification - There's only one API
These are wrappers/frameworks/SDKs that give you interfaces that're native to your language of choice
NO
!src int
Internal commands. Top secret!
@lavish roverbtw have you ever tried solving a cube blindfolded? 😮
i've done it only for a 2x2
you have to know the oll and pll just on inspection
its pretty hard
inspection takes like 5 minutes lol
Partner ship.
"I married an ocean liner and I'm having his baby!"
"Do you get on well?"
"It's smooth sailing, mostly."
categories:
Text Channels:
id: '979407901980504064'
Voice Channels:
General: '979407901980504067'
general: '979407901980504066'
id: '979407901980504065'
roles:
- '@everyone': '979407901464625223'
MrHemlock/auto_guild#13
!source gh
Unable to convert 'gh' to valid command, tag, or Cog.
!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.
!paste
Pasting large amounts of code
If your code is too long to fit in a codeblock in discord, you can paste your code here:
https://paste.pythondiscord.com/
After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.
I used to be able to do it
haven't practised in years though
only a 3x3 though
ye its still a pain xD
fair
btw 2x2 was my goto for surprising people with how not smart they were
because it looks so easy xD
but if you don't know the basics its really hard
turtle: adds drawing on top of tkinter
pygame: wrapper for sdl2 which is a very simple graphics library with more stuff like pixel perfect collision via maps built in
try a mechanical keyboard
But then Hemlock would get on to me about my typing
an analogy to think of html, css and js is to think of a house where
html is the actual structure of the house
css is the paint, tiles and other things you add for decoration
javascript is the electric outlets and stuff which allows you to plugin in your devices , lights , etc and can actually have functionality
i don't mind python on backend but web assembly via python needs to stop
Home Page: https://pyscript.net Examples: https://pyscript.net/examples - GitHub - pyscript/pyscript: Home Page: https://pyscript.net Examples: https://pyscript.net/examples
^
this
needs to stop
???
@willow light https://automatetheboringstuff.com/
nothing i just think adding javascript to be able to add python to your website's front end is useless bloat and not a good idea 99.99% of the time
@rugged root - This is Chris' project - https://github.com/gamingbuddhist/import-python
it's not supposed to be a frontend framework, it's meant for data scientists
did someone say useless bloat? that sounds like exactly the sort of thing my employer would love
ik and that's different
that i'm actually going to use
@lavish rover and me are going to use that to write a javascript raytracer
see there's a difference between supposed to and what people actualy use it for
i've seen multiple people in help channels who actually use this on their front end
o-o
BRB using pyscript to make a climate dashboard for the local airports
wait, you can interact with the DOM in pyscript, right?
@rugged root - is Lemon missing fingers?
Or did that just randomly come to your mind?
kind of... not in the way you'd imagine
i recommend noodles
then I'm 100% here for it
@rugged root
this is it @willow light
I mean, if it works it works
Let's compromise: Aluminumium
Illuminatium
yeah, one sec. I am writing some sample code to show my problem
it seems like not being a python problem
Hi
I will try
I'm using pyodbc to query through the db.
The user can input a dockey which i use in my query. When the first user input is some wrong input which doesn't fit my validation the user is prompted to input a new dockey. When this dockey is valid, it's used in my query. in the end i return that input which i saved in a variable and used in my query, but the type = None.
The None type return only occurs when the user had some invalid inputs before. If the users input is valid right away there are no problems
where would i be able to go to get some help with my code?
I have searched online for anything and i keep coming up short
whats your problem?
im trying to make a thing that hits a key on the keyboard based on what is happening on screen
i got it to work but its not interacting with my game
@rugged root unfortunately i cant show you the code. It's work intern stuff i'm working at
i have tryed 2 diffrent kinds of directx interaction and 3 diffrent raw keyboard actions but nothing is working
and i have another question with the pyautogui function
Maybe you should show your code. I also can't help you with that never used stuff like that. I'm sry
ye
oh
and also the "occupied help channels"
while waiting for my burrito: been looking through the AuthLib docs, and wouldn't it make more sense for the else to do pass instead of return?
async def update_token(token, refresh_token=None, access_token=None):
if refresh_token:
item = await OAuth2Token.find(name=name, refresh_token=refresh_token)
elif access_token:
item = await OAuth2Token.find(name=name, access_token=access_token)
else:
return
# update old token
item.access_token = token['access_token']
item.refresh_token = token.get('refresh_token')
item.expires_at = token['expires_at']
await item.save()
ok. im going to move to the code-help-voice area. how do you get the Code box for posting it? that ^
or should else really raise Exception?
An OAuth 1.0 and OAuth 2.0 Client implementation for a next generation HTTP client for Python, including support for OpenID Connect and service account, powered by Authlib.
use these `
6 of them like this
three to open three to close
ok. thank you ill try it
If python users are called pythonistas, and rust users rustaceans, what are php users called?
hello @whole bear !!!
@mild quartz help pls??...
@quasi condor said you could help me
"ask anokhi, he's a research scientist he'll help you" - @quasi condor
somewhat of an overstatement of my suggestion
its prob a float
Welcome to programming
wen turn my pc on they open 2 terminal vary fast
i just wrote 80 lines of code without running it once and it ran once with an error because i made a typo, after fixing it there are no errors
am i wizard?
^[-_\p{L}\p{N}\p{sc=Deva}\p{sc=Thai}]{1,32}$
isn't it pronounced "REG-x", the g is not hard
god ?
Back on in a sec, delivery run time
i much prefer
https://nitter.net/nedbat
:"members"
:297045071457681409
:"username"
"vcokltfre"
:"discriminator"
6868
:"mfa"
ya
:"verified"
na
:"email"
idk
:"roles"
>
:"id"
1234
:"name"
"Admin"
>
:"id"
5678
:"name"
"Moderator"
members:
297045071457681409:
username: vcokltfre
discriminator: 6868
mfa: true
verified: false
email: null
roles:
- id: 1234
name: Admin
- id: 5678
name: Moderator
What is this evil?
the evil twin brother of yaml
YAML already sucks
How YAML handles arrays is bad
YAML is like the c++ of markup, c++ is just supposed to be C with Classes
@faint ermine is it not possible to write a script to modify the configs conveniently?
This is type of thing that should come from git and pipeline deployed
The gun laws have to he strengthen in the US.
Educational Attainment of Mothers Aged 25 and Over: United States, 2017
The “Andor” series will explore a new perspective from the Star Wars galaxy, focusing on Cassian Andor’s journey to discover the difference he can make. The series brings forward the tale of the burgeoning rebellion against the Empire and how people and planets became involved. It’s an era filled with danger, deception and intrigue where Cassian...
Woah, wait
@faint ermine Okay, this actually surprised me. It uses the nim language
That's wild to me
@glad breach If you're wondering why you can't talk, check out the #voice-verification channel for more details
@rugged root sure, thx man
I heard nim, where am I looking
Thank you
I've been so interested in nim but I just haven't seen the ecosystem around it grow enough
But looking at it now, I might poke around it again
@terse needle I'm disappointed
You want to know what the Sublime plugin for Nim is called?
SubNim would have been fine
Or Sublinim
OHHH
SubliNimal
As opposed to subliminal
o
compare the two
Johnny Mnemonic Scene Stars: Keanu Reeves, Dina Meyer, Ice-T, Howard Szafer, Paul Brogren Director: Robert Longo Writer: William Gibson Producer: Don Carmody Music: Brad Fiedel Production: TriStar Pictures Distribution: TriStar Pictures Released: 1995
► watch Johnny Mnemonic https://play.google.com/store/movies/details/Johnny_Mnemonic?id...
The Unbearable Weight of Massive Talent
My approach to work: https://imgur.com/dNQplpP
hello i wann ask questions
Is there a way to edit/create JSONField on django with user friendly DJANGO ADMIN
someone help?
seems like you're editing it from what i can see
https://www.zdnet.com/article/target-hackers-hit-air-conditioning-firm-first-as-a-way-in/
https://www.computerworld.com/article/2487452/target-attack-shows-danger-of-remotely-accessible-hvac-systems.html
A compromised refrigeration and air-conditioning company may be the starting point to one of the worst security breaches in the US.
same thing you mentioned just now
sup
@safe pumice
yeah
i did not hear you properly
ok cool
on sec trying
read it
o yeah
o man thats a bummer
cos i am truying to learn ai
but still a noob
but i have other programming languages under my belt
good day
doing good
to much to explore
going to ask a qustion in a sec
if you dont mind
fuck my internet
just getting my voice to text soft where set up
yeah lil speak it will alow me to speak and it will send what i say
its fine it wont start
na man i am new to python
i am a java and javascript developer
i am learning python and with ai and mashine learning and c# for game mods with melonloader
Practical data skills you can apply immediately: that's what you'll learn in these no-cost courses. They're the fastest (and most fun) way to become a data scientist or improve your current skills.
sorry if my speeling is bad cos have dyslexia
i payed for 5 of them
udemy
on sec
let me show you
yeah they where 10.99
for every one of them
you cant do that can you
do you guys know how the zip function works
i look at w3 and i still did not understand it
one sec let me give some contex
yeah
i am magering in ai
i still dont understand it
the zip
should i install kali ?
it have metasploit nmap and all pre installed
i am not sure what will be the level of questions
its a good company which is giving preplacement offer
qualified 2 round its the final round
yes i know all i have networks and security specialisation its just that im new with ctf
i have mint and seedlabs installed
yes
yes
wireshark ,cisco
sql ,csrf,xss
yes
ctf{flag}
in the last round a question was from crypto
they gave a base 64 encrypted text asked to decrypt
yes sure
its starting from 7
in 2 hours
what ide would guys recoment for good syntex highliting
i saw a sample which gave a radio encrypted sound which contained a text inside it
yes i did all the labs
in computer network security
pycharm spider and vscode
spyder is the one used in the coures
like when save it does not save the state
with vs code
when i use java
yeah
and why is anaconda soooooooo slow
Encrypted sound? That's amazing
So it's different with secret code
you can encrypt your text in the form of radio waves.it will get decrypted by decoder when you play that sound
i need to leave guys so i can do some python thank so much for your help
That's interesting
Is it complicated to do it?
na so easy but in ctf they wont mention the method.
you have to do it yourself
it took me 6 hours to figure out last time when i tried this
Ctf?
capture the flag..its an event where you have to finds hidden texts
see guys thank you
hello there, please can anyone help me out with small thing about Python, actually i missed my recent classes of python and want to revise my study, is there notes or website where i can quickly revise my study ?
I see I see.. that's really interesting
!e
binary_1 = '01010111010001010100110001000011010011110100110101000101010100001001001010011000100011101010010010010010100110101010100010100100101010101010011010101000100110001001001010000100100010101010010010100000101001001001001010011010101010101010011'
answer = []
for i in range(0, len(binary_1), 8):
if chr(int(binary_1[i:i+8], 2)).isupper():
answer.append(chr(int(binary_1[i:i+8], 2)))
else:
answer.append(chr(int(binary_1[i:i+7], 2)))
print(''.join(answer))
@wind raptor :white_check_mark: Your eval job has completed with return code 0.
WELCOMEPILGRIMTRUSTLIBERPRIMUS
hello
how can i join
try googling xD
you cannot talk now, u dont have the role
thanks
go to voice-verification channel to get verified to speak
how can i get one
need few questions to ask
me?
import cv2
import mediapipe as mp
webcam = cv2.VideoCapture("webcam[0]")
face_reco = mp.solutions.face_detection
face_recognizer = face_reco.FaceDetection()
draws = mp.solutions.drawing_utils
while True:
see, frame = webcam.read()
if not see:
break
face_list = face_recognizer.process(frame)
if face_list.detections:
for face in face_list.detections:
draws.draw_detection(frame,face)
cv2.imshow("FaceReco", frame)
if cv2.waitKey(15) == 27:
break
webcam.release()
Want to hear something stupid I made? I kind of screw it up at the end
hit it
really?
its working
i already downloaded it
xD
u made that ?
omg
would be amazing iwth some backgorund music
by hemlock
Oh sick thanks
xD
😊
Oh you know what. It doesn't embed on mobile that's why I was confused
And yeah that was me just fucking around getting ready for work
!user 327160348983558154
You may not use this command on users other than yourself.
lol oki
office work
@quaint oyster have you ever played codingame lol?
Hey how goes it
good
Those are good things try these with a small project.
@rugged root yo can u unmute me i got sum to say
I try not to bend the rules when it comes to our voice gate. You can learn more about it by checking out the #voice-verification channel
what is something they gotta say so bad
with what?
plotly
just ask it , someone who knows will help you
i created a grid for subplots and want to update the axis
when i use fig.update_layout it only changes the first subplot not the following
Can you share you code?
from plotly.subplots import make_subplots
fig = go.Figure()
fig = make_subplots(rows=7, cols=1,
specs=[[{'type': 'surface'}],
[{'type': 'surface'}],
[{'type': 'surface'}],
[{'type': 'surface'}],
[{'type': 'surface'}],
[{'type': 'surface'}],
[{'type': 'surface'}],
])
count=0
for group_name in data:
define= "7b direct"
if define in group_name:
count+=1
trace = group_name
df = data[group_name]
df.drop_duplicates(subset ="name",
keep = False, inplace = True)
z = df.drop(["name"], axis=1)
fig.add_trace(go.Surface(z=z,
y=df["name"],
x=df.columns[1:],
name=trace,
),
row=0+count,
col=1,
)```
width=1600,
height=800,
scene = {
"xaxis": {"nticks": 6},
"yaxis": {"nticks": 42},
"zaxis": {"nticks": 10},
'camera_eye': {"x": 2.7, "y": 0, "z": 1},
"aspectratio": {"x": 1, "y": 4, "z": 1.5}
},
title=dict(
text="<b>: </b>"+"#1-7 "+define,
x=0.5,
y=0.95,
font=dict(
family="Arial",
size=26,
color='#000000'
)),
)
fig.update_layout(
scene=dict(
xaxis=dict(showticklabels=True),
yaxis=dict(showticklabels=False),
zaxis=dict(showticklabels=True),
xaxis_title='Temperatur',
yaxis_title='Emittent',
zaxis_title='Area [counts]',
)
)```
Nothing's jumping out at me.... You might ask in #data-science-and-ml. But I suggest putting it in a hastebin so that it doesn't take up the whole chat. https://paste.pydis.com
i asked there aswell and i tried to use it inside the loop aswell but nothing .__.
but thanks
im kinda clueless i found approaches with fig["layout"]["xaxis1"].update() but neither worked
depression hitting Q_Q
reminds me of old days xD
im deadset on a tech company that has hella resources
I would recommend to be in contact with some people of these companies.
faang isnt a req
Most of the time they just have way too many applications.
nepotism 😦
I don't think I'd be able to cope at a huge company
manga*
i guess sometimes you have to play the game
And the one who get selected mostly are the ones that try to create some contact and be in connection
Well, it's not like this. It's like they don't know which person to select from the loads of resumes they have.
And let say few of those applicant sent emails and connect via LinkedIn
@dry ledge What was it you wanted to say
Don't leave me hangin'
🤣 hemlock the version of dotnet that comes with vs 2022 doesn't create a class for a new console application
speaking of banks, it is concerning how many peoples' perceive banks as just money vaults
very
Banks are wonky
its very hard to publish something big in AI nowadays
by big i mean attention
the research that gets everyones' attention are the big-ass models trained by the likes of openai, google, fb, nvidia
You just need to make something click baity
xD, I have a good answer for this. We will talk about it someday when i get voice verification access.
Call the freezing a security feature.
I recently viewed your profile on LinkedIn and noticed you have a background in customer service.
My Linkedin background is
- Factory worker
- Developer
That's it
How do you get customer service out of that?
Wish I could give you voice verification right now, you've got me intrigued 😆
xD
👀
not draggable 😦
have you checked your env variables.
check tha path maybe
!warn 341301348299571200 Just so that it's on the record, "jokes" like "Hey man, no offense, but you sound like you could play some kind of bad guy pedophile" is in no way acceptable. Review our #code-of-conduct and be more respectful to the users on the server. If this happens again, you will, at minimum, have your voice permissions revoked.
:incoming_envelope: :ok_hand: applied warning to @mint canyon.
can you check env variables
Try (Get-Command code).Path
i have to go 😭
@peak copper but 100x easier
@whole bear you got a cold too?
sounded like it
@peak copper salt is a common white substance that is found in sea water and the earth. Salt is used in cooking for flavouring food
wait what xD
salt is a neurotransmitter usually released during heavy feelings of jealousy
why would you explain that xD
he was asking what salt is >w>
Ohh I see
salt is what you get alongside water in an acid base neutralisation reaction
class Restaurant():
def __init__(self,restaurant_name,cuisine_type):
self.restaurant_namee=restaurant_name
self.cuisine_typee=cuisine_type
def describe_restaurant(self):
print( f"restaurant name is {self.restaurant_namee} and it serves {self.cuisine_typee}")
def open_restaurant(self):
print(f"{self.restaurant_namee} is open now")
class IceCreamStand(Restaurant):
def __init__(self,restaurant_name,cuisine_type):
super.__init__(restaurant_name,cuisine_type)
self.flavours=['chocolate','vanilla','cookie cream','mint','caramel ice cream']
def flavour_collection(self):
print(f'we have "{self.flavours}" flavours')
if __name__=="__main__":
ice=IceCreamStand('Baskin robins','ice cream')
please help
i mean that's 1 way to do it
lol
@peak coppervery easy and you can join midway
so join in
no i need to inherit attribute of parent class
please help
how can join voice chat
click on it
!voice look at this embed to get verified tho
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
it says suppressed
or you could look at #❓|how-to-get-help and open a help channel where -people will generally pay more attention
tera nam bulla kyun h
kyu ki main rakh ta hu khulaa
💀
im going to pull a british colonizer on yall and say you should only be speaking english
