#voice-chat-text-0
1 messages · Page 990 of 1
this will never go anywhere
try and buy the win 🙂
Not without a lot of kicking and screaming from some people.
There it is.
a = range(20)
print(a[15:10:-1])
@somber heath mind telling me how i can store all functions of math module which needs two parameters in a list and call em one by one?
We can rebuild him! We have the technology!
I'm not a politician
All? It wouldn't be applicable to have all. Just write the functions into a tuple.
for i in range(20,15,-1):
print(i)
You gotta learn the distinction between arrays and for loops. Python kinda might obfuscate the details... if you don't learn the specifics...
import math
functions = math.sin, math.cos, math.tan
for function in functions:
...```Sort of thing, but not with those, probably.
!e
for i in range(20,15,-1):
print(i)
@tidal shard :white_check_mark: Your eval job has completed with return code 0.
001 | 20
002 | 19
003 | 18
004 | 17
005 | 16
Socialised healthcare is only going to be shit if it's underfunded and mismanaged, likely instigated at the behest of people who would prefer to grow fat off the suffering of other people.
!e
new_list = []
for i in range(20,15,-1):
new_list.append(i)
print(new_list)
@tidal shard :white_check_mark: Your eval job has completed with return code 0.
[20, 19, 18, 17, 16]
@umbral terrace
https://automatetheboringstuff.com/
The first 6 chapters of this free book will build a good foundation of the basics.
@umbral terrace , Pycharm is cool for Python + Terraform "relations", but if you're going to deal with integrated sql databases in Python (SQLite) go for Visual Studio Code
Visual studio code is also better if you need to manipulate json and csv files
Part 2: Polymorphism (35 + 5 pts)
- Implement an Account class and two derived classes, Savings and Current: (35 pts)
- A parent class named Account
o A protected double member balance
o public void Withdraw(double amount)
o public void Deposit(double amount)
o public void PrintBalance() - Then, there are two derived classes
o Savings class
▪ Has a private member interestRate set to 0.8
▪ Withdraw(double amount) deducts the amount from balance with interestRate
▪ Deposit(double amount) adds amount in balance with interestRate
▪ PrintBalance() displays the balance in the account
o Current class
▪ Withdraw(double amount) deducts amount from balance
▪ Deposit(double amount) add amount in balance
▪ PrintBalance() displays the balance in the account - Input:
o In the Savings class, balance is set to 20000 in the parameterized constructor
o In the current class, balance is set to 20000 in the parameterized constructor - Output
o Balance before withdrawing from the savings account and balance after withdrawing
from the savings account
o Balance before withdrawing from the current account and balance after withdrawing
from the current account - Write at least two Junit test cases.
- Comment for each method and class to explain the functionality.
- Answer the below question and include in the end of the above Account class (5 pts)
- Can we override the final method, True or False? and briefly explain the reason? - 5
The link doesn't include your code. It's blank.
zybooks
supplies = ['pens', 'staplers', 'flamethrowers', 'binders']
for i in range(len(supplies)):
... print('Index ' + str(i) + ' in supplies is: ' + supplies[i])
Index 0 in supplies is: pens
Index 1 in supplies is: staplers
Index 2 in supplies is: flamethrowers
Index 3 in supplies is: binders
supplies[3] = 'geakjlhgkleajge'
By the time Luis von Ahn turned 24, he was already a millionaire several times over.
The 43-year-old may not be a household name, but I'm willing to bet you’re one of the hundreds of million people who use his technology everyday.
Luis isn’t your average Unicorn tech founder. He actually pays his drivers to give feedback on their interactions ...
http://www.ted.com After re-purposing CAPTCHA so each human-typed response helps digitize books, Luis von Ahn wondered how else to use small contributions by many on the Internet for greater good. At TEDxCMU, he shares how his ambitious new project, Duolingo, will help millions learn a new language while translating the Web quickly and accuratel...
Hi
hi
call_me_man
How can i see how many messages remains until i can talk in voice channel?
One Piece, Vol. 1 by Eiichiro Oda, 9781569319017, available at Book Depository with free delivery worldwide.
!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.
- Which XXX will display one more than half of the smallest value of w1, w2, and w3?
def min_value(a, b, c):
if a <= b and a <= c:
return a
elif b <= a and b <=c:
return b
else:
return c
w1 = 7
w2 = 3
w3 = 12
y = XXX
print(y)
A. min_value(w1, w2, w3)/2 + 1
B. min_value(w1+1, w2+1, w3+3)/2
C. min_value()/2 + 1, w1, w2, w3
D. min_value: w1, w2, w3() /2 + 1
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
#voice-verification
Hello
parents?
me too 🙂 i'm trying to create a visual of adding 2 waves and then separating them again using fourier transform 😄
just cuz i've never done that before
hi
Oh thanks
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
I just joined today
yeah np
i have a doubt in a problem can someone help me
LESSER OF TWO EVENS: Write a function that returns the lesser of two given numbers if both numbers are even, but returns the greater if one or both numbers are odd
#❓|how-to-get-help Is the channel I mentioned.
so i basically split the two letter word and then made it a tuple
Oh im sorry , this is the wrong problem
ANIMAL CRACKERS: Write a function takes a two-word string and returns True if both words begin with same letter
animal_crackers('Levelheaded Llama') --> True
animal_crackers('Crazy Kangaroo') --> False
!d str.split
str.split(sep=None, maxsplit=- 1)```
Return a list of the words in the string, using *sep* as the delimiter string. If *maxsplit* is given, at most *maxsplit* splits are done (thus, the list will have at most `maxsplit+1` elements). If *maxsplit* is not specified or `-1`, then there is no limit on the number of splits (all possible splits are made).
If *sep* is given, consecutive delimiters are not grouped together and are deemed to delimit empty strings (for example, `'1,,2'.split(',')` returns `['1', '', '2']`). The *sep* argument may consist of multiple characters (for example, `'1<>2<>3'.split('<>')` returns `['1', '2', '3']`). Splitting an empty string with a specified separator returns `['']`.
For example:
!e py text = "Hello World Domination" result = text.split(" ") print(result)
@somber heath :white_check_mark: Your eval job has completed with return code 0.
['Hello', 'World', 'Domination']
so i utilized that and wrote this :
new = tuple(enter.split())
yes,but then they are like two words so i was wondering if we have to perform tuple unpacking
then use index
you can unpack lists just as well
wrod1, word2 = text.split()
!e
foo, bar = [1, 2]
print(foo)
print(bar)
Can you show the code to do it direclty
!e py text = "apple" print(text[0])
@somber heath :white_check_mark: Your eval job has completed with return code 0.
a
!e
text = "foo bar baz buz"
first, second, *_ = text.split()
print(first)
print(second)
^ how to ignore any more than 2 words
@woeful salmon :white_check_mark: Your eval job has completed with return code 0.
001 | foo
002 | bar
yes so i get the index part , just the part where i can split the words into two parts i am a bit confused
I like it, but you could also use the maxsplit param.
oh
that does kind of work but you still need the _ just no unpacking
so to specifiy which word i want then can i use index
simple hint
print(string[0] == string_two[0])
!e
text = "foo bar baz buz"
first, second, _ = text.split(maxsplit=2)
print(first)
print(second)
!e
def animal_crackers(text):
word1, word2 = text.split()
return word1[0] == word2[0]
@sour imp :warning: Your eval job has completed with return code 0.
[No output]
one question i have is that the word is input by the user
!e
def animal_crackers(text):
word1, word2 = text.split()
return word1[0] == word2[0]
print(animal_crackers('Levelheaded Llama'))
@sour imp :white_check_mark: Your eval job has completed with return code 0.
True
!d input
input([prompt])```
If the *prompt* argument is present, it is written to standard output without a trailing newline. The function then reads a line from input, converts it to a string (stripping a trailing newline), and returns that. When EOF is read, [`EOFError`](https://docs.python.org/3/library/exceptions.html#EOFError "EOFError") is raised. Example:
```py
>>> s = input('--> ')
--> Monty Python's Flying Circus
>>> s
"Monty Python's Flying Circus"
``` If the [`readline`](https://docs.python.org/3/library/readline.html#module-readline "readline: GNU readline support for Python. (Unix)") module was loaded, then [`input()`](https://docs.python.org/3/library/functions.html#input "input") will use it to provide elaborate line editing and history features.
Raises an [auditing event](https://docs.python.org/3/library/sys.html#auditing) `builtins.input` with argument `prompt` before reading input...
so then how do i mention it as two seperate parts
is there any way i can communicate via voice since i am not able to explain it through text
!e py a = ["thing", "thong"] b, c = a print(b) print(c)
@somber heath :white_check_mark: Your eval job has completed with return code 0.
001 | thing
002 | thong
ill try once again , thanks for your help
sounds like chinese to me
yeah he is good at explaining
An animated introduction to the Fourier Transform.
Help fund future projects: https://www.patreon.com/3blue1brown
An equally valuable form of support is to simply share some of the videos.
Special thanks to these supporters: http://3b1b.co/fourier-thanks
Learn more about Janestreet: https://janestreet.com/3b1b
Follow-on video about the uncertai...
Oh I’ve heard about fourier transform. But I’m also not smart enough to understand the hype 🥲
what's your age? @woeful salmon
😂
>>> for a, b, c, d in itertools.product("13", ["blue", "brown"], "13", ["blue", "brown"]):
... print(a,b,c,d)
...
1 blue 1 blue
1 blue 1 brown
1 blue 3 blue
1 blue 3 brown
1 brown 1 blue
1 brown 1 brown
1 brown 3 blue
1 brown 3 brown
3 blue 1 blue
3 blue 1 brown
3 blue 3 blue
3 blue 3 brown
3 brown 1 blue
3 brown 1 brown
3 brown 3 blue
3 brown 3 brown```
Why are you a noodle reaper🤔
Oh i just noticed the profile picture
Oh the intro that’s another thing to think about. Youtubing is tough stuff
Hah
Iwant it
Oh noooo
I love it tho
Has a nice ring to it
But you are indian
😮
Like scrubs
Im a cranky coder
😂
Oh u havent seen me coding in real life
Im also a cussing coder
Good point
I just got back from istanbul
R u still there
no i was there 2 months ago
Ah it must’ve been rly cold then
it was
Opal you never asked me my favourite food 🥺
Hinkali
agree!!!
Pineapple on pizza is the best
Maybe it’s because I’m Malaysian it works for me because we’re used to having sweetness in savoury foods.
If the spicy food is not sweet it won’t sell here
Everybody’s just afraid of each other
It’s like war is a fact of life and humanity is sort of addicted to it? 🤔
It was a nice talk
Hope so 😂
Bye
Ola
Haaaaha
I have a lot
But recently I’ve discovered kaymak and I really loved that
Cant speak spanish 😦
I only know ola muchachos
Same
I code
Oohh C
I did a bit of C back in the days
Yeah
Its like butter but not really butter
It should be the other way round shouldnt it 🤔
Milky creamy kind of thing
I thought u were talking abt a milk product also
Haha
@somber heath 😓 my code
def main() -> int:
return 0
if __name__ == "__main__":
edit(main())
Lua?
Its the first time I’ve heard of Lua
My first language was I already forgot the name of
More control over the lower level huh
its a language with weirder syntax than python and is technically almost a clibrary
print("hello")
print"hello"
^ both are valid in lua for example
lol
Everything is C 🤷🏻♀️
Innnteresting
Mostly linux for coding
Windows for everything else
Pfft
Sasuga opal
Would love to stick around guys but its dinner time bbyyee
👋 enjoy your meal
hey
sorry
i'm in office
😅
thanks for letting me know
I need a help, i want to make API documentation in pdf format. can someone please share any good template?
okay
thanks
JavaScript for good for web related things
Verboofourier transform.
Featuring the Gregory Brothers! Go subscribe to them: https://youtube.com/schmoyoho
Pitch correction: it can make terrible singers sound decent, brilliant singer sound mediocre, or Cher sound like a robot. But how does it work? And is it possible to explain that without actually trying to understand Fourier transforms?
I'm at http://tomscott.c...
Fauxier transform. Like a Fourier transform, but fake.
lol
the grape industry also
@gentle flintit says upload
it has upload but not as a button but as a command you can run from the command palette or set a keybind for
yeah
I found out that I don't need it
I can just use the ESP-IDF extension
i love my ability to just forget that i've been coding for 6 hours straight when i'm working on a project which is visually pleasing
i shall now go play video games for break
@quasi condorwait charlie you were not a mod? i swear i saw you with some kinda special role before
I used to have a Patreon role a very long time ago
ooh 😮
but not anything special recently
nice xD i was boosting this server the 2 months i actually bought nitro (to never use it) after which discord then gave away 3 months of nitro free to people who've never bought it...
spite is good source of power
I left for a week vacation and let my brother take care of my cat now she has skin problems 😦
a house that someone from the Baltics can feel at home in https://www.rightmove.co.uk/properties/117348029#/?channel=RES_BUY
(at least assuming Geoguessr hasn't lied to me)
i will now stop looking at houses
https://www.rightmove.co.uk/properties/120882536#/?channel=RES_BUY
https://www.rightmove.co.uk/properties/120879626#/?channel=RES_BUY
https://www.rightmove.co.uk/properties/120862094#/?channel=RES_NEW
https://www.rightmove.co.uk/properties/118607339#/?channel=RES_BUY
4 bedroom detached bungalow for sale in Common Lane, Selmeston, BN26 for £1,000,000. Marketed by Rowland Gorringe, Seaford
4 bedroom house for sale in Hogarth Road, Hove, BN3 for £1,100,000. Marketed by Healy & Newsom, Hove
5 bedroom detached house for sale in Littleworth Lane, Partridge Green, West Sussex, RH13 for £1,500,000. Marketed by Hamptons Sales, Horsham
do u guys kiss ur cat on the mouth
@gentle flint i see you have traded your frames for 10 times better quality for your camera
xD
nvm its back to decent fps
nvm its gone again
that's just my internet
I checked out better help one time their costs are pretty crazy.
therapy is so expensive tho 😦
I want to but I could only dare on the forehead 😦
You know if a beast would let you do that then you're one special human being
As I progress in my career therapy will definitely be part of the budget
just not now
😦 but my cat is just such a cutie pie
Hi
are you'll in uni?
high school ?
I am currently learning python but i face difficulty in certain questions , is there anywhere you know where i can get good practice
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
That should have been my senior quote in highschool
I mean free is great
also , i wanted to dwell a bit into machine learning later , but i feel the math will be a major hinderence
i dont think so
well they don't teach us that till maybe grade 11
Well that really depends. If you want a PhD in ML then definitely you’re gonna have to work on the math. But you don’t really need a lot of math to get your first model running.
D. new_list = [3, 4, 5, 6]
for i in range(len(new_list)):
if new_list[i] % 2 == 0:
new_list[i] = 'even'
else:
new_list[i] = 'odd'
print(new_list)
my_list = [['hey', 'hello', 'hi'], 'good morning']
new_list = [i + '!' for i in my_list[0]]
!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.
my_list = [[10, 10], [100, 100], [500, 500, 1000]]
for val in my_list:
new_list = [i for i in val if i>10]
!e
!eval [code]
Can also use: e
*Run Python code and get the results.
This command supports multiple lines of code, including code wrapped inside a formatted code block. Code can be re-evaluated by editing the original message within 10 seconds and clicking the reaction that subsequently appears.
We've done our best to make this sandboxed, but do let us know if you manage to find an issue with it!*
!eval my_list = [[10, 10], [100, 100], [500, 500, 1000]]
for val in my_list:
new_list = [i for i in val if i>10]
@umbral terrace :warning: Your eval job has completed with return code 0.
[No output]
D. [100, 100, 500, 500, 1000]
- Which branch structure is necessary if a program needs to output "Yes" if a variable's value is positive, or "No" otherwise?
A. if
B. else
C. if-else
D. if-elseif-else
- What is the value of x after the following code is executed? x = 7
If x < 7
x = x + 1
x = x + 2
A. 7
B. 8
C. 9
D. 10
'''py x = 17
if x * 2 <= 34:
x = 0
else:
x = x + 1
x = x + 1 '''
A. 1
B. 18
C. 19
D. 35
!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.
x = 17
if x * 2 <= 34:
x = 0
else:
x = x + 1
x = x + 1
This looks like a multiple choice test
Its a practice exam
Nah thats all good
- What is the output when the following code is executed?
score = 65
group = ''
if score <= 60:
group = group + 'A'
if score <= 70:
group = group + 'B'
if score <= 80:
group = group + 'C'
else:
group = group + 'D'
print(group)
A. C
B. D
C. AB
D. BC
'''py
score = 65
group = ''
if score <= 60:
group = group + 'A'
if score <= 70:
group = group + 'B'
if score <= 80:
group = group + 'C'
else:
group = group + 'D'
print(group)
Which do you think?
I think its B @rugged root
Step through the if's one at a time
if score <= 60: Would that be true or false
Right
However, whenever you have if statements one after another, they all get checked
It's only when you have an if/elif/else chain that it can go to different parts of the chain
So the first 3 checks always happen
Regardless of whether or not they end up being false
@woeful salmon why does it say youre name with 'jolly' after it in furyo's project?🤣
that is my last name 🙂
Hey why is Jake no longer helper?
def get_stats(int_list):
result_sum = 0
result_min = int_list[0]
result_max = int_list[0]
for value in int_lits:
result_sum += value
if value < result_min:
result_min = value
if value > reslut_max:
result_max = value
return result_sum, result_min, result_max
values = [ 6, 4, 12, 8 ]
XXX
print('{}, {}, {}'.format(a, b, c))
A. a, b, c = get_stats(values)
B. c = get_stats(values)
a = get_stats(value)
b = get_stats(value)
C. result_min, result_max, result_sum = get_stats(values) D. c, a, b = get_stats(values)
def get_stats(int_list):
result_sum = 0
result_min = int_list[0]
result_max = int_list[0]
for value in int_lits:
result_sum += value
if value < result_min:
result_min = value
if value > reslut_max:
result_max = value
return result_sum, result_min, result_max
values = [ 6, 4, 12, 8 ]
XXX
print('{}, {}, {}'.format(a, b, c))
A. a, b, c = get_stats(values)
B. c = get_stats(values)
a = get_stats(value)
b = get_stats(value)
C. result_min, result_max, result_sum = get_stats(values)
D. c, a, b = get_stats(values)
it is equivalent to
(a, b, c) = (sum, min, max)
Which statement would replace XXX so that the output is: 4, 12, 30?
!e
def foo():
return 1, 2, 3
print(type(foo()))
it returns a tuple of your values and tuples are ordered
you're unpacking those values then using str.format method to insert those values according the the position into the string
@woeful salmon :white_check_mark: Your eval job has completed with return code 0.
<class 'tuple'>
match 1 to 1 in assignment.. 2nd to 2nd.. 3rd to 3rd
!eval
a,b,c=1,2,3
print(b)
@sweet lodge :white_check_mark: Your eval job has completed with return code 0.
2
- Which statement assigns the string variable airport_code with the value JFK?
A. airport_code = JFK
B. 'JFK' = airport_code
C. airport_code = 'JFK'
D. JFK = 'airport_code'
!eval airport_code = JFK
@sweet lodge :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 'JFK' is not defined
- Which uses the concat() function to output: red fish blue fish?
def concat(*args):
s = ''
for item in args:
s += ' ' + item
return s
A. print(concat(['red, blue'], 'fish'))
B. print(concat(red), concat(fish), concat(blue), concat(fish))
C. print(concat('red', 'fish', 'blue', 'fish'))
D. print(concat(red, fish, blue, fish))
\
strings are immutable... @umbral terrace so you can't append
And append only add one element... not bunch of elements...
str1="Hello"
str2="World"
print ("String 1:",str1)
print ("String 2:",str2)
str=str1+str2
print("Concatenated two different strings:",str)
!eval
def concat(*args):
s = ''
for item in args:
s += ' ' + item
return s
print(concat('red', 'fish', 'blue', 'fish'))
@sweet lodge :white_check_mark: Your eval job has completed with return code 0.
red fish blue fish
(Also - don't overwrite str)
no... you are overwriting str class
string class
I'm just saying don't overwrite builtins.
But that too
def message1():
print('Message #1')
def message2():
print('Message #2')
message1 = message2
message2 = message1
message1()
message2()
A. Message #1
Message #1
B. Message #1
Message #2
C. Message #2
Message #1
D. Message #2
Message #2
this is A
Are you sure?
sorry D
m1 = m2
m2 = m1 , which is m2, so
m2 = m2
@umbral terrace let me save you couple of months... same thing happened to me...
when we say x = y... assign y to x
math = is "=="
x = x+1 don't make sense in math, does it...
Soo...
>>> def message1(): ...
>>> def message2(): ...
>>> id(message1)
2048717472816
>>> id(message2)
2048717472384
>>> message2 = message1
>>> id(message1)
2048717472816
>>> id(message2)
2048717472816
Setting variables equal to each other does not give copy the value
It makes the two names point to the same item in memory
- Which statement is true about the *args and **kwargs special arguments?
A. Any single function definition can only define *args or **kwards, but never both.
B. Both may be used in a single function call, but *args must appear before **kwargs in the argument list
C. Both may be used in a single function definition, but **kwargs must appear before *args in the argument list.
D. Both may be used in a single function definition, and *args and **kwargs may appear in any order in the argument list.
def add(B):
for i in range(len(B)):
B[i] += 1
return B
A = [ 1, 2, 3]
X = add(B)
print(A)
@umbral terrace what will be the output of this
!eval
def func(**kwargs, *args):
...
func(number=21)
@sweet lodge :x: Your eval job has completed with return code 1.
001 | File "<string>", line 1
002 | def func(**kwargs, *args):
003 | ^
004 | SyntaxError: invalid syntax
In this article, we will learn about Python *args and **kwargs ,their uses and functions with examples.
args
Arrrrgs
!eval
def func(number1=1, 2)
...
@sweet lodge :x: Your eval job has completed with return code 1.
001 | File "<string>", line 1
002 | def func(number1=1, 2)
003 | ^
004 | SyntaxError: invalid syntax
@inner island Two things. First, would you mind changing your nickname to not use invisible characters? See the #rules channel for our nickname policy. And with regards to speaking, check out the #voice-verification channel. That'll tell you what you need to know about the voice gate
!e
def print_something(*args, **kwargs):
if 'no' in args:
print('go away')
print(*args, **kwargs)
print_something('a', 'b', 2, sep=" - ")
print_something('no', end='haha')
@quasi condor :white_check_mark: Your eval job has completed with return code 0.
a - b - 2
!docs print
print(*objects, sep=' ', end='\n', file=sys.stdout, flush=False)```
Print *objects* to the text stream *file*, separated by *sep* and followed by *end*. *sep*, *end*, *file*, and *flush*, if present, must be given as keyword arguments.
All non-keyword arguments are converted to strings like [`str()`](https://docs.python.org/3/library/stdtypes.html#str "str") does and written to the stream, separated by *sep* and followed by *end*. Both *sep* and *end* must be strings; they can also be `None`, which means to use the default values. If no *objects* are given, [`print()`](https://docs.python.org/3/library/functions.html#print "print") will just write *end*.
The *file* argument must be an object with a `write(string)` method; if it is not present or `None`, [`sys.stdout`](https://docs.python.org/3/library/sys.html#sys.stdout "sys.stdout") will be used. Since printed arguments are converted to text strings, [`print()`](https://docs.python.org/3/library/functions.html#print "print") cannot be used with binary mode file objects. For these, use `file.write(...)` instead.
!e
def print_something(*args, **kwargs):
if 'no' in args:
print('go away')
print(*args, **kwargs)
print_something('a', 'b', 2, sep=" - ")
@quasi condor :white_check_mark: Your eval job has completed with return code 0.
a - b - 2
This is actually pretty neat: https://www.programiz.com/python-programming/args-and-kwargs
I really like the way this breaks it down
In this article, we will learn about Python *args and **kwargs ,their uses and functions with examples.
Don't worry about memorizing... if you use it regularly, your brain will remember them...
Which statement causes the face with 'x' characters for eyes to be printed?
def x_eyes():
print('x x')
def o_eyes():
print('o o')
def face(eyes):
eyes()
print(' > ')
print('----')
A. face(x_eyes())
B. face(x_eyes)
C. x_eyes()
face()
D. face('x')
def x_eyes():
print('x x')
def o_eyes():
print('o o')
def face(eyes):
eyes()
print(' > ')
print('----')
A. face(x_eyes())
B. face(x_eyes)
C. x_eyes()
face()
D. face('x')
B
when you use (), it will call the function
x_eyes is a variable name... you pass names to the function...
where as () call the function...
- Which of the following statements has a syntax error? Assume age and years are variables that have already been defined.
A. age = years - 2
B. age + 2 = years
C. age = 17 - 2
D. age = -15
its a
Why do you think it is A
tell the reason
Okay what about B?
So what is a syntax error?
You just told
!eval age + 2 = years
They are asking, which is syntax error...
I am taking the CS50 class by havard online it's fun 😊
How come I cannot talky in voice chat ?
.
- What is the output?
def find_sqr(a):
t = a * a
return t
You've never seen sqr because there is no such thing
def find_sqr(a):
t = a * a
return t
square = find_sqr(10)
print(square)
A. 0
B. 10
C. 100
D. (Nothing is output)
30. Function calc_sum(
yep 100
you can do it a = a*a
didjn't get you
function are exactly like math functions... they take input and give output
almost*
anecdote
- Which of the following types of constructs can be called to stop program execution?
A. Use a pass statement
B. Raise NotImplementedError
C. Print a "FIXME" message and return -1
D. return None @signal sand
@rugged root
is it A
- Which X and Y cause the program to print the final velocity in feet per second? Note that the distance and initial_velocity are given using meters instead of feet.
def final_velocity(initial_velocity, distance, time):
return 2 * distance / time - initial_velocity
def meters_to_feet(distance_in_meters):
return 3.28084 * distance_in_meters
display final velocity in feet per second
t = 35 # seconds
d = 7.2 # meters
v_i = 4.6 # meters / second
print('Final velocity: {:f} feet/s'.format(final_velocity(X, Y)))
A. X = meters_to_feet(v_i), Y = meters_to_feet(d)
B. X = v_i, Y = meters_to_feet(d)
C. X = meters_to_feet(v_i), Y = d
D. X = v_i, Y = d
!e
print(2+2*5)
@quasi condor :white_check_mark: Your eval job has completed with return code 0.
12
@rugged root lua supports both of these
print("hello")
print"hello"
also i shall go a few games and then sleep now gn
nim is on another level
echo "hello"
echo("hello")
"hello".echo()
hi Cena
Bonjour coffee
@zenith radish
https://www.reddit.com/r/JusticeServed/comments/tb1x6m/lithuania_changed_name_of_the_street_where/
hi
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
oh ok wait a sec
so I gotta be more active right?
seems alright..
i was wondering are you guys on codeforces ?
XD
I'll have to go..byee
Yee saw that, it's dank
Hayyyy
@blissful vine here
& : The term 'F:/Rudra/Python69/python.exe' is not recognized as the name of a cmdlet, function, script
file, or operable program. Check the spelling of the name, or if a path was included, verify that the
path is correct and try again.
At line:1 char:3
+ & F:/Rudra/Python69/python.exe "f:/Rudra/Carbon bot discprd/Main2.py"
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (F:/Rudra/Python69/python.exe:String) [], CommandNotFoundEx
ception
+ FullyQualifiedErrorId : CommandNotFoundException
birth_year = input('what year were you born?')
year = (1960)
🤣 @somber heath i'm yellow now btw
Ayyy you earned enough helper coins
goodmorning 🙂
hellooo
(map! :leader
"r" #'+hydra/window-nav/body
)
2 days
yes
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
;; Discord
(require 'elcord)
(elcord-mode)
(setq elcord-editor-icon 'emacs_material_icon)
I guess I need to make some chats
\n
» floats
» foo
» sql-fstring
» faq
» string-formatting
» f-strings
» functions-are-objects
» local-file
» for-else
a gig of code
The lithium iron phosphate battery (LiFePO4 battery) or LFP battery (lithium ferrophosphate) is a type of lithium-ion battery using lithium iron phosphate (LiFePO4) as the cathode material, and a graphitic carbon electrode with a metallic backing as the anode. The energy density of an LFP battery is lower than that of other common lithium ion ...
Lifepo4 A123 18650 Apr18650m1a 1100mah 3.3v Rechargeable Battery - Buy 3.3v Rechargeable Battery,Lifepo4 3.3v Rechargeable Battery,Lifepo4 Rechargeable Battery Product on Alibaba.com
CHILD
Why Rust Batteries May Be the Future of Energy - Iron Air Battery Technology. Go to http://brilliant.org/Undecided to sign up for free. And also, the first 200 people will get 20% off their annual premium membership. While renewable energy sources like solar and wind have now become cheaper than fossil fuels, developing long-term energy storage ...
food break brb 🙂
Those Blue ones are super dangerous i accidentally shorted one and it blasted in-front of me 🥲
*they are super dangerous if you short them
Answer (1 of 6): There are two voltages you have to think about. First is the voltage the charger uses this is almost always 4.2V.
The other is the voltage the battery will rest at after you take it off the charger. as soon as you take it off the charger the voltage will drop until it settles at...
emacs users be like
what's up man
D: i got called for help by friend to deploy his website right after my food break and now everyone's gone
https://youtu.be/1eaxfKvPyQA it has come to this.
The head of the Russian Space Agency posted a video on social media threatening to abandon U.S. astronaut Mark Vande Hei at the International Space Station.
READ MORE: https://abcn.ws/3pTDOKE
#ABCNews #Russia #MarkVandeHei #ISS #InternationalSpaceStation
I'll be on in a bit
I'm compiling emacs with libgccjit
Been going for 1.5h already
Should be done soon enough
!xkcd 378
.xkcd 378
@woeful salmon
@terse needle @whole rover both of you go compile emacs 29 with libgccjit https://www.emacswiki.org/emacs/GccEmacs
It's not even a joke how much faster it gets
lsp-mode is i n s t a n t
Solid
The find-file command works SO FAST
Do it when I get home
Bless
Already got @woeful salmon on it
Seriously lads this is a gamechanger
Imma go to the store now but seriously this is the best emacs experience I've had over the three years of using it
been on it for a couple of months, it's good
👀 i can't rn since blackout... mobile net is too slow
make a private emacs channel
lol
there's enough of us to make it worth it
once we roll out threads we can have an emacs thread in #editors-ides
Opall
i keep getting disconnected ;-;
brb somethings wrong with my connection
None of us are
ay, leave the hair follicles alone
#Emacs Thread
With native comp?
Yee
Takes mine about 2 hours ish as well
@zenith radish https://youtu.be/ba62uuv-5Dc
Rollin' Wild has come to France!
Share, if you are as excited as we are!
Visit our inflated animals on www.rollinwild.com
Shop:
http://www.rollinwild.com/shop.php
Facebook:
https://www.facebook.com/RollinWild
DIRECTOR: Kyra & Constantin
PRODUCTION COMPANY: Passion Animation Studios
CLIENT: France 3
PODUCTION COMPANY: NMC Productions
...
Ohhhh yeah yeah yeah
sure but i can't vc rn
no worries about that respond when u free, ima just drop the question in there
also the thing i was trying to explain and i couldn't cuz i suck at explaining math
^
Would this be considered Trig?
shi- i can't talk
wo.. what is this? math?
Check out the #voice-verification channel. That'll tell you what you need to know about our voice gate system
Voice Gate failed
You are not currently eligible to use voice inside Python Discord for the following reasons:
• You have sent less than 50 messages.
• You have been active for fewer than 3 ten-minute blocks.
:]
Ah yeah you'll get there. Just hang out, join in on the convos here (if we're in voice chat we're almost always looking at the text channel) or what have you
Gonna head out and work on my bootcamp. Cheers!
yoo 27
😂 😂
The song, "I've Got a Golden Ticket" from the 1971 movie Willy Wonka and the Chocolate Factory.
Film "Willy Wonka & the Chocolate Factory" (1971)
lyrics:
Hold your breath
Make a wish
Count to three
Come with me
And you'll be
In a world of pure imagination
Take a look and you'll see
Into your imagination
We'll begin with a spin
Travelling in the world of my creation
What we'll see will defy explanation
If you want to view paradise
Simply...
try my question instead
Hey @cosmic lark!
You either uploaded a .txt file or entered a message that was too long. Please use our paste bin instead.
oops sad
https://paste.pythondiscord.com/kedoyotipa
the correlation is the first value = second value + third value
supoose i only have the firest value from the last table : 3451769357
and the last value from the first table : 143694565
how can i create the entire output values from those?
News Analysis, Epoch Times, 5 January 2020, Read original news here. Yang Jiechi, China’s top diplomat, recently made several stops in Africa to monitor Chinese interests and bolster bilateral relations on the continent. Yang, the director of the Office of Foreign Affairs and a member of the Chinese Communist Party (CCP) Politburo, also m...
Millennials, also known as Generation Y or Gen Y, are the demographic cohort following Generation X and preceding Generation Z. Researchers and popular media use the early 1980s as starting birth years and the mid-1990s to early 2000s as ending birth years, with the generation typically being defined as people born from 1981 to 1996. Most millen...
Still annoyed that we didn't get to be "Generation Y-bother"
Be the change you want to see in the world
You campaign for Weasel
What's the point in that?
Because it's a hill worth dying on
And generational names aren't?
You're naming an entire generation
Seems like we should be putting some more thought into it
Sure but Weasel is an open field
There hasn't been a word for WSL yet
Just the letters
True
<class 'universe.quantum.super_position'>``` this chat is keeps changing topic too much
On this week's episode of "How much data can Excel hold"
fuck, turns out these were warm ups and there are STILL quizzes
These connections are actually using a standardized API format called ODATA, which is made by Microsoft. ODATA actually includes filters as part of the spec, which I would like to use to limit the amount of data I pull, so that I can keep the file size to slightly less ridiculous, but if I add a filter then Excel crashes.
It's... it's Microsoft's own format...
right before march break
Quizzes right before a break
4
and 3 warm ups
Aren't those called finals?
You don't have a clue about their HR process
“Today as always, men fall into two groups: slaves and free men. Whoever does not have two-thirds of his day for himself, is a slave, whatever he may be: a statesman, a businessman, an official, or a scholar.”
― Friedrich Nietzsche
get the job and work 35 hrs a week rest and vest
Also, GMail is littered with god awful decisions
Rabbit, arn't you in a leadership role?
I've been in tech leadership roles
but never a manager, I'm not useless
What would be, in your opinion, the best metric for finding talent?
or combination of variables that you look for?
Interview for the job, if you are writing backend that is heavy SQL dependent, then test that. If you are writing a front end that interfaces with REST API, do that
People who don't test well can also provide immense value to a company. Not all brains are the same. People who can regurgitate code may not be able to think outside of the box.
We test people on Azure DevOps pipelines as DevOps interview because guess what software we use for CI/CD
So there's nothing in the backlog to look for before you get TO the interview?
we no longer allowed to look at Github profiles for discrimination reason, it's actually been a better change
No, HR does terrible job
but fixing that is too difficult
oh yea, we do have one take home test
loollll. Ok, so if someone gets past HR there's nothing else to filter other than testing in the interview process? I guess I don't know the ratio between applications, to what appears on the manager's desk to who actually gets the interview.
What tech person wants to be in HR
That wasn't the question. XD
120 applications. how many get past HR? How many get to the interview?
Good grades tend to be people who follow the rules, thus why they don't rise to the top
Critical thinking > grades
for one position, we had 47 people apply so far, 1 interview which we rejected post interview
Can someone walk through this leetcode (hackerrank) solution (java). I can get the link to the problem too
public class Solution {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int n = in.nextInt();
int k = in.nextInt();
int[] height = new int[n];
int max = 0;
for(int height_i=0; height_i < n; height_i++){
height[height_i] = in.nextInt();
if ( height[height_i] > max){
max = height[height_i] ;
}
}
if(k >= max){
System.out.println("0");
}
// y
else{
System.out.println(max-k);
}
}
}
that was painful interview
so all 47 applications were shit? Or was it just that 1 person?
python
n,k = input().strip().split(' ')
n,k = [int(n),int(k)]
height = list(map(int, input().strip().split(' ')))
count=0
for i in height:
if i>k:
count+=i-k
k=i
print(count)
I don't know what happened with other 46, I just see numbers
I have Jobvite access that shows me numbers, it doesn't tell why or who
as tech lead, I don't get that access
So companies don't cycle through the others? They just pick 1 out of 46 and if it's not a good fit no one else gets an interview? That's crazy.
just numbers and anyone I interview, what happened
so I don't know why other 46 were rejected, just that they were
Wouldn't it be better if you had full control over the hiring process (within legal params)?
I know why 1 out of 47 was rejected
Since it's YOUR team?
it's not my team, I have no one reporting to me officially in Workday
it's my bosses team
... ok so hypothetically isn't it in your boss's best interest? Or is the company small enough that your Boss is also CEO and doesn't have time to acquire a team?
I feel like your boss, based on what you told me, would be more personally invested in acquisition if the demand is there. What am I missing?
acquisition is hard?
in US, IMO, we have ruined the tech pipeline
but our acquisition isn't because we dont' leetcode
it's just hard in general
My personal vested interest is 1) "Git gud" and 2) Get hired
any tips for getting through this shit pipeline once I complete step 1?
I guess I'm a poor person to argue these points. I'm a hobbyist. These kinds of focuses feel like they take the fun and love out of coding
Coding is not my profession
@rugged root do you know anything about the Pine A64+?
in terms of reliability, compatibility etc
the raspberry pi is unobtainable for the next 9 months
Not a thing, unfortunately
Sorry
that's fine
oops
Was wondering why people were responding to you and I wasn't seeing anything
I was confuzzled
I think I figured out my other beef
It's kind of a similar mentality of dismissing folks who would be picking up trades. These are still incredibly necessary skills that we take for granted
Plumbing, electrical, etc.
Hi everybody
Yo
Programming is hard. Today I probably had the hardest time programming since I started to learn how to program 4 years ago
i have to go
but my advice @cyan stirrup is that there is an easy path and a hard path
But I'm pretty bad at programming in general
Catch you later, brother
if you pass leetcode medium now
and get faang internship or equivalent
you have easy career and lots of leverage to do whatever
would love for you to expand on that
ahhh ok
so go leetcode now. goti t
The fact that you can game it kind of makes it not a great system
and get good at a good company
At least to me
But again, I'm not in the industry, take what I say with a grain of salt
is there a competitor for leetcode I should be aware of?
Or a whole shaker
leetcode aside, learning algorithms and data structures will make you better programmer @rugged root
Depending on what you're doing
If all I'm doing is working on backend Springboot, probably not overly helpful
"better programmer" in general...
you will understand "computers" in a better way... than people who don't
Depending on the language you use, that's not always important
Higher level languages don't typically have to touch it
even in higher level languages you need to know when to use"dictionary or list"
Sorry, I don't speak devops
@rugged root
Low level things.... deal with constant factors of speed...
algorithms don't care about constant factors
Don't they?
That is a constant, though
yeah...
It's a predictable, consistent thing
An algorithm is also a constant consistent thing
n^2 is slower algorithms than 1000000000000000000000 n
I think people can learn by experience that certain things would end up being slower and faster through, well, experience
They can...
But learning algorithms and data structures give a consistent framework..
Algorithms can be looked up
to see... ah.. that's slower... ah that's faster
Data structures come with learning the language and the syntax
Sure sure
I'm saying this
That's true...
I'm more saying that not everyone needs to be a rockstar
We need grunts to get shit done
That's what I am coming from a CIS degree
But I'm talking about this
Right
And I have folks like you to do that for me
You guys make numpy, I just use it
haha
It's a team effort
BTW, my solution was find the first repeating character, I just split the string into arry, made empty array, foreach though the stringarry, tested it against the empty array and if there was match, returned that character, else add to array and moved on
In time/storage complexity analysis you ignore constant factors because as things tend to infinity, the constants have 0 effect. That's not the same as saying constant factors don't matter though.
Hey i have a few problems in python , which i am unable to understand can someone help me
It is like people saying... why learn math... you will not use them in real world... but math teach you problem solving... same this with this... learning algorithms tell you how to solve problems...
PS: This is not about leetcode, it is about college algorithms and data structures class
My voice isn't verified though
What's got you stuck, Pheno
So i am learning python currently , so its a whole bunch of things conceptually
I know, I'm reading it, Char
@rugged root
@molten pewter want to try out observablehq in 20m?
Patience child
Okay, so maybe I'm not understanding the data structures part
What specifically are we referring to
YES. yes I do.
I think I've never understood that they mean about data structures. Is it data types? Is it forming data classes, is it the structure and types and what have you of arbitrary data you're getting?
@rugged root I've got 437 days and roughly 10 hours a week to learn how to be useful in a devOp's / DevSecOps team. I haven't been coding since I was 11, I'm very new with only 9 months of university theory. I feel like I don't have time to learn via "trial by fire". I'm looking for the fastest roadmap to becoming a productive team member - tradesman route type curriculum.
If anyone has recommendations - I'm scrambling.
I started coding when I was in college
@dark sable Just try explaining or showing code snippits of what you're needing help understanding
ld: cannot find crtbeginS.o: No such file or directory
ld: cannot find -lgcc
ld: cannot find -lgcc
libgccjit.so: error: error invoking gcc driver
NULL result⏎
Its not just a specific question , i wanted to identify the mistake in the logic i use when interpreting
Linux Mint ?

Hmmm....
Is there not a prompt you're trying to do to kind of give an example of what you'd want to step through?
Wow Hemlock, that sentence was so poorly phrased
I'm looking for advice on how to workflow a large project
there is but i wanted to discuss it , i hope ill get verified by tommrow
like as i share so i can explain my logic better
Hmm. Give me like.... 5 minutes and I can drag you down to code/help voice and we can discuss it
I can take the mute off temprorarily
Just have to do some stuff around the office real quick
thanks !!
@dark sable wubba lubba dub dub
Observable Plot is a free, open-source JavaScript library to help you quickly visualize tabular data. It has a concise and (hopefully) memorable API to foster fluency — and plenty of examples to learn from and copy-paste. In the spirit of show don’t tell, below is a scatterplot of the height and weight of Olympic athletes (sourced from Matt Rigg...
This notebook was created as a learning exercise to teach myself about color theory. I have interleaved some lightly altered prose from a variety of sources which I found informative, which I have made a best attempt to cite in the References section at the end of the notebook. I would like to extend my thanks to the cited authors for their work...
@terse needle https://github.com/void-linux/void-packages/pull/28785
Package Name GCCemacs (http://akrl.sdf.org/gccemacs.html) Linux-related link https://www.emacswiki.org/emacs/GccEmacs http://akrl.sdf.org/gccemacs.html#org248e6b1 http://akrl.sdf.org/gccemacs.html#...
This notebook was created as a learning exercise to teach myself about color theory. I have interleaved some lightly altered prose from a variety of sources which I found informative, which I have made a best attempt to cite in the References section at the end of the notebook. I would like to extend my thanks to the cited authors for their work...
Did someone say Excel?
configure: error: The installed libgccjit failed to compile and run a test program using
the libgccjit library; see config.log for the details of the failure.
The test program can be found here:
<https://gcc.gnu.org/onlinedocs/jit/intro/tutorial01.html>.
You can try compiling it yourself to investigate the issues.
Please report the issue to your distribution if libgccjit was installed
through that.
You can find the instructions on how to compile and install libgccjit from
source on this site:
<https://gcc.gnu.org/wiki/JIT>.
Wasn't Microsoft involved in a class action lawsuit due to this behavoir?
@rugged root - So.....
My idiot vendor shipped me a computer with their software preinstalled that breaks if I join the computer to my AD.
My idiot employee pressed "yes, please update me to Windows 11" after being told not to multiple times.
This software will break under Windows 11.
I can't join the computer to the domain, so I can't block the update through Group Policy.
Are there any ways left to block Windows Update for non domain joined computers? Last I heard Microsoft blocked all of the bypasses to force updates
!stream 152515077512232960 1h
✅ @quasi condor can now stream until <t:1647024793:f>.
@terse needle recompile libgccjit
mkdir build
mkdir install
PREFIX=$(pwd)/install
cd build
../src/configure \
--enable-host-shared \
--enable-languages=jit,c++ \
--disable-bootstrap \
--enable-checking=release \
--prefix=$PREFIX
nice make -j4 # altering the "4" to however many cores you have
Sure but they figure no one cares anymore
GitHub apparently doesn't know what to put when you request a review from a team you're on
I have one of these
@rugged root can you please help
What with
Aah yes I need help
Hey
My code is ok but not fitting in back code
import re
import string
separators = string.punctuation+string.digits+string.whitespace
excluded = string.ascii_letters
word = "badword"
formatted_word = f"[{separators}]*".join(list(word))
regex_true = re.compile(fr"{formatted_word}", re.IGNORECASE)
regex_false = re.compile(fr"([{excluded}]+{word})|({word}[{excluded}]+)", re.IGNORECASE)
profane = False
if regex_true.search(message.content) is not None\
and regex_false.search(message.content) is None:
profane = True
This is my code
Ik it has no error
But i can't fit in my previous code
I didn't get you 😳 your English is very very good
Fitting means
Like I can't put my code
Inside another code
Yeah
Right
I needs to share screen but i can't
Wait I will paste my another code
!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.
--sysroot=/home/lz/olimex/gcc-4.3.3/
😕
Hey @blissful vine! I noticed you posted a seemingly valid Discord API token in your message and have removed your message. This means that your token has been compromised. Please change your token immediately at: https://discordapp.com/developers/applications/me
Feel free to re-post it with the token removed. If you believe this was a mistake, please let us know!
Ohh oops sorry I need not to copy token
I am going to refresh
Hey guys can i ask a general question
@rugged root this is my previous code i need to put another code in this code
gcc-10.2.1pre1_3
Ohh sorry I have to go to sleep it's 4 AM here
Hi, can you also avoid sharing bot invite links?
Aah ok sorry sir I didn't Focus on that I promise I will not do that again
@rugged root
Python being simple and easy language to learn; but sometime thinking it as simple we make our own assumption of the working of code neglecting the depth of the functionality so how can this depth be covered or this might be better to think of when we strike at that problem?
.
I wrote this with my philosophical mind i hope u get it right
You do make a valid point. Because it's easy to pick up, people typically think of it as a stepping stone language. Much like how BASIC was back in the old days. However Python is indeed a powerful tool. May not always be the fastest for certain things, but what it lacks in runtime speed (again, can lack; it doesn't always) it makes up for with how fast you can develop a program. That's partly due to the language itself and the ecosystem that has evolved around it. Odds are good that if you need to do something, someone has made a library to make that task easier
Official HD video for Vindaloo by Fat Les.
This UK No. 2 hit single is probably the most popular England Football Anthem ever. Watch out for Paul Kaye, Keith Allen, Alex James, Damien Hirst, Eddie Tudor-Pole, Matt Lucas, David Walliams and a young Lily Allen in the video. The song was the unofficial England song for the 1998 World Cup in Fran...
Books like "Fluent Python" go deeper into the Python internals and tools. There's plenty of resources on how the built in libraries have a lot of power that can be leveraged. Not to mention discussions about how Python is often used as a solid wrapper language, being able to leverage compiled C for speed. numpy for example is compiled C
@copper shard https://pypi.org/project/rich/
ayyyy rich is awesome been using it for a while now!
A collection of common interactive command line user interfaces, based on Inquirer.js (https://github.com/SBoudrias/Inquirer.js/) - GitHub - magmax/python-inquirer: A collection of common interacti...
Sounds like the name of a newspaper
its a library
that lets you make a terminal selection menu thing
like he was saying
Oh sick
@vivid palm you stopped following me on spotify 🥲
@terse needle get good spotifiifify
what? i never followed you
lolol
maybe I just don't understand the friend activity section
"I bless your computer my child" - Saint Ignucious
"vi vi vi... the editor of the beast..." - Saint Ignucious
Richard Stallman talks about Emacs and Vi during his speech "A Free Digital Society" in Modena, Italy on November 24th, 2014. More info here: https://stallman.org/saint.html
gaben?
gaben?
gaben?
gaben?
oh does that mean you're following me?
yup, James Butcher
I have no idea how that thing works
you were on my friend activity for a bit and I was convinced you both had to be friends but maybe not
https://github.com/sublime-emacs/sublemacspro @rugged root
This actually hurts me
🤮


🤔 i'm personally slowly starting to just shift more and more towards tavern / country / sea shanty kinda music
.
no but i would look at it right now if you could tell me how its spelled 😮 @zenith radish
Welcome to the Pack!
I'm a composer from Switzerland who creates Celtic Music, Emotional Music, Relaxing Music, Dark Music, Oriental Music, Fantasy Music, Movie Scores, Metal and many other genres.
I just want to take a minute here to thank all of you who support me and make it possible that I can call composing my profession, it would have neve...
I'm Vindsvept (wĭnd′swĕpt′), welcome to my channel!
I'm an independent musician living in the frozen northern wilderness. I've written and produced every track on this channel, some may contain additional instrumentalists or vocalists, if so, they are credited in the video, description and/or title.
All of my music is licensed under a Attribut...
👀 the first one is nice.. already bookmarked a few vids just from listening a part of it
looking at 2nd one now
ye i like the 1st channel but this one i checked like 5 different vids but it just isn't as nice for me
can i 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'm going to make some jira tickets with clickbait titles.
@uncut meteor https://github.com/python-discord/sir-lancebot/pull/879
hey
imagine one of these buggers chasing you
I imagined too hard and now I burned down my house thanks 😛
Had one of those on the ceiling the other day.
Not sure where it got to.
I wouldn't be able to sleep at night if I lost it
bash
GB
0:00 / 2:03
Demis Hassabis
@somber heath i dont have access to speak
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
india
@stoic juniper good pfp
@somber heath bye bye
korea
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
no authority
did u watch any anime beside naruto
u need to send 50 msg
One Piece
Experience Stalactites, one of Melbourne's longest established and most famous Greek restaurants. Serving our iconic souvlaki and home-style traditional menu 24/7 for over 40 years. Dine-in, takeaway and delivery, we also cater for functions, celebrations, school groups, tour groups and parties.
u are at which arc
well, what is an arc?
its like parts like the whole cake island and wano and arabasta
Story segment. Usually contained in season of a series.
wano
ure in the manga or the anime
okay, got it
in anime
but I haven't seen that for a long time
jolly is from British?
👀
I am going to have lunch, bye guys~
KOK nice to meet my friend
Wheaton's Law: Don't be a dick.
plz*
3
game ing
i gtg... 33333
when i try to call name = input ('name')
i get os.name??
autocomplete issues
???
help??
pliz
that 10??
@hearty echo ??
y
yy
:incoming_envelope: :ok_hand: applied mute to @ebon mist until <t:1647063066:f> (9 minutes and 59 seconds) (reason: burst rule: sent 8 messages in 10s).
hi
hello
why am i unable to unmute
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Is there anything related pagewhich talks about under the hood working of python, or its justread and intepretate like everyone tells about interpreter
Like currently i wanna get feel about that thing
<#channel-id>
<#voice-verification>
<#764802555427029012>
@cunning lake got the feels




