#voice-chat-text-1
1 messages · Page 104 of 1
what website is this?
codewars
oh I thought I recognized it lol 😂
@foggy snow are you gonna do another one? :)
yepp
im going to try and do it and then i send how it goes :)
this is the question
@foggy snow can you send me a link so I can do it with you
ty
codewars!?
https://www.codewars.com/kata/5e5acfe31b1c240012717a78 always pluggin
^kata I made to include as many types as reasonable C:
huh?
I'm trying to do this kata on my phone lol
I have like 3 months
codewars test results don't appear to show on mobile lol
yea, i have no idea how to start on this or anything so im going to go to another one ;)
@foggy snowhttps://www.youtube.com/watch?v=YYXdXT2l-Gg
In this Python Beginner Tutorial, we will start with the basics of how to install and setup Python for Mac and Windows. We will also take a look at the interactive prompt, as well as creating and running our first script. Let's get started.
Mac Install: 1:25
Windows Install: 5:44
Installs Complete: 8:37
Watch the full Python Beginner Series he...
@autumn raft can i have stream pls
\n
@autumn raft @autumn raft @autumn raft
👀
i needz help w/ my codewars
!stream 568276116062863405
shes coding for once
✅ @peak frigate can now stream until <t:1626891500:f>.
sorry, missed the first ping
Hey @random minnow 👋
There's this coding escape-room thing we should try some time 😄
yet
This is it: https://www.codingame.com/cooperate
how do i make it so that one of the condtions is also that the pin is only int
C++ 
Wow. Bold thing to say in the python server 😄
This is the site Pub an I often use: https://binarysearch.com
Learn algorithms together on binarysearch. Create a room, invite your friends, and race to finish the problem.
It has a nicer interface than Code Wars I think, the problems are a bit dryer.
I have an idea for a code wars problem that I need to submit 😄
It would be a path-finding problem, combined with mine-sweeper.
You would have to move a character through a grid using a move method, and a detect method that tells you how many mines are adjacent to your location.
I'll check it out
Oh yeah, for some reason they make you implement the solution as a method of a class.
Probably just made by a Java programmer...
Gtg guys 👋
!e @peak frigate
a = '10'
if a:
print("A is not an empty string")
if not a:
print("A is an empty string")
b = ''
if b:
print("B is not an empty string")
if not b:
print("B is an empty string")
@random minnow :white_check_mark: Your eval job has completed with return code 0.
001 | A is not an empty string
002 | B is an empty string

lambda _, __: return _ & __
def lovefunc(flower1, flower2):
if flower1 % 2 + flower2 % 2 == 1:
return True
else:
return False```
!e
print(1 == 1)
@autumn raft :white_check_mark: Your eval job has completed with return code 0.
True
def lovefunc(flower1, flower2):
return flower1 % 2 + flower2 % 2 == 1
def lovefunc(flower1, flower2):
return flower1 % 2 + flower2 % 2 == 1
def lovefunc(flower1, flower2):
return((flower1 % 2 ) + (flower2 % 2) == 1)
@peak frigate
!e
print("fisher" > "ella")
👋 KJ
@raw wren :white_check_mark: Your eval job has completed with return code 0.
True
lovefunc = lambda _, __: return _%2+__%2==1
!e
def lovefunc(flower1, flower2):
return((flower1 % 2 ) + (flower2 % 2) == 1)
print(lovefunc(2, 2))
@misty sinew :white_check_mark: Your eval job has completed with return code 0.
False
!e
def lovefunc(flower1, flower2):
return((flower1 % 2 ) + (flower2 % 2) == 1)
print(lovefunc(0, 2))
@misty sinew :white_check_mark: Your eval job has completed with return code 0.
False
So many wubs
Yeah I think I over complicated it
def song_decoder(song):
wub_stripped = song.replace("WUB", " ").split()
return ' '.join(wub_stripped)
def song_decoder(song):
return " ".join(song.replace('WUB', ' ').split())
Function should return true (1 in Prolog) if it is possible and false (0 in Prolog) if not.
It's one of the few 'logic programming' languages that became widely used.
the f is this lol
!e
print(help(exec))
@charred creek :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 1, in <module>
003 | NameError: name 'help' is not defined
!docs exec
exec(object[, globals[, locals]])```
This function supports dynamic execution of Python code. *object* must be either a string or a code object. If it is a string, the string is parsed as a suite of Python statements which is then executed (unless a syntax error occurs). [1](https://docs.python.org/3/library/functions.html#id2) If it is a code object, it is simply executed. In all cases, the code that’s executed is expected to be valid as file input (see the section “File input” in the Reference Manual). Be aware that the [`nonlocal`](https://docs.python.org/3/reference/simple_stmts.html#nonlocal), [`yield`](https://docs.python.org/3/reference/simple_stmts.html#yield), and [`return`](https://docs.python.org/3/reference/simple_stmts.html#return) statements may not be used outside of function definitions even within the context of code passed to the [`exec()`](https://docs.python.org/3/library/functions.html#exec "exec") function. The return value is `None`.
!e
def is_even(n):
if n == 0:
return True
else:
return is_odd(n - 1)
def is_odd(n):
if n == 0:
return False
else:
return is_even(n - 1)
print(f"{is_odd(5) = }")
print(f"{is_odd(6) = }")
print(f"{is_even(5) = }")
print(f"{is_even(6) = }")
@charred creek :white_check_mark: Your eval job has completed with return code 0.
001 | is_odd(5) = True
002 | is_odd(6) = False
003 | is_even(5) = False
004 | is_even(6) = True
!e
class Apple:
def __repr__(self) -> str:
return "Now I'm Shown"
def __str__(self) -> str:
return "Apple"
def t() -> Apple:
return Apple()
print(f"{t()}")
print(f"{t()!r}")
@charred creek :white_check_mark: Your eval job has completed with return code 0.
001 | Apple
002 | Now I'm Shown
Just a video of Ella living her best life for the first few weeks after the move.


what sofware do you use
KiCad
ok
KiCad ( KEE-kad) is a free software suite for electronic design automation (EDA). It facilitates the design of schematics for electronic circuits and their conversion to PCB designs. KiCad was originally developed by Jean-Pierre Charras. It features an integrated environment for schematic capture and PCB layout design. Tools exist within the pac...
ok
the 3d thing is just a preview
I can export a pcb gerber file from this so I can have a company print and assemble this thing
costs about 10 bucks to have that done
very cool
can we all stop fucking arguing
never
til there is a 3rd param for range()
I love that they all start with st
!e
for num in range(0, 12)[::3]:
print(num)
@autumn raft :white_check_mark: Your eval job has completed with return code 0.
001 | 0
002 | 3
003 | 6
004 | 9
where abouts?
We can tell you in a month
i did a level 6 
:ok_hand: Added his-name-is-groff to the names list.
1000
1,000
100,0
test.assert_equals(group_by_commas(1), '1')
test.assert_equals(group_by_commas(10), '10')
test.assert_equals(group_by_commas(100), '100')
test.assert_equals(group_by_commas(1000), '1,000')
test.assert_equals(group_by_commas(10000), '10,000')
test.assert_equals(group_by_commas(100000), '100,000')
test.assert_equals(group_by_commas(1000000), '1,000,000')
test.assert_equals(group_by_commas(35235235), '35,235,235')```
def group_by_commas(n):
string = str(n)[::-1]
chunks = []
for i in range(0, len(string), 3):
chunks.append(string[i:i+3])
result = ','.join(chunks)[::-1]
return result
?
how would you do it
lmao
looks good
haha
i should have known this
i do this all the time
Gotta love string formatting
every day lmao
That's amazing
lmao
i used code from previous kata unnecessarily ..
!e ```py
print("${:,.2f}".format(100000000))
@peak frigate :white_check_mark: Your eval job has completed with return code 0.
$100,000,000.00
mai $
@peak frigate look
divided by 1000000000000
f-string magic
!e
x = 12
print(f"{x = }")
@charred creek :white_check_mark: Your eval job has completed with return code 0.
x = 12
@charred creek :white_check_mark: Your eval job has completed with return code 0.
x + 2 = 14
kewl
Better onboard audio, 64 gb internal storage
@peak frigate :white_check_mark: Your eval job has completed with return code 0.
type(2) = <class 'int'>
so that will be handy for my per line prints 
Oh that…
i have heard the smash community is trash
LOL
yayyyyyyyyyyy i had sushi yesterday
print?
lol
!e
print('sdlkfjsldfjsdfkjsdlfsdlfj'[1:10][::-1]) test
@raw wren :white_check_mark: Your eval job has completed with return code 0.
fdlsjfkld
I can't tell you how many times I have done that lol
if you edit the code it should add a reaction and you should be able to re run it
I think
!e ```py
x = 'sdlkfjsldfjsdfkjsdlfsdlfj'[1:10][::-1]
print(x)
print(x)
@peak frigate :white_check_mark: Your eval job has completed with return code 0.
fdlsjfkld
i c

nope

I need these
WHAT i thought i had joined that server
i never agreed to the rules so they probably kicked me
@random minnow i did 20 kata today
😪
20kata? does it go to 20?
@raw wren tf
no i mean i did twenty of them lmaooo
nice cat @raw wren
your dog is actually moving?
Ty
She’s stopping lol
And now she’s turning back around
These rules of use are not meant to be exhaustive, and we reserve the right to determine what conduct we consider to be a violation of the Terms, Community Guidelines or improper use of the Service and to take action including termination of your Account and exclusion from further participation in the Service.
@ripe lantern https://www.apple.com/newsroom/pdfs/FY21_Q2_Consolidated_Financial_Statements.pdf please go through this and justify your bankrupt argument
@vital burrow :white_check_mark: Your eval job has completed with return code 0.
Hello, i'm a big ghost
@elder wraith so does discord delete the message in their db?
That's a surprise
Space is expensive
!e py print('1', 'this is a long string'[0:10][::-1])
!e ```py
print('2', 'this is a long string'[0:10:-1])
@peak frigate :white_check_mark: Your eval job has completed with return code 0.
001 | 1 a si siht
002 | 2
!e py print('1', 'this is a long string'[0:10][::-1])
!e ```py
print('2', 'this is a long string'[10:0:-1])
@peak frigate :white_check_mark: Your eval job has completed with return code 0.
001 | 1 a si siht
002 | 2 l a si sih
!e
print('2', 'this is a long string'[0:50:1])
print('2', 'this is a long string'[50])
@violet venture :x: Your eval job has completed with return code 1.
001 | 2 this is a long string
002 | Traceback (most recent call last):
003 | File "<string>", line 2, in <module>
004 | IndexError: string index out of range
!e py print('this is a long string'[0:10][::-1])
print('this is a long string'[10:0:-1])
print('djdjjd')
get them with knobs
@peak frigate :white_check_mark: Your eval job has completed with return code 0.
001 | a si siht
002 | l a si sih
003 | djdjjd
So why doesn't the slice raise an IndexError once it gets past the end of the string?
@raven orbit fake pilots landing in DCS https://youtu.be/iXOTpwPekuk
The virtual VFA-113 Stingers landing aboard the DCS : Supercarrier.
Eight sailors were injured aboard the USS Eisenhower when an arresting cable snapped during an E-2C Hawkeye's landing in March 2016. Read all about the incident: http://bit.ly/29xaUdZ
Not realistic, not enough screaming over the radios xD /s
Fake pilots are doing CASE I which is VFR
Nothing to scream about, it’s mostly zip lip
Cable snaps when a jet is landing on a carrier.
@raven orbit @autumn raft if fake fighter jets interest you, DCS offers 2 week free rental of any jet.
I've seen that one
I might investigate
I always find it interesting that someone sees the cable coming and jumps over it
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Oh, you can't
there is no such thing as video verifying
they have a well-developed sense of self-preservation
@misty sinew can you quit pinging jake
I'm not coaxing
I'm demanding
Kotlin has its uses
12-year-olds shouldn't be in this server in the first place
lol
are you saying you're 12?
I blocked the kid
Leave the server and come back tommorow lol

<@&831776746206265384>
@hidden cliff blocking ppl doesn't block their voice in vc right?
!mute @misty sinew
:incoming_envelope: :ok_hand: applied mute to @misty sinew until <t:1626913629:f> (59 minutes and 59 seconds).
We warned you many times to stop
tizzy boss 
Yes it does
@lost grotto Might I also add they are not 13
at least he'll be 13 when he gets back
Joe dances pretty well xd
oh what? without muting them?
Yes
good to know
Cannot infract that user. User infracted is a bot.
@foggy snow how'd you do on the tutorials?
wait wut
!ban @misty sinew 2d you can come back when you're 13, but I recommend not spamming again if you decide to return
:incoming_envelope: :ok_hand: applied ban to @obtuse crypt until <t:1627082945:f> (1 day and 23 hours).
Thanks 👍
RIP
fine, but i dont think i learn that much by just following a tutorial. i can write and follow the tutorial but i dont understand what im writing...
sure, that comes with application & repetition
👍
@foggy snow you are starting with the basic ones right?
Steam deck updated specs: https://mobile.twitter.com/Locuza_/status/1417205868924375041
i mean, i have made rock paper scissor, an other game and 3 in a row
!ban 113304266269003776 how many times do we need to keep teaching you this lesson
what's 3 in a row. tic tac toe?
yea i know what it is :P
@raven orbit tell me how u can make iOS apps on a different laptop
yes it is tic tac toe
o/
Using NFTs, Ploog will offer Collateralization Debt Art Bonds to public which are ART rated
https://www.talhoffman.com/2021/07/18/firecracker-internals/
https://www.bschaatsbergen.com/behind-the-scenes-lambda
You are most likely familiar with AWS Lambda and Fargate — Amazon’s serverless computing engines. At its nature, serverless computing introduces quite a challenging task requiring both tight security and great performance. For exactly that matter Amazon came up with its microVM solution called Firecracker.
Kubernetes (an open source project out of Google that’s named after the Greek god of spending money on cloud services)
from Digital Ocean Kubernetes:
We needed something like this load the SANs
getting MSSQL to properly talk to AlwaysOn Read Only Clusters is annoying
Citus transforms Postgres into a distributed database you can run at any scale. By distributing your data and parallelizing your queries across multiple nodes, your application can scale & your queries are fast. Citus is available as open source and in the cloud, built into Azure Database for PostgreSQL.
Also, why would you put two apps in one container
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.8-slim```
@raw wren you better not be creating an even worse pycharm theme
What made you think that I am doing that lol
I'm making sure that there is no sin
Jesus Christ typing is hard
well I just sin
rip
calling it a night, cya
night
still on this I guess
time to go mess with my discord bot
we are talking about commodore and atari now
Hey @proud mason glad to see you in vc!
hey
HP Compaq 8000 Elite
constructor(entities: Map<Entity, Profiler.TimingData>, blocks: Map<ResourceKey<Level>, Map<BlockPos, Profiler.TimingData>>, custom: Boolean = true) : this(entities.map { (entity, data) -> Entry(entity, entity.type.descriptionId, data) }.sortedByDescending { it.rate }.groupBy { it.entity.level.dimension().location() }.mapValues { it.value.map { Entry(it.entity.id, it.type, it.rate, it.traces) }}, blocks.map { it.key.location() to it.value.map { Entry(it.key, it.value.name, it.value) } }.toMap()) @warm tendon
MONOKAI PRO
wait the hoodies are real
i reiterate
i like gifts
CUTE CUTE
ᓚᘏᗢ
A tutorial on how to use discord.py to create your own Discord bot in Python, written to fix the flaws of many other popular tutorials.
@viral pilot
I think you know why this needs to be deleted LOL
huh?
the embed xD
Rick and morty link haha
smh
WOT lol
i confused bc
the korean title is 'white blood'
like english, phoneticized as korean
hayan webtoon
When vampires destroy her chance to have the normal life she’s always wanted, Hayan is forced to draw on her darkest secret to rid the world of the merciless hunters that took it over 10 years ago. With the support of a rising star in the local police force, Hayan steps up to protect her loved ones, face her past, and get her revenge.
The average reader will spend 13 hours and 33 minutes reading this book at 250 WPM (words per minute). The two years before he wrote Crime and Punishment (1866) had been bad ones for Dostoyevsky.
- the martian
- enders game
- the three-body problem
- project hail mary
- educated
- the sandman
lol, educated
anything by margaret atwood
yeah
fun
me too
ah, read kurt voggenut or however you spell it
😔
oh well
shush
huh i don’t think i’ve read a single book in the past year that wasn’t recommended to me by pub
🤔🤔🤔
how many books have you read in the past year pub 😔
uhhuh
borrowed 
oop i still have to read the rest of the enders game books
👋
yeesh the first chapter is violent
it gets worse.... remember its written for 14 year olds
oh is it lol
Hey pub, it has been awhile 👋
👀
@autumn raft 👀

warzone..
2100?
no WT, but good to have you back 
😔
😏
😳
where's**
@raw wren I like vue
Can I report this as mod abuse
Also why did pub get to listen
probably
I'm 20 and graduating
No, uni
Got a few months left
@_jake#0169 u know Ohio exists, right
That and Cleveland

👀
stream paint the town
you want me to what
stream paint the town
i don't have stream privileges :B
you do tho
no i don't 🙃
but also that's not what i meant
i haven't heard the song yet. lol. i'm not a loona fan; you know dis.
don't helpers get stream privs
i don't think so 
jake says yes
oooo TIL 🤓
Erm, ceremony finished 😄
I'm currently hanging up washing.
Like, they don't trust foreigners to follow the rules kind of thing?
Yea
@raw glade did you hear Laguna?
In the pictogram thing?
Ah, yeah, I saw that 😄
They fumbled the thing badminton.
But 49/50 isn't bad.
I did gymnastics, which was a horrible idea by my parents as I was pretty overweight 😄
I mostly just flopped about.
Vladimir Nikolaevich Artemov (Russian: Владимир Николаевич Артемов, born 7 December 1964) is a former Russian gymnast, Olympic champion and world champion who competed for the Soviet Union. He is considered to be one of the greatest parallel bars workers of all time.
He was born in Vladimir.
Artemov competed at the 1988 Summer Olympics in Seoul ...
brb
But you get paid a bucketload of money.
To make people look at their Facebook feeds for .5s longer per day.
(kivy_venv) PS C:\Users\Name>
What's the Windows equivalent of which pip?
Shows you what executable pip refers to.
Well, on unix.
Sure but do it for 5 years and see if your soul isn’t crushed
Not everyone can be like “I got money, who cares if I’m useless!”
If you can just take the money and not care, I salute that because my life would be easier if I was more nihilistic
Eat at Arby’s
A litany of reasons 😄
I think documentation should be whatever it needs to be to help the user understand how to use the software.
Whether that's a reference manual, or a short story 😄
Was reading through the chat, everything else made sense, what this ?
Set-ExecutionPolicy RemoteSigned
Nothing makes sense. Nothing means anything. Eat at Arby's.
They have the meats.
Now it all makes sense (what he is talking about ? )
hello hi yes
At work, so no mic
I'm doing busy work and I'm the only one in my office on this side of the building
The longer I read and know about people and world, nihilism makes a lot of sense, now I just want to buy a cozy house somewhere in the middle of nowhere, have a dog and just keep reading till I die
I’m “working”
I mean, my "working" is just tidying up my office and desk
Sentdex just pinged me
(and everyone else in his server)
You leaving?
Nah, I just got a new desk so I'm reorganizing
Ahh
This one lets me fit 3 computers and roll between them
Nice, my company removes workspace
LMFAO
Kat probably has several computers for different things. Data people sometimes have that
Our used to have laptop for corporate, desktop for workloads that didn’t make sense to transfer to SQL server
🖥️ 🤸♀️ 🖥️
I have my admin laptop that has my email and stuff. My RDT&E networked computer, which is a dev computer that can access the internet. Then I have my RDT&E standalone that I have full admin access on but it's not connected to the internet
How do you access the 🌧?
On my network one. I do my super heavy dev stuff on my standalone, when it's mostly ready I migrate it to the networked rdt&e and then my email laptop is shoved in a corner of my desk
But we do have uhhh... I'll DM you the name
I use Visual Studio, I guess Code can do what I usually do but I dunno Visual studio feels good, powerful
My macbook sometimes randomly changes all the audio setting when the CPU is under high load.
¯_(ツ)_/¯
It's fine
As long as it's not obnoxious.
o/
\o
and then again from next week 🥲
\o/
electronics
wut
^ do you guys know these symbols
o/ \o \o/
o7
OTL
smart
\o/
orz=OTL but with the ass a little back
😶
If this is WSL, you should not be doing cross OS-system stuff
that does not sound right, wtf 😂
It is what it is 😄
hi
m1 or intel
./
then the file should start with
#!/bin/sh
to make a file itself executable you have to do:
chmod +x <fileneme>
that is readable, executable and writable for all users
so that would be quite a lot of rights
I thought I was messing that up
try sh ./kivyenv.sh
For curiosity sake howd you fix the file not opening error
cant open file
oh ok, lol i thought id learn the correct way to do that
Opal, but he left
@stark saddle will you be joining us tomorrow for Joe's session or it will only be him
I'll be hosting the session and making sure it generally stays on track
I'll also help moderate the Q&A portion
Oh good. I also wanted to ask something about Codejam. Do you guys rank all the projects or just the top 10 ?
I think only top 10 but... hope all
We review all the videos, definitely. But I don't think we'll rank outside of the top 10
nothing @mild flume
Fair
@unborn plume which team were you on?
Any stats on how many teams actually completed whole projects, how many have completed half assed projects (our team)
Virtuos Vultures
It was just 2 guys though, other people were busy or came in too late.
aaah, that one had a super cool idea
We can probably try to pull some stats on mostly finished projects vs half finished projects
Wish we couldve completed the whole thing, Im still thinking of coding it to full fruition
Dont just take the effort for me itself
I always encourage that
This should be a good jumping off point
@mild flume We can also open terminal through address bar and pressing "cmd" there
a
Hem you gonna help judge the code jam videos?
I can. When?
Wait can I not hear anything or is no one talking
I don't think anyone is talking
No one talking
Within the next week or so
Ahh ok
I can make time
if you're busy no worries~
It's fine~
hsp has submitted a few, we'll probably get the ball rolling on that in a few weeks
For the top 10? In-depth spreadsheet and a full up code review
Very worth me giving the perms
We'll roughly determine the order and stuff. On the livestream, actually demo-ing the projects is when we'll determine the top 3 and the winner
Alrighty
I like your new PFP @peak frigate
bot#168 bot#1682
tenqoo 
bot#1680
whaaaat
Currently struggling with fixing a desk drawer
The bottom is a bit fucked, so I'm trying to reseat it
It's not playing nicely
I'm having such a productive friday in the office
I'm currently implementing an Ant colony optimization algorithm
In computer science and operations research, the ant colony optimization algorithm (ACO) is a probabilistic technique for solving computational problems which can be reduced to finding good paths through graphs. Artificial ants stand for multi-agent methods inspired by the behavior of real ants.
The pheromone-based communication of biological a...
eeeey, I fixed the desk drawer
this is funny
nice - I'm getting my noisemaps to tile now
@raw wren I did all this work and you left
Lmao I was getting food
We were dividing up your stuff
Do you have a stereo?
also, AFK for a minute
Can I keep Scout? 👀
Sure, no one claimed him
Her
Oh yeah. Bermuda actually 😄
Ah, you're still alive 😄
This is if you were dead from whatever loud thing happened
Yes
Ifyouwanttogivemeapayrisesaywhat
I fell out of my chair lol
They're just using a non-standard logic.
Oh no...
Please don't give to him, I'm thrilled to have a role that Jake doesn't and it makes me happy
^
So rude
@soft locusthi 
well i have to go guys goodnight
Bleh, I'm $33k
heyo first time here:)
what do people usually do and talk about here? just casual chill talk, or people also review each others code?
I do not know that much about coding yet, since I just began a couple of months ago lol
sometimes both but mostly just chatting
ahh okay cool
wait that's bizarre
It means that different species (or whatever) clash less often.
If one comes out every 17 years, and another every 19 years, they come out in the same year every 323 years.
Er, idk that's biology 😄
I'm imagining you packing a tupperware of termites in your carry-on bag.
Pretty sure customs would have something to say.
I have not seen a cockroach in the UK
I have in Florida.
Mhm
Actually quite a lot as a child.
We have rats! 😄
Is it Devon or Cornwall who put the jam on scones the wrong way? 🤔
Jam, then cream.
Oh...
Clotted cream.
It even sounds unhealthy.
It's what it does to your blood.
They make ice cream from it. It's fantastic.
Stately homes 😄
"big houses"
72 70k A Year jobs available in Long Island, NY on Indeed.com. Apply to Inside Sales Representative, Recruitment Manager, Demand Planner and more!
junoir account executive.
im not wrong
Yeah, fair enough. That's the kind of thing I would say 😄
Does that mean you get to have lunch in fancy restaurants?
lmao yeah over zoom
@peak frigate seems fine https://discordstatus.com/, i've had no trouble
how do i make vscode not select shit like this when i press tab?
Oh, like focus is moving out of the text pane?
yes
i cant code without my tabs
and every tab i do moves the cursor to a button in the menu
Hmm, I don't use VS Code but this might help: https://stackoverflow.com/questions/35519538/visual-studio-code-tab-key-does-not-insert-a-tab
ok
Looks like you just have to press ctrl+m to turn this mode off.
yes thank you
Gtg 👋
@hidden cliff https://www.dell.com/en-us/work/shop/desktops-all-in-one-pcs/new-optiplex-7090-small-form-factor-build-your-own/spd/optiplex-7090-desktop/cto01o7090sffusvi?view=configurations so this is what i have
"6. Universal Audio Jack "
This USB sound adapter is designed for new headphones with a 3.5mm trrs interface. For headphones with separate headphones and microphone, 3.5mm audio port can only be connected to headphones or microphone
Got couple of questions about using QuietComfort 35 II by wired mode: 1) Does 3.5 cable that came with product support mic when using splitter? 2) Can You use ANC with wired mode with or without bluetooth turned on (needs comment)?
30 gang
people just turn off the app then 😄
I'm home so I'm heading off
bye
have a good one
German Working opportunities with additional cost compensation are set in § 16 Abs. 3 SGB II (Social Code, Book II). These working opportunities are features of the social welfare (§ 19 BSHG: "charitable additional work").
@raw wren what yall doin ova der
Hi , how does these voice channels work? are these also for help with clearing doubts ?
no they are generally more for just chatting, but spontaneous coding sessions and questions also do happen. have you seen #❓|how-to-get-help ?
@upper dagger
what should i do to activate voice chat?
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
I'm assuming this is what you mean
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
hello
yeah, I'll help, if I can 🙂
i have very simple task
what's the prob?
that i cant solve
yeah, what is it?
i have 2 commands : +1 , *1.5 if x % 2 == 0. If x % 2 != 0 you cant *1.5. So i need to count programms that can do from 1 to 22
how i cant send my code?
wait, so i don't understand properly
but
if x % 2 == 0, you multiple by 1.5
and if it doesn't you can't,
right?
!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.
!code def f (x,y):
if x == y:
return 1
if x > y:
return 0
if x < y:
return (f(x+1,y))
if x % 2 == 0 and x < y:
return (f(x*1.5, y))
print (f(1,22))
its must work
lemme show you, one second
but here 1 , when answer 44
def f (x,y):
if x == y:
return 1
if x > y:
return 0
if x < y:
return (f(x+1,y))
if x % 2 == 0 and x < y:
return (f(x*1.5, y))
print (f(1,22))
👆 , this even better
yeah, just use backticks
don't do it now
I've posted you code up there
use it some other time
ok
so, the problem is answer is 44, but it shows 1 right?
yes
yes
yes
i have solved other task like that with that sample and they work correctly
ok, ill give original task
wait
The performer has two teams, which are assigned numbers:
1.add one,
- multiply by one and a half.
The first of them increases the number on the screen by 1, the second increases this number by 1.5 times if the number is even. The second command does not apply to odd numbers.
A program is a sequence of commands.
How many programs are there that convert the number 1 to the number 22?
when here no odd numbers, task solved easy
I think problem in this
yeah, nice problem, keep trying 🤷♂️
I'm doing something atm, so please solve it on your own 🤷♂️
!voiceverify
o/
too low
nvm, its fine now
what ya upto
ah true true
I have holidays until my final exams start on saturday
I am thinking what to do, just done with my assignment
good luck!
which grade are you in btw
thanks, I am in 2nd semister, uni
nice
lmao
smart uni
i think that's every uni
tho I can't be sure until I go to a uni
haha yea
we just finished our internals last saturday
and again finals this saturday
lol
tho internals were optional
have you worked with matlab @peak frigate
?
ohk
wow
they still use it
and we had a course on it, lol
yes yes
that logo
we had matlab classes all online and never attended, lol
basically no one cares for matlab classes
its just so boring and idk why they are even teaching us that
we had python and C
nop
cpp from next sem
for CS course
but I am in mech course
1st year/first 2 semisters are same for all students regardless of branch
its not written formally anywhere, but english
the entire course is in english
really?
🤔
I did see a few student vlogs in korea
they had korean textbooks
ah right
I think, even the english degree had books in korean, I remember seeing a vlog
hmmm
nice
chicken rice 😋
is it usually white rice there?
ah
in my house, brown rice is kinda standard, lol
tho we use white rice when we want to make biriyani, etc
in biriyani?
there are different types
yes yellow biriyani exists
today I had paneer pizza for dinner
yes it is for now
but many say third wave is around the corner
oki
We had Octave 😔
whats that
I... don't remember. I'm not sure if I even completed that course.
!stream 253957578302816258
✅ @sage cloud can now stream until <t:1627323928:f>.
whats up
@sage cloud
Description How can I use socket.io instead of the plain websocket integration? I guess this is more a question belonging to starlette. Currently migrating from a flask application using flask-sock...
expected ouput:
howdy
oh really?
thats nice
so how did u guys get started with python?
ooh nice me too
im actually like brand new to python and coding in general
like i still dk some things
for how long?
yeah me toooo
but im just really bad
oooh interesting
what was ur first coding app?
was it python?
ooooh same
haha i see
hahaha
is it still arnd?
howdy
sry what is?
sry repeat pls?
this
oooh
yeah yeah the coding app u started with
is it still arnd
sad haha
hahahaha thats mee
im just trying to get distracted from life
what kind of of beginner discord server?
haha
what were they talking aboot?
yeah thats a giant rookie mistake
yeah i agree
how did u practice python basic when u started?
i could use some advice
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.



