#voice-chat-text-0
1 messages · Page 877 of 1
Oh, you get weekend headaches?
Are you sure it's not that you're sleeping longer at the weekends?
That can cause headaches.
I have no idea, but for me if I oversleep I get a headache that slowly gets worse throughout the day.
I have not concept of 'weekend' 😄
currently
I have a headache now
but that's 'cuz I didn't drink enough
and because I crack the joints in my neck too much
Lord of the Rings 😄
Ahh, there's a LoTR tv series coming.
I heard
if max < sum:
max=max
else max = sum
guys is there anything wrong with my indentation here?

here i corrected it
Eine kleine Nachtmusik
Grzegorz Brzęczyszczykiewicz
Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch
fuck you man smh
Rzeszów
@whole bear co to tak
Kraków
Enjoy the music of TROLLS? Get the soundtrack and exclusive merch here: http://bit.ly/29TX7OA
From the creators of SHREK comes DreamWorks Animation’s TROLLS, a smart, funny and irreverent comedy about the search for happiness, and just how far some will go to get it. This hilarious film transports audiences to a colorful, wondrous world popu...
Simon and Garfunkle
Bridge over Troubled Water
That wouldn't really be their kind of thing.
If they did that to Kurt i'd riot
Also, Jay doesn't really care as long as he can make money
Keeping cats indoors is kind of foreign to me.
I feel like that's not a common thing in the UK.
Oh yeah, they do kill a lot of wildlife 
and everyone left at once
how tf do i unmute
@terse needle have no clue wtf you're doing but keep up the good work
Hi
The year is 2002 and you just installed the new Sound Blaster Audigy 2 card on your XP machine for some revolutionary EAX audio. What a time to be alive. Today, we bring some of that excitement back with RTX reverb, wind and sound occlusion using OpenAL.
Twitter: https://twitter.com/ProgrammerLin
What is the fastest thing we as the human race know of? Gav and Dan try and film that.
@strong arch @terse needle watched ^
cya
does cpp mean c++?
Yes
@amber raptor ok 😳
Hello, see #voice-verification for instructions.
i do
curl -X POST http://localhost:8080/api/login/
@neat acorn
@neat acorn In most cases i would imagine that the employer is convinced of your coding, or whatever capabilities according to your resume etc. They usually ask about things that would help them better understand your work ethics and such. For example, someone very talented but has low energy in general is undervalued by someone who is not as great but is fast and gets the job done while filling the requirements for the job.
condition = 0 != 2
if condition:
raise AssertionError()
@neat acorn
assert 0 != 2
!e ```py
class A:
pass
a = A()
a.thing = 1
print(a.dict)
@brave steppe :white_check_mark: Your eval job has completed with return code 0.
{'thing': 1}
I had no idea that they were stored as dicts!
O(1)
O(n) lineral time
n is the number of items in the list
!e print(hash("test"))
@brave steppe :white_check_mark: Your eval job has completed with return code 0.
-7017362058504995815
# This is really fast!
if 'abc' in {'xyz', '123', 'bgb', 'abc'}:
print('Yes!')
Use of sets ^
Shivan I saw you were typing earlier, if you want to ask anything please go ahead
dictionary = {
'alphabet': 'abc',
'numbers': '123',
'endings': 'xyz'
}
Yes Shivam you can store anything in dicts
But only immutable and hashable things can be used as keys
['a', 'x']
['a', 'x']: 1
dictionary = {
['a', 'x']: 1
}
print(dictionary[['a', 'x']]) prints 1
i think what he is asking is what hashing is under the hood
so for your purposes its just a function that will create a unique identifier given an object?
oh yeah
dictionary[a]
Yes, it's a bit different (different purposes) but basically yeah
yeah its a bit complicated iirc
a = ['a', 'x']
dictionary = {}
dictionary[a] = 1
a.append('-')
print(a) # ['a', 'x', '-']
print(dictionary[a])
!e raise KeyError()
@brave steppe :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 1, in <module>
003 | KeyError
Error you get ^
This is why you can only use immutable (objects you cannot change) as keys in dictionaries
.
[
[('nfiorwebgeerbg', 123)],
[('dsadsadsadas', 567)],
[('kuijyhngtbfvd', 492)]
]
A good hash-table ^
We compute the hash, which gives us an index in the first list. Now we can just look that index up, and that is quick.
If we get a collision, the hash-table looks more like this: ```py
[
[('nfiorwebgeerbg', 123)],
[('dsadsadsadas', 567)],
[('kuijyhngtbfvd', 492), ('khijhhngebftd', 333)]
]
This is bad, if we want to get 333 we will hash the key. This gives us khijhhngebftd and says index 2 (remember how computers start counting at 0?)
But there's 2 values here!
So we need to go through them, and find the correct hash (remember O(n), linear time AKA slow)
Pretty much yeah
A hash has no real meaning, it simply scatters the keys, so that we don't get collisions like this
The only way to fix this collision is to increase the size of the dict: ```py
[
[('nfiorwebgeerbg', 123)],
[('khijhhngebftd', 333)],
[('dsadsadsadas', 567)],
[()],
[('kuijyhngtbfvd', 492)],
[()],
]
Look! The collision is resolved, and we are back at fast O(1) time (same time, no matter the amount of items).
dictionary = {
'alphabet': 'abc',
'numbers': '123',
'endings': 'xyz'
}
can u tell the diff b/w brackets ( { [ its pretty confusing
() is tuples, remember the immutable small ones?
[] is for lists, they can change and be added items to
{} is for dictionaries, but Python can detect if you do {x, y, z} instead of {x: a, y: b} which means it becomes a set
in maths ] means value cannot exceed the no. at the end
is this used in python?
No
[] is also used for grabbing something. For example to grab the first item of a tuple I can do ('a', 'b')[0] (which becomes 'a')
Remember, first there's a tuple: ('a', 'b') and then we grab the [0] (the computer understands as first index).
gtg, nice talking to you all!
I saw this a few days ago, it's amazing! https://www.youtube.com/watch?v=npw4s1QTmPg
"Speaker: Raymond Hettinger
Python's dictionaries are stunningly good. Over the years,
many great ideas have combined together to produce the
modern implementation in Python 3.6.
This fun talk uses pictures and little bits of pure python
code to explain all of the key ideas and how they evolved
over time.
Includes newer features such as key-...
@leaden hearth @neat acorn I want to clarify one thing before I go.
These codeblocks I sent are kind of psuedo-code (fake code), they're not 100% accurate. It's mostly to convey how you should think about them.
The other ones that don't look like that, are real code ^
So if I were to run this it will show an error
Oh yes, that code will not run at all and is not code.
It was the best way for me to showcase how hashmaps look like (the structure) and how you should think of them.
In real life there's probably a bit of a difference but, that's how you should think of them!
ok thanks
hi
if x < 0.7:
x = 0.7
elif x > 1.1
x = 1.1
I'm surprised that no one uploaded the song from The Graveyard yet, since it's pretty much everything the game has to offer.
Original lyrics:
Van 't jaar acht tot het jaar veertig
Ja die Irma was nog jong
't Was een Duitser met de tering
Te groot hart, te zwakke long
Van 't jaar acht tot het jaar veertig
Ja die Irma was nog jong
't Was een Dui...
this is belgian
or else from the extreme south of the netherlands
in style as well as accent
Biriyani
Bulgur (from Turkish: bulgur, lit. 'groats'; also riffoth from Hebrew: ריפות, romanized: Riffoth, lit. 'groats' and burghul, from Arabic: برغل, romanized: burġul, lit. 'groats', from Kurdish: Şile) is a cereal food made from the cracked parboiled groats of several different wheat species, most often from durum wheat. It originates in Middle ...
Am in tent
wheat
This stuff makes me ill
Idk it just makes me feel ill
interesting
do u guys know shawarma
yes
it is my favorite snack
nce
@normal hinge you must be having a riveting conversation
Were you intending to be rude, or....
i am suprressed :/
Gonna hop on in a bit, currently a bit preoccupied
Righto
hey
No not at all, it was just he was the only one unmuted 😂
Didn't mean to come across as rude
Yeah whoops 😁 my bad
Are those two separate thoughts?
Lol
!voice @cyan ingot Check out the #voice-verification channel. That'll tell you what you need to know about our voice gate system
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Did you guys put up the voice gate system to prevent dudes from joining to just shout random nonsense then leave?
😌
Hi
Hey @tiny socket
yeah
u missed
do u guys like momos
?

this is momos
o/
@zenith radish Not use Python for Discord bots?
Yeah
const Discord = require('discord.js');
const client = new Discord.Client();
client.on('ready', () => {
console.log(`Logged in as ${client.user.tag}!`);
});
client.on('message', msg => {
if (msg.content === 'ping') {
msg.reply('pong');
}
});
client.login('token');
import discord
client = discord.Client()
@client.event
async def on_ready():
print('We have logged in as {0.user}'.format(client))
@client.event
async def on_message(message):
if message.author == client.user:
return
if message.content.startswith('$hello'):
await message.channel.send('Hello!')
client.run('your token here')
Is there a message manhandling service?
goooooodmorning
Yello!
Burly postal worker
@rugged root What did the Blue color say to Red ?
Yellow
I just thought of it
Someone said Hello sounded like Yellow
That was good
Did you see the list of the top 10 items for Codejam ?
One of them is Rubicks cube but not our group
kinda jealous someone else also had a rubicks cube idea
lel
Bullets are food for guns tho
BUT I DONT WANNA TAKE A NAP
NOT THE BEES!
I haven't actually seen that movie. Or I have and have purged it from my memory.
@olive hedge Lucky buoy !
All the politicians and their families will be vaccinated. So...strap in.
It doesn't have to happen.
You could always drop a quiet word to whatever passes for workplace safety inspection if the mask mandates are government based, as opposed to private company mandate only. I'm sure they get bonuses for every workplace they can ding.
See how fast the internal enforcement of masks go up after the company gets fined.
"You look hot. Have you been running?"
"Are you hitting on me?"
"What? No. ...maybe."
thing:
-
Thanks for the tip Hemlock (Noisetorch) .. I'll try it.. I use linux, and I always have noises on the mic.. I had to buy a usb mic. I bought a $US 17 mic .. a fifine mic...
I hope it does help
I know how frustrating it is for folks on Linux with the lack of Krisp
Okay, so this is bullshit
No wonder people can't log in to get their paystubs
The app is literal garbage
Like this is what our users are trying to use and it makes US look bad https://play.google.com/store/apps/details?id=com.thomsonreuters.clientess
Despite it being our vendor's bullshit issue
We had some parakeets in our garden the other day... in London 😄
please give me screen share sir @rugged root
hello everyone
@app.get("/users/", response_model=list[schemas.User], dependencies=[Depends(auth.token_required)])
def read_users(skip: int = 0, limit: int = 100, db: Session = Depends(get_db)):
users = crud.get_users(db, skip=skip, limit=limit)
return users
def token_required(token: str):
raise ValueError("test")
def token_required(request: Request):
print(request) # Good to inspect
raise ValueError("test")
Please make sure you have someone checking in on you.
And if you feel gradually more unwell or breathless, call a doctor.
<style>* {padding: 0; margin: 0}</style>
html is my favorite programming language /s
(The asterisk, *, in the code above, is the CSS "universal selector", which just means "all the tags in the HTML document".)
I think my first programming project was writing an AI for Pacman 😄
its fine.. I don't really need to talk
We have a voice gate system. And you can still talk in here. If we're in the voice chat channels we watch the paired text channel
#voice-verification will tell you what you need to know about the voice gate system
oooooohhhhhh okay thank you
@vivid palm Fisher needs a boot in the ass to use GrubHub
:p
LOL
everytime i read that I see GitHub not GrubHub
Same
m2
Same here. Taco Bell is in the UK 
I kind of love the nacho cheese tbh.
beans
LOL chris just lurking wtf
always
@uncut meteor have you seen this?
hi chris
I don't think anyone did
I just got kicked from the vc though
diarrhea 💯
You know, I don't think I've ever had stomach issues from Taco Bell
I have had issues at school due to my syndrome
Celiac?
Beans on toast is basically poverty food in the UK
It's like what instant ramen is in the US
Ah, is this one of those tolls I've heard so much about?
okay
@cobalt fractal wait so did you disconnect me?
@leaden hearth Just as a quick reminder, might want to look over our #code-of-conduct if you haven't already
wasn't me, no
Doesn't look like anyone did
hmm??
beans on wheatabix however


Correct, but it also pumps out numbers 1 through 4
so leaves 5 off?
The first number is where it starts, including that number. Where as the last number is where it stops, not including that number
"Hello! Kevin running late s/b logging in by 12:00"
So it's just like the for (let i = 1; i < 5; i++){
got it*
Trusted by thousands of gophers worldwide. Go Productive. Go with us.
thanks a bunch
it means literally "for each item in the ranges 1 to 4", an item being number in this case.
Happy to help!
As a side note
range() and slices (used for picking parts out of an iterable) have a third argument
So its
range(start, stop, step)
iterable[start:stop:step]
Correct
So range(0, 7, 2) would give you 0, 2, 4, 6
However, range(0, 6, 2) would give you 0, 2, 4, so that's something to keep in mind
The stop is not inclusive
range(0,10,2)
would give me 0,2,4,6,8?
Correct
makes sense
Step can also be negative
Yep, what KJ says. The way you write pseudocode depends on what you're trying to communicate, and it tends to be ad-hoc.
Also, with regards to slicing
Seen the bean?
She made fk8n beans
!e
spam = "Ham and cheese"
print(spam[:4]) # leaving the first part blank implicitly means start from the beginning
print(spam[2:]) # leaving the second one blank means get everything from the start value to the end
print(spam[3:-2]) # Negative means that you are counting from the back
# So -2 means the second from the last element, -1 the last, etc.
# The step works the same as it does in range
@rugged root :white_check_mark: Your eval job has completed with return code 0.
001 | Ham
002 | m and cheese
003 | and chee
Slicing can be used on things like strings, lists, tuples, and a few others
-1 will reverse it correct?
@rugged root :white_check_mark: Your eval job has completed with return code 0.
snaeb dna kroP
Nah, I'm not really great at those
I always get psyched out when I see the like... one line, highly optimized solutions
Or maybe just work in 30 minute intervals if you can only concentrate for that long
¯_(ツ)_/¯
Have you heard of pomodoros?
@faint anvil Let's move the question into here so that more people can help out
As I'm bouncing back and forth at work
need to go and get some work done, have fun
Hell yeah
Pub 👀
hi
got a off-topic question
I want to findout in html of this page where is the form or an input thus this image bellow

to fill up a test can somebody help me find it?
i got it



oh my god
guys im running into something really weird
saved already
lmao
def miniMaxSum(arr):
sum =0
sum2 = 0
arr = sorted(arr, reverse = True)
for j in range(2,6):
sum2 = sum2 + j
for i in range(0,5):
sum = sum + i
print(sum, sum2)
why is it giving the same output for 2 different problems?
oh yeah, I forgot
So you're iterating over range, not the array they gave you
Yeah
can you show the problem statement?
yes
and join the VC lol
too much to copy and paste so here is the link
dont wanna clog the chat
Where the variable names are highlighted, that means you're "shadowing" a built-in function/type.
yes
muahahaha
one second
hello
i cant speak
but i can listen
got you
so ill just type here as a response is that fine
Can you think of another way to get the sum of all-but-one of the integers?
use for loop
let me think
well
i want to store the numbers in the array
until i get to the last one
and for the other one i want to do all but the first
yeah
but my algorithm orders it from least to greatest
i created another fake account on stack overflow
so i can just get the min and the max
to ask my question
im not sure i really understand what the difference is
arr[i] vs i
864589400326406154
@whole bear what is ur quesion
Modmail plz Mina.
no words.
is opal speaking something its showing me this
LMAO
probably a bug
@faint anvil grow up man
he/she/they are lookin' for an anime waifu
why they do that in here lmao
you're just adding i to the sum, when you should be adding arr[i]
isnt programming a male dominated field?
whenever hemlock is about to ban/mute someone he goes full on quite
let me think about this for a second
i think guys are just more interested in this stuff cause its portrayed as "nerdy"
so many girls kind of get discouraged
lol. no, those who identify as female are pushed away from the toxic bro culture.
@rugged root u said male dominant
we don't get discouraged from nerdy shit. we are nerdy.
That's not what dominated means in this case though. Male to female ratio of current programmers is heavily skewed towards men
it depends on population
so i should replace the vairable?
or is it more complicated
can you send what code you have rn
i see most of js developers are females
Back in a bit...
then males
yes
#!/bin/python3
import math
import os
import random
import re
import sys
#
# Complete the 'miniMaxSum' function below.
#
# The function accepts INTEGER_ARRAY arr as parameter.
#
def miniMaxSum(arr):
sum =0
sum2 = 0
arr = sorted(arr, reverse = True)
for j in arr(2,6):
sum2 = sum2 + [j]
for i in arr(0,5):
sum = sum + [i]
print(sum, sum2)
if __name__ == '__main__':
arr = list(map(int, input().rstrip().split()))
miniMaxSum(arr)
in my school we had like maybe 1% of the CS majors were women
one goodthing to be a js developer is u can flirt with lot of females
the 1 percent though are always smarter than most of the guys
Have you considered getting fixed?
if not all
you should be indexing into the list, not using [i], which creates a new list
well, you shouldn't flirt if it's unwarranted because that makes you a creep. just FYI.
sorry i dont know the difference at all. How do i do that?
hemlock he is saying what are u doing in ur life man will u get a job
is it just a for loop?
becoz he helped me in resume
have you used lists before?

i know u opal
i would stay away from doing these types of problems until you learn more
im a java person
🙂
you've used arrays in java?
yes
indexing into a list is the same in python and java
python's lists are like java's ArrayList
what i usually do in java are for (i=0;i<arr.length;i++)
you need to familiarize yourself with python's types first
python's for loops are like java's for-each loops
just because you implement something in java, doesn't mean it will be the same in python.
take a look at the python docs
this works?
yeah
the indentation is kind of odd
but i get it
yeah
it makes senase
sense*
its just something to get used to if that makes sense
okay guys imma head out
thanks for the help
@whole bear try codingbat, the problems are easier than hackerrank and more straightforward
definetly will
Thanks
@gentle flint I've just been working
@brave steppe what r u working on?
Nothing super exciting
I will later
I see
Discord API with C extensions for memory efficiency
what does your Discord api do
Well sorry, a wrapper*
@rugged root
😒 meh..
damn , this covid is not leaving us alone
So Discord has an API that you use to make bots. I am wrapping that API with a module you can install and use, it makes the API easier.
'cuz he's too uppity to use discord.py
idk if it's the ubuntu 21.04
but I can see all my windows files right from here
and it's awesome
hmm, yeah
bitlocker is missing this time around
I'm using a new ssd
pretty much ;-;
so you're basically making a discord.py

what are you calling it
I might use yours as long as it isn't as complicated as discord.py
I don't even know when it'll be done 😅
@sick dew Discord API wrapper with C extensions so that it's more memory efficient
ooo
watsdaname tho
might I suggest discapi
brb

I am calling it Wumpy (from Wumpus the maskot)
Huh, I didn't realize these both got released on Switch https://www.amazon.com/Final-Fantasy-VII-VIII-Remastered-Nintendo/dp/B08LB3XQ64/
Oh chill
And you could, but it wouldn't make sense to do so
Because you're only doing that in one place. Decorators are if it's something that you'd need to do in different places on different methods/functions
Where as classes and inheritence are part of how you get the most out of discord.py
how is that "Sql Server Express" requires no username and password on windows to work
but need them on linux 😠
the connection string is now completely different for each OS 😩
Because Windows authentication
don't fully understand 🥴
@haughty pier, I am a bit confused by IntFlag. I need a bool 🤔
>>> class Test(enum.IntFlag):
... test = 1 << 1
...
>>> t = Test(123)
>>> t.test
<Test.test: 2>
>>>
how do you make permanent env variables in linux?
export them in ur shell
command, please, give me the command 🥲
@bright tiger What's your question? Like the general overview
@brave steppe I think you want isit & t.test
brb
echo "export ENV=VALUE" >> $(".${0}rc") && $("source ~/.${0}rc")```
What's isit? The instance correct?
i have several screenshots posted in burrito, but the generalized question is how would i go about setting a playerID from a sql database using a inputed name which is also in a sql databasee
isn't shell $0?
accio scrollbar
and then i had a few questions based on the while statements used in python/sql
Because this is the type of behaviour I need: ```py
class Test(enum.IntFlag):
... test = 1 << 1
...
t = Test(123) # 1111011
t.test
True
@brave steppe
>>> from enum import IntFlag
>>> class Test(IntFlag):
... one = 1<<0
... two = 1<<1
... three = one | two
... four = 1<<2
...
>>> Test
<enum 'Test'>
>>> Test.one
<Test.one: 1>
>>> Test.one | Test.two
<Test.three: 3>
>>> Test.one & Test.three
<Test.one: 1>
>>> Test.one & Test.four
<Test.0: 0>
last is falsey, 2nd to last is truthy
ok, so it just takes source ~/.bashrc command to make em permanent
after you've created some variables
I can't use it like that. I need to have an instance stemming from a value like this: 523328 (1111111110001000000) and then use the attributes to see how they're set.
I'll use my own reimplementation then I think
as you wish
>>> t = Test(123) # 1111011
>>> t.test
True
>>>
Behaviour I need ^
>>> bool(Test.one & Test.three)
True
>>> bool(Test.one & Test.four)
False
I think you're just rewriting __bool__
Kind of yeah 😅
store the results of the test as a boolean instead of writing an object for it
I want to look at how with enums I can do: ```py
class Test(...):
test = 1 << 1
Instead of ```py
class Test(...):
@flag
def test():
return 1 << 1
But I am not sure if I can use metaclasses the way they do in the enum implementation.
I'll look into it more, thank you for the ideas @haughty pier
That's bitwise operators @jagged thorn , so 1 << 2 becomes 100 (binary). 1 << 3 becomes 1000 (binary)
ok
So here is going to be hopefully the last unity screenshot I take
duh voice-chat-o hear we go...
yeah I think I'm going to look into doom and void nice pointers..'tfs' I'm not super pleased with ubuntu 20.04.
how to you guys recommend testing a distro on an existing distro? vagrant ? docker?
@rugged root thanks for everything . i make my program and it work nice , and save all of fields .
Fucking finally
What’s fun about that notice is we get that at work but works auto blocks
Standard Google
People keep asking about it
It's called a library 😄
Also, before internet, computing was a ton simpler
is this better?
New chipset announced by the google. Its called TEnsor
tpu?
So are they going to support longer then 2 years?
See also https://direnv.net/
elem1,elem2,elem3 = *i
should not take down the pride of sublime Text by calliing it as an IDE..
<@&831776746206265384> heyya can you help me with the methods of list
Don't mention mods for help please
Just ask your question, and someone will come help when they can
ok i am sorry
You should also ask in a help channel (see #❓|how-to-get-help)
!mute 852753761633566751 1d Since you've done similar things before, I recommend you listen this time.
:ok_hand: applied mute to @jagged thicket until <t:1628338685:f> (23 hours and 59 minutes).
meow
would you know how to save stuff to .csv @wicked kettle
kinda having some trouble with mine
i thought youd might know cuz i thought it might look basic to yous
code's in #help-donut if you somehow figure out how to do it
aaaaaaaa i tried copying off previous examples from uni but idk why it aint working
its for an assignment that was due days ago but got an extension bc stuff happened
intro to programming
from rmit
the assignment is just to cover all the checklist with programming our code
with the theme of our app being anything from the google play store
@bitter yarrow ayo would you know stuff about saving to .csv
@scenic windno i just joined for help
uhh from an admin which im still trying to comprehend what he's saying
its in #help-donut
Hello 👋
Ah nice 😄
Currently watching this live stream: https://www.youtube.com/watch?v=4B2_dfvRZ4M
Starship 20 is being prepared for stacking atop Super Heavy Booster 4 at Starbase, Texas. The booster already has all 29 Raptor engines installed and the Ship has all three sealevel and all three Vacuum Raptors installed. This will complete the historic first stacking of a complete SpaceX Starship Super Heavy launch system.
Updates: https://for...
It is assembled 👀
The most powerful rocket ever built.
Oh right
Hello LP
i wish there was smth decent and halal here
It's in the UK now so maybe Lithuania soon? 😄
It would depend on the license yeah.
If you can ignore a few weird quirks, it's a pretty nice language actually.
Absolutely
Unfortunately some of those quirks were literally bugs in the original implementation that were then standardised 😑
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo apt install ./google-chrome-stable_current_amd64.deb
rm ./google-chrome-stable_current_amd64.deb
@flat sentinel
Hello @vivid palm
@zenith radish why is linux so hard
Well, the advantage of tenure is greater academic freedom. (In theory)
How do you progress when it comes to coding? Where do you learn from
It's spectre backwards 😂
I am so confused by this discord name. Idris | ضبابي#0950
I learned from youtube and just looking up stuff on stack overflow and stuff like that.
if __name__ == "__main__":
main()```
"__main__"
Can someone take over helping? This might be a bit
i just translated dababy into arabic for funny
its just in a strange order but probably makes sense in arabic
@olive hedge : "As soon as I hear any kind of emacs keybinding being used to control the discord client - you're banned."
@zenith radish : https://youtu.be/VWgsdexkv18?t=64
Link to an Original Distribution Document:
http://www.serviceofsupply.com/images/Keeper Pics/BloodonTheRisers.jpg
Link to Paratroop Training Booklet circa 1943:
http://www.517prct.org/documents/1943_paratrooper_training_fort_benning/ft_benning.htm
A song written when the airborne divisions were formed. It is played daily on the Post PA sys...
Heeeeeeeeey, it's the daily chat-athon
Hi everybody (in Dr. Nick's, from the Simpson's, voice
This is fromSept. 27, 1969 episode of The Johnny Cash Show. Johnny Cash did a awesome job singing The Battle Hymn Of The Republic. What a great and powerful song. We need more songs like this that talk about the love for God and Country.
Well, there are immutable objects, but not immutable variables.
LP, you said "Discord as a programming language" 😄
Do you think it would make sense to have a Constant type hint? 🤔
Damn no enthusiasm the 2nd time
OwO
Jaques-san? ÒwÓ
*nuzzles*
HEWWOO!!!!

cr: mina
Has anyone continued to help him?
yes
gonna grab ice cream, I'll cya
luckyyyyyyy
sigh Work
now my bedsheets smell like you
download track for freee here: https://soundcloud.com/dorianelectra/shape-of-you-ed-sheeran-feat-dorian-electra
this track made its world debut at Chester Lockhart's incredible birthday party on April 3, 2021 https://www.twitch.tv/chesterlockhart
#shapeofyou #edsheeran #dorianelectra ed sheeran
Don't rope me into this...
!otn s huxley
• huxley-without-a-mustache
• we-can’t-helper-huxley
Provided to YouTube by Universal Music Group
Sixteen Tons · Tennessee Ernie Ford
Ford Favorites
℗ A Capitol Records Nashville Release; ℗ 1955 Capitol Records LLC
Released on: 1957-01-01
Associated Performer, Vocals: Tennessee Ernie Ford
Associated Performer, Trumpet: Charles Parlato
Associated Performer, Alto Saxophone: Darol Rice
Assoc...
@olive hedge sorry fisher
@olive hedge We are sorry 😦
LOL what
Fisher, we appologise humbly and sincerely.
@olive hedge 👀
hi

yesssssssssss hello everyone
Official music video for ”Toxicity” by System of a Down
Listen to System of a Down: https://SystemOfADown.lnk.to/listenYD
Subscribe to the official System of a Down YouTube channel: https://SystemOfADown.lnk.to/subscribeYD
Watch more System of a Down videos: https://SystemOfADown.lnk.to/listenYC/youtube
Follow System of a Down:
Facebook: https:...
this vc crazy frfr
ive been to Steal This Album! for the last hour
so how does code work
Typically, you write instructions into a file. The computer reads the instructions and completes them. You can tell the computer to perform or not perform operations based on the existence of some situational condition. You can tell it to run a certain instruction over and over, or n number of times.
It's quite open ended.
You can write code that lets you solve mathematical problems, display data, paint pictures, recognise text in images, communicate with other computers over the internet...
Games are popular.
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
Corey Schafer's Youtube playlists on Python are handy.
print(list(map(lambda i: "Fizz"*(i%3==0)+"Buzz"*(i%5==0) or str(i), range(1,101))))```
!e
def my_temp_func(x):
return x * x
print(list(map(lambda x: my_temp_func(x), [1, 2, 3, 4])))
@olive hedge :white_check_mark: Your eval job has completed with return code 0.
[1, 4, 9, 16]
🤔
package main
import "fmt"
func main() {
func(l int, b int) {
fmt.Println(l * b)
}(20, 30)
}
@zenith radish
I would like apply where you work!
Do you do c++?
yea
like i have used it for basics but if learning is concerned
I am interested but haven't seen much companies having position for fresh graduates 😢
nope, only looking for seniors atm ;c
Ohh will come back after some year ! 😄
seize the means of production? 
why am i suspended on this 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.
!voice @idle egret
STO developers
Actually stupid Chinesse the game company. Developed the Perfect World game MMORPG
@rugged root which of their games you played or liked?
Trying to remember...
They use something like Arc Launcher if I recall
Bought Cryptic studio
Star Trek Online
I think they bought neverwinter as well like STO
I'm back
Also as a reminder to everyone who are stuck listening to this, it'll be calmer and much less...... this in the other voice chat. Just letting you guys know that there is an escape
There are tons of handy little things in it
Like, all upper case letters, lower case, ascii, numbers, etc
ohhk
A lot of other cool stuff as well
i got homework : (
Any time
I shall return most likely
sys.append(str(HOME_DIR / "src"))
what / do here
depends on the type of HOME_DIR
HOME_DIR = Path("../").expanduser()
Matrix Encrypted IRC 🙂
whats wrong here?? : (
windows 7

you can have the best application (performance, optimization, etc), but if you can't get ANY user traction, then your app is dead.
you used str instead of string @fresh ember
i asked whats wrong with code 🙂
ohh k
Cap'N'Crunch
what are you trying to do?
string.ascii_uppercase is a constant
Phrack staff website.
Phrack is an e-zine written by and for hackers, first published November 17, 1985. Described by Fyodor as "the best, and by far the longest running hacker zine," the magazine is open for contributions by anyone who desires to publish remarkable works or express original ideas on the topics of interest. It has a wide circulation which includes bo...
you can use str.upper() to get an uppercase version of a string
That doesn’t let you intercept incoming
trying to use string.ascii_uppercase
but why are you using it
SS7
Research By: Eyal Itkin, Yannay Livneh and Yaniv Balmas Fax, the brilliant technology that lifted mankind out the dark ages of mail delivery when only the postal service and carrier pigeons were used to deliver a physical message from a sender to a receiver. Technology wise, however, that was a long time ago. Today... Click to Read More
like pub previously said, string.ascii_uppercase is a pre-initialized string which is used as a string constant. if you are trying to capitalize the user input, you would not use this string method.
ohhk
@fresh ember use this method instead
ohhk
if you have any other questions, you can open a help channel 🙂
thx : )
no problem ^^
This is exhausting me
LOL. that's why i'm in here and not talking
Only reason I haven't moved to the other channels is because I have to babysit this
pull another mod? lol
I'm not making anyone else suffer for this
I mean if you didn't have to work
i'll take the money and move tf out
Fair
OOOOH
Hence the shittiness
🤔 i didn't know you lived there
you're not supposed to know lol
know what
Sieh dir auf Facebook Beiträge, Fotos und vieles mehr an.
please provide translation lol
ACL2 ("A Computational Logic for Applicative Common Lisp") is a software system consisting of a programming language, an extensible theory in a first-order logic, and an automated theorem prover. ACL2 is designed to support automated reasoning in inductive logical theories, mostly for the purpose of software and hardware verification. The input ...
@tough panther No it was related to maniacal laughter 😄
right, "water"
his own coolaid
lmao it is! i can't day drink. those days are overrrr
mhm
Phreaking is a slang term coined to describe the activity of a culture of people who study, experiment with, or explore telecommunication systems, such as equipment and systems connected to public telephone networks. The term phreak is a sensational spelling of the word freak with the ph- from phone, and may also refer to the use of various audi...
i can 
Same
🤩
shout out to all the homies who can taste that crispy alkaline water. hnnnnggg
LOL
lolololol
thread 'main' panicked at 'index out of bounds: the len is 19 but the index is 18446744073709551613' 😔
lol panicked
converted a negative to an unsigned
🦀
10^−60 Dilution advocated by Hahnemann for most purposes: on average, this would require giving two billion doses per second to six billion people for 4 billion years to deliver a single molecule of the original material to any patient.
russia is on fire
literally or figuratively?
Curse you pay wall!!!!
It just seems highly inconvenient and hard to maintain
No no, I mean new websites are made every day
Wouldn't they have to constantly update what's being filtered?
yeah idk if it's so much the case anymore but big 'portal' websites like naver.com
you need the korean ssn, or provide a cell # if foreign.
that being said i've never been able to get it to work lol
Wait, do you have dual-citizenship?
no, i gave up my krn citizenship, but i do have a KSSN. but it won't be valid anywhere
so i think my info is outdated regarding this
seems that policy has changed in kor. https://en.wikipedia.org/wiki/Resident_registration_number#Online_use
In the Republic of Korea, a resident registration number (RRN) (Korean: 주민등록번호; Hanja: 住民登錄番號; romanized: Jumin Deungnok Beonho) is a 13-digit number issued to all residents of South Korea regardless of nationality. Similar to national identification numbers in other countries, it was used to identify people in various private transactions such...
oui
oooooo minaaaa i had to ask you about something
oui
have you heard of oli london? <.<
non
guuuuuurl, you gotta look up the story on himmmm asap
KSSN
You have a radio station?






