#voice-chat-text-1
1 messages · Page 82 of 1
@short oracle where you go
what where i go?!
hello
19
22
not good
say woomy
16
lol
your voice
damn
voice suppression
17
15
14.5
fucking 15
14.25
14.0000000
14.05
!e
print(int(14.0000000))
@ornate vortex :white_check_mark: Your eval job has completed with return code 0.
14
Keep it like that
man i dont think i started coding till i was like 16 maybe
I like how we are rating voices.
depression comes and goes for me
i associated with boredom
oo look a bemis
haha funny
like a cat
@zinc shoal kitty kitty kitty
no
that wasnt funny
gigi
papa
always wanted to make my own games
thats how i got into coding
hahaha lol
a peeper
@zinc shoal how many programming languages do you know? I know some rust c++ and python
@ornate vortex sounds terrible im allergic too
there are hypoallergenic cats that dont bother the nose
same with our dog
ah shortcuts
but its hard to get viruses on macos ive heard
what books do you read often?
!e print(1.0 + 2.0)
@broken stag :white_check_mark: Your eval job has completed with return code 0.
3.0
hm
wait
what
!e print(float(float(1.0) + float(2.0))
!e print(float(float(1.0) + float(2.0)))
@broken stag :white_check_mark: Your eval job has completed with return code 0.
3.0
class rgb:
def __init__(self,r,g,b):
self.r = r
self.g = g
self.b = b
def toWave(self) -> float:
''' HUE calculation '''
r = self.r/255
g = self.g/255
b = self.b/255
Cmax = max([r,g,b])
Cmin = min([r,g,b])
Delta = Cmax-Cmin
if(Cmax == r):
Hue = 60*((g-b)/Delta % 6)
elif(Cmax == b):
Hue = 60*((b-r)/Delta + 2)
else:
Hue = 60*((r-g)/Delta + 4)
''' HUE map to mavelength '''
return 650 - 250 / 270 * Hue
```
@stuck bluff is similar to the code you got?
Mine was wavelength to rgb.
ah, give me a sec
The first function has bitshifts in it.
I think I got it from a stackoverflow answer.
🤢 Not emojicode
Do you guys not have phones?
!otn a Video helper Griff
:ok_hand: Added 𝖵ideo-helper-𝖦riff to the names list.
!otn l
• 2000-year-old-pasta
• 2223-if-statements
• 24-screenshots-per-second
• 3-spaces-for-indentation
• 307-is-302-but-better
• 4-borat-rock-band
• 404-coffee-not-found
• 5-star-lemon-hotel-server
• 5-weird-ways-to-grow-your-code
• 50-shades-of-lemon
• 6ǃ-is-a-recursion-error
• 7-is-random-number
• 95-shaved-ice-flavors
• a-bit-more-ibsiidis
• a-colonel-of-truth
• a-day-at-the-zoo
!otn s arch
• arch-anonymous
• arch-btw
• i-use-arch-btw
• oligarchical-aspirations
• safesearch-off
!otn s chris
• christmas-in-australia
• christmas-vester
• guidos-christmas-project
• zig-stole-christmas
!mute 126811506632294400
:x: According to my records, this user already has a mute infraction. See infraction #29988.
!unmute 126811506632294400
:incoming_envelope: :ok_hand: pardoned infraction mute for @hallow anchor.
!mute 126811506632294400
:incoming_envelope: :ok_hand: applied mute to @hallow anchor until 2021-03-14 23:56 (59 minutes and 59 seconds).
!warn 165023948638126080 stupid joe
:x: There was an error adding the infraction: status 500.
🧆
you will learn 
!docs random.choice
random.choice(seq)```
Return a random element from the non-empty sequence *seq*. If *seq* is empty, raises [`IndexError`](exceptions.html#IndexError "IndexError").
!e
>>> import random
>>> random.choice(["cool", "story", "bro"])
... cool
@charred creek :white_check_mark: Your eval job has completed with return code 0.
cool
!e ```py
import random
print(random.choice(['python', 'python', 'python']))
@hallow anchor :white_check_mark: Your eval job has completed with return code 0.
python
Oh will you look at that
Python it is! 
!e
from itertools import repeat
import random
print(random.choice(repeat('python')))
@charred creek :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 3, in <module>
003 | File "/usr/local/lib/python3.9/random.py", line 347, in choice
004 | return seq[self._randbelow(len(seq))]
005 | TypeError: object of type 'itertools.repeat' has no len()

@raw wren
two call methods
one provides up-to-date results
one provides cached results
yet I am not caching
c o n f u s i o n i n t e n s i f i e s
:incoming_envelope: :ok_hand: pardoned infraction mute for @hallow anchor.
@hallow anchor :white_check_mark: Your eval job has completed with return code 0.
'lаundmо'
.fo
Form of a frozen jack of water!
Form of a bucket of water!
.fo
Form of a very small crane of ice!
.src f
Your input was invalid: Unable to convert f to valid command or Cog.
Usage:
.source [source_item]
.src fo
sir-lancebot#617
good night
friendship ended with @raven orbit
!user

Created: 5 years, 2 months and 26 days ago
Profile: @hallow anchor
ID: 126811506632294400
Joined: 6 months, 15 days and 11 hours ago
Roles: <@&542431903886606399>, <@&764802720779337729>, <@&295488872404484098>, <@&267630620367257601>, <@&267629731250176001>, <@&815701647526330398>
Total: 13
Active: 0
oh no
!e ```py
i=0
while i<100:i+=1;print('FizzBuzz'[i%~2&4:12&8+i%~4]or i)
@hallow anchor :white_check_mark: Your eval job has completed with return code 0.
001 | 1
002 | 2
003 | Fizz
004 | 4
005 | Buzz
006 | Fizz
007 | 7
008 | 8
009 | Fizz
010 | Buzz
011 | 11
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/iqaciduniv.txt
!e ```python
"""This is a simple test that plays fizz buzz."""
for number in range(1, 101):
if number % 3 == 0 and number % 5 == 0:
print("Fizz Buzz!!!")
elif number % 3 == 0:
print("Fizz")
elif number % 5 == 0:
print("Buzz")
else:
print(number)
@merry mica :white_check_mark: Your eval job has completed with return code 0.
001 | 1
002 | 2
003 | Fizz
004 | 4
005 | Buzz
006 | Fizz
007 | 7
008 | 8
009 | Fizz
010 | Buzz
011 | 11
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/ohedegecah.txt
nvm
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!voice
!tag
» repl
» return
» round
» scope
» seek
» self
» star-imports
» traceback
» voice-verification
» windows-path
» with
» xy-problem
» ytdl
» zip
!t voice-verification
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!t voice-verification
!t voice-verification
!t
» args-kwargs
» class
» classmethod
» codeblock
» comparison
» customcooldown
» decorators
» defaultdict
» dict-get
» dictcomps
» empty-json
» enumerate
» environments
» except
» exit()
!voiceverify
This is why they say huskies are stubborn. They're very smart but they have low motivation to please their owners. Zeus loves playing in the water in the bathtub and wanted the water turned on. However it was time for his walk and he was just being stubborn because he wanted to play in the water.
For licensing, please email licensing@rumble.com...
what projects have yall done?
what if i use python to spam this discord lol
then you will be banned
dang
no way to study
they interview off concept
lol
yall saw the dount code?
u smart bro
import time
import re
def has_shiny(bag):
return "shiny gold" in formulas[bag] or any(map(has_shiny, formulas[bag]))
def count(bag):
return 1 + sum(n * count(inner) for inner, n in formulas[bag].items())
def part1():
return sum(map(has_shiny, formulas))
def part2():
return count("shiny gold") - 1
with open('2020/inputs/day7.txt') as f:
bags = re.findall(r"([a-z]+ [a-z]+) bags contain (.+)", f.read())
formula = re.compile(r"(\d+) ([a-z]+ [a-z]+) bag")
formulas = {bag: {inner: int(n) for n, inner in formula.findall(contents)} for bag, contents in bags}
part1_total = part1()
part2_total = part2()
print(f'Answers:\nPart 1: {part1_total}')
print(f'Part 2: {part2_total}')
lol did yall do the google online interview? i did and failed it
<insert smart ai code>
lol
c plus plus better
yeah
flappy birds
i learnerd eveything off codeacademy is there any better advanvced sites?
nice
What's going on over here?
c pp compiler
yeah it is
yeah
tf keras
tensorflow
see you
im leaving too night guys
@iron jungle sometimes its like this
@iron jungle C# is a good language and its well structured
could anybody please help me in channel help-bread?
@iron jungle
so its personal but i think its easier
it may be cause it was my first language to learn but i feel better with python
whats with rust that everyone is talking about ??
pounds1 = 7
ounces1 = 8
pounds2 = 9
ounces2 = 11
final_ounces = ounces1 + ounces2
final_pounds = pounds1 + pounds2
if final_ounces >= 16:
added_pounds = final_ounces // 16
final_ounces = final_ounces % 16
final_pounds += added_pounds
print(f"Your total is {final_pounds} pounds and {final_ounces} ounces") and got Your total is 17 pounds and 3 ounces, however i need to get 7 pounds and 8 ounces
added to
9 pounds and 11 ounces
is equal to
17 pounds and 3 ounce. and 3 pounds and 4 ounces
added to
5 pounds and 6 ounces
is equal to
8 pounds and 10 ounces
[11:46 PM]
how do i fix it? :((
freaking children 😄
def dataCollector(msg):
lst = msg.splitlines()
coin = lst[0]
lst.pop(0)
print(lst)
for el in lst:
el.replace('*','')
msg = ": "
msg = msg.join(lst)
lst = msg.split(': ')
why that isnt woking for my
its not removing the *
your changing the string but not adding that change to the list
for el in lst:
el = el.replace('*','')
ty
np
@random minnow still nothing happens
this does not work, because el is a reference to the element in lst, but not the actual element
you could do
lst = [el.replace('*','') for el in lst]
ty KJ
but writing el in lst, what is el? thats y i dont get it
its the same as doing this:
but y that is not woking...
i get the solution u sent last
its make sense
tmp = []
for el in lst:
tmp.append(el.replace('*',''))
lst = tmp
oh thats not working because your editing the list but not the actual variable, as pasta man said "this does not work, becauseel is a reference to the element in lst, but not the actual element"
because el is a reference to the element in lst, but not the actual element"... Can you explain sorry for my bad english..
come to voice chat 1
@sudden stump here is smth:
whaaaatt ?
nahhh, not rly
@sudden stump this where i have used regex for the first and last time: https://github.com/JagTheFriend/PythonToPseudocode
C:\Users\{USER_NAME}\AppData\Local\Programs\Python\Python37\Scripts>pip --version
python --version
python3 --version
c:\users\{your user}\appdata\local\programs\python\
I am not able to speak at that voice chat
where griff is
I know how to solve the problem @south sluice is having
c:\users\{your user}\appdata\local\programs\python\python39
python get-pip.py
pip list
@charred creek we werent leaving you dont worry
@raw wren ik, i'm gonna sleep
look how nice this is
fn warn_the_sheep(queue: &[&str]) -> String {
let wolf_pos: usize = queue.iter().position(|element| element == &"wolf").unwrap();
return match wolf_pos {
_ if wolf_pos + 1 == queue.len() => "Pls go away and stop eating my sheep".to_string(),
_ => format!("Oi! Sheep number {}! You are about to be eaten by a wolf!",
queue.len() - (wolf_pos + 1))
}
}```
d
!charinfo Chrisjowl
\u0043 : LATIN CAPITAL LETTER C - C
\u0068 : LATIN SMALL LETTER H - h
\u0072 : LATIN SMALL LETTER R - r
\u0069 : LATIN SMALL LETTER I - i
\u0073 : LATIN SMALL LETTER S - s
\u006a : LATIN SMALL LETTER J - j
\u006f : LATIN SMALL LETTER O - o
\u0077 : LATIN SMALL LETTER W - w
\u006c : LATIN SMALL LETTER L - l
\u0043\u0068\u0072\u0069\u0073\u006a\u006f\u0077\u006c
You would have got me
if it weren't for the others 😄
I'm pretty gullible tbh 
Yep
JK
whoa how did jake's intellij load so fast
Jake, check out https://exercism.io/tracks/rust
ssd
Bit of advice for teachers: don't tell your students you have no idea what you're doing 😄
i guess "a" and "aaaaaaaa" are anagrams
Jake, is there something you can do to two words to make them equal only if they are anagrams?
!eval ```py
for i in range(10):
...
print(i)
@hearty heath :white_check_mark: Your eval job has completed with return code 0.
9
I'm pretty sure that was Kristen Schaal
hi @final folio 👋
hey what's up
memory manipulation
yes, he is
haha
no, he cares
he enjoys it
like 99% useless
closer to 100%
if you're not doing system programming
there're jobs out there that pay quite a lot
better than big X
Honestly, a large part of it is learning how to quickly comprehend the questions.
yes
They're also kind of test-wise
convert to sets and subtract
don't just give out the answer 😄
Actually, there's a little bit more to it than this...
If you look closely at the test cases.
lol he's right
hmm
haha
[1, 1, 3] and [3] would return [1, 1] right?
correct
@hearty heath Not much more than that tbh
@proud rampart
ooo ok sorry, guess you just have to do it the old fashioned way
although, sets could be beneficial for this problem
Right data structure selection though 👍
numpy?!
asktelling
in
@hearty heath were you thinking of a set difference + a list comp using IN?

i see you tmrw baiiiiiiiiiiiiiiiii
!e
l = [1, 2, 3, 4]
for i in l:
l.remove(i)
print(l)
@lime grove :white_check_mark: Your eval job has completed with return code 0.
[2, 4]
!zip @raw wren
The zip function allows you to iterate through multiple iterables simultaneously. It joins the iterables together, almost like a zipper, so that each new element is a tuple with one element from each iterable.
letters = 'abc'
numbers = [1, 2, 3]
# zip(letters, numbers) --> [('a', 1), ('b', 2), ('c', 3)]
for letter, number in zip(letters, numbers):
print(letter, number)
The zip() iterator is exhausted after the length of the shortest iterable is exceeded. If you would like to retain the other values, consider using itertools.zip_longest.
For more information on zip, please refer to the official documentation.
Maybe it's best to figure it out with pen and paper first?
I agree with SPM
Also, what petri is getting as is that modifying a list while iterating over it can cause some unexpected behaviour.
Can we just make sure that you understand the question?
Like, if we give you some example inputs, can you predict what the output should be?
Just tell him to stick to append
give him the building blocks and let him piece it together
If py a = [1, 2, 3, 4, 1, 2, 3, 4] and ```py
b = [1, 2]
try to only use list.append()
I mean, putting the code aside for the moment, can you figure out the result by hand?
>>> for value in [1,2,3],[0,1,2]:
... print(value)
[1, 2, 3]
[0, 1, 2]
I feel like we're going to have a too-many-cooks situation here 😄
you can do a new list
.remove()?
yep, that'd be easier for him
get want you want and return
it's hacky time
def array_diff(a,b):
def raw_array_diff(a,b):
for value in a:
if value not in b:
yield value
return [*raw_array_diff(a,b)]
array_diff :: Eq a => [a] -> [a] -> [a]
array_diff a b = filter (\x -> notElem x b) a
def array_diff(a,b):
return list(filter(lambda x: x not in b, a))
🤢
Hey Fisher
@autumn raft
codegolf it
please don't give out unspoilered solutions 😄
alright
at least spoiler it
||Won't this rebuild the set for each element?||
array_diff=lambda a, b:[d for d in a if d not in b]
hope cpython optimizes it into a constant :P @hearty heath
which i think it will
time to dis.dis 😔
why cant you spoiler code blocks?
no idea
Don't count on cpython to optimise anything 😄
probably
oh come on
lol the lack of spoilered code blocks was kind of problematic for advent of code
2 0 BUILD_LIST 0
2 LOAD_FAST 0 (.0)
>> 4 FOR_ITER 20 (to 26)
6 STORE_FAST 1 (e)
8 LOAD_FAST 1 (e)
10 LOAD_GLOBAL 0 (set)
12 LOAD_GLOBAL 1 (b)
14 CALL_FUNCTION 1
16 COMPARE_OP 7 (not in)
18 POP_JUMP_IF_FALSE 4
20 LOAD_FAST 1 (e)
22 LIST_APPEND 2
24 JUMP_ABSOLUTE 4
>> 26 RETURN_VALUE
so yeah, constant :)
yep
@hearty heath :) cpython did something!
Hmm, I'm not expert at reading byte code, but I think this is inside the for loop: ```
10 LOAD_GLOBAL 0 (set)
12 LOAD_GLOBAL 1 (b)
14 CALL_FUNCTION 1
yes
shh
anonymously
or define set(b) before the listcomp
not sure
or rather, assign it to a variable
plot twist he's just teasing us
syntactically yes
True one-liner: ||(lambda yset: [x for x in xs if x not in yset])(set(ys))||
😔
array_diff($a, $b)
Take an example input and run through it mentally
and then turn that into code
there is a pattern
ok i'm heading out 👋
Use this site, and he can step through the code http://pythontutor.com/live.html#mode=edit
@shrewd star can you turn on PTT?
not really im on browser
This tutorial provides brief information on all keywords used in Python.
Please have him run it in the visualizer
it will help him a lot
its really helpful
just concentrate of line 4, you got this!
i have no idea what to change it to lol
I cant it doesnt work like that
The guys can help you set it up
@raw wren you wanna go to code help channel so we can finish it?
Sure
we are leaving in a sec
😭
Keep at it Jake, you'll get there eventually!
Learning to program is hard because programming feels different than other skills. But programming isn't about the languages - it is about the way one should think.
SPEAKER:
Andy Harris
Interested in the stock market? Love trading? I developed my own Market Model which provides BUY and SELL signals on S&P500. Check it out here: https://...
!eval ```py
print('one two three'.split())
@hearty heath :white_check_mark: Your eval job has completed with return code 0.
['one', 'two', 'three']
@raw wren "past solutions"
¯_(ツ)_/¯
Tbh, I think the zero case should be undefined.
Like, how can you extrapolate from zero minutes of data 🤔
¯_(ツ)_/¯
(╯°□°)╯︵ ┻━┻
!or @raw wren
When checking if something is equal to one thing or another, you might think that this is possible:
if favorite_fruit == 'grapefruit' or 'lemon':
print("That's a weird favorite fruit to have.")
While this makes sense in English, it may not behave the way you would expect. In Python, you should have complete instructions on both sides of the logical operator.
So, if you want to check if something is equal to one thing or another, there are two common ways:
# Like this...
if favorite_fruit == 'grapefruit' or favorite_fruit == 'lemon':
print("That's a weird favorite fruit to have.")
# ...or like this.
if favorite_fruit in ('grapefruit', 'lemon'):
print("That's a weird favorite fruit to have.")
I think try/except is alright.
It's actually the preferred way in python.
Wait, so is smaller harder?
yeah
@warm tendon ||eval|| 😄
😔
looks like stack
@warm tendon Do you want this tokeniser I just wrote? 😄
def tokens(expression):
WS = re.compile(r'\s+')
NUM = re.compile(r'\d+(\.\d*)?')
OP = re.compile(r'[-+*/]')
pos = 0
while pos < len(expression):
if m := WS.match(expression, pos=pos):
pass
elif m := NUM.match(expression, pos=pos):
yield float(m.group())
elif m := OP.match(expression, pos=pos):
yield m.group()
else:
assert False
pos = m.end()
Oh yeah, here was my original solution to that AoC problem: https://github.com/lxnn/advent-of-code-2020/blob/e9d144ad7aecf87e366226f7064a9a9652a1ed54/day-18/p1.py
😔
I came back the next day and replaced it with this: https://github.com/lxnn/advent-of-code-2020/blob/e9d144ad7aecf87e366226f7064a9a9652a1ed54/day-18/p1-alt.py
I didn't get top 100 on any day 
Those people are superhuman 😄
Salt-die has really nice solutions 😄
yeahhhh, salt is also big brain
And Peter Norvig's are something to behold: https://github.com/norvig/pytudes/blob/master/ipynb/Advent-2020.ipynb
I think you’re pretty cool
What is going on, people coming in and out?
They could be join trolling
like when they leave and rejoin really quickly over and over
@autumn raft hey thanks again for the help even though I got a bit frustrated in the end haha
Cya 👋
Cya
no problem haha
#Create a function to combine the values of the important columns into a single string
def get_important_features(data):
important_features = []
for i in range(0, data.shape[0]):
important_features.append(data['Actors'][i]+' '+data['Director'][i]+' '+data['Genre'][i]+' '+data['Title'][i])
return important_features #Create a column to hold the combined strings
df['important_features'] = get_important_features(df)
#Show the data
df.head(3)
This is my code although i am getting below error: Traceback (most recent call last)
<ipython-input-10-50d23e3e0015> in <module>()
1 #Create a column to hold the combined strings
----> 2 df['important_features'] = get_important_features(df)
3
4 #Show the data
5 df.head(3)
3 frames
/usr/local/lib/python3.7/dist-packages/pandas/core/internals/construction.py in sanitize_index(data, index)
746 if len(data) != len(index):
747 raise ValueError(
--> 748 "Length of values "
749 f"({len(data)}) "
750 "does not match length of index "
ValueError: Length of values (1) does not match length of index (1000)
Please help
!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.
supp
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
my bad
can u help me real quick tho?
so i need help me with my code
where do i sent it
!format
so have u ever heard of mutiplicative and additive persitience
i just need my code to loop one more time
supposedly Im not allowed to ask for help to understand homework
last time I ask someone shot me down
oh lol it was HW
what if it has a PDF to understand what to write
if its not a line of code, rather a prompt to follow from a pdf, how can i get help
and whats the command to type code in disc?
ope, wont let me paste a pdf in the discord help servers
are there any other active python discord servers that could help?
Hey @fluid pumice!
It looks like you tried to attach file type(s) that we do not allow (.pdf). We currently allow the following file types: .gif, .jpg, .jpeg, .mov, .mp4, .mpg, .png, .mp3, .wav, .ogg, .webm, .webp, .flac, .m4a.
Feel free to ask in #community-meta if you think this is a mistake.
aight
*directories
"API interface" RAS syndrome
Oh yeah, Sebastian posted a picture 😄
Try nim
One day I will convince someone to use nim...
Similar to Rust I think
laundmo is typing 👀
i think someone in the staff team uses nim

We can have at most 676 members in the gang...
They talking about guns again? @golden marsh 
Nice 😄
So, is this parser for a compilers class frederik?
Oh right cool
I keep a thing of floss on my desk at all times...
Btw: a post-it note works really well as a tooth pick 😄
Bad aerodynamics
Apparently top fuel dragsters go "from standstill to 100 mph (160 km/h) in as little as 0.8 seconds"
Sure, you can use a riding lawnmower to cut grass. But you can also slap on a helmet, put together a pit crew and race. Yes, lawnmower racing is a thing, and it is extraordinary. Think NASCAR or Formula 1—just a bit slower. In England, the British Lawn Mower Racing Association oversees the sport. We followed the members of the Who’s Racing team ...
https://en.wikipedia.org/wiki/Tillamook_County_Fair
Look at Pig-N-Ford Races
The Tillamook County Fair is an annual event that takes place August in the city of Tillamook in Tillamook County, Oregon, United States. The county fair was established in 1891. The fairgrounds have the largest facility in the county for conventions, meetings, receptions, and other gatherings. Fair attendance continues to grow with attendance t...
brb
Direção Musical: Helder Tavares
Solistas: Dr. Pinto Moreira, Dr. Luís Montenegro, Engº. Guy Viseu, Dr. Bernardo Almeida
Balística: Clube de Caçadores da Costa Verde
Concerto do 176º Aniversário
02-05-2015
Or a Henry Hoover
Leroy Anderson: The Typewriter
Iceland Symphony Orchestra
Bernharður Wilkinson, conductor
Steef van Oosterhout, soloist on a typewriter
Ævar vísindamaður, presenter
In case your soundblaster was correctly configured and you played DOOM it was possible your printer did something like THIS!
Composed by Bobby Prince, DOOM was published by id Software 1993
Thank you!
Yeah, I want to pick up music again
Rainer Hersch performs his waltz based on the sounds used in Windows XP. CHECK out Rainer Hersch: http://www.rainerhersch.com BUY STUFF http://bit.ly/2dZdYRn JOIN his mailing list: http://bit.ly/1oLyrXY
SUBSCRIBE to Rainer Hersch fan channel: http://bit.l...
Patreon: https://www.patreon.com/floppotron PayPalMe: https://paypal.me/floppotron
A special video for reaching 98 (almost 100) song covers. 98, like Windows 98. There is a new "band member" which comes from the times of Windows 98... Do you still remember those noisy devices?
Queen - Bohemian Rhapsody cover by The Floppotron, computer hardw...
That scanner sounds really beautiful 😄
Challenge accepted! Please, SUBSCRIBE to collaborate even more with new videos!
Just worked hard on this song. I composed each coil channel listening to the studio and Live at Rock Montreal, 1981 version. Mercury meets tesla, mustache power?
For those who did not understand what is going on this video, here's a brief explanation: The main lou...
I always liked bonsai trees, and I was curious to try the approach I used for "Music from a Tree" on a smaller scale, so I bought a bonsai and recorded this little experimental piece.
To determine the key I used the lowest note I could play and recorded the rest around it.
Besides playing the leaves, I used bows of different sizes, a piano h...
@raven orbit hi
hello
can you help me ?
check out #❓|how-to-get-help
A scripting or script language is a programming language for a special run-time environment that automates the execution of tasks; the tasks could alternatively be executed one-by-one by a human operator. Scripting languages are often interpreted, rather than compiled.
Primitives are usually the elementary tasks or API calls, and the language al...
Thessaloniki (; Greek: Θεσσαλονίκη, [θesaloˈnici] (listen)), also known as Thessalonica (English: ), Saloniki or Salonica (), is the second-largest city in Greece, with over 1 million inhabitants in its metropolitan area, and the capital of the geographic region of Macedonia, the administrative region of Central Macedonia and the Decentralized A...
Oh right. What was the topic?
none in particular
Group theory is pretty cool. Have you heard about Galois?
I haven't
This is a nice talk about it: https://www.ted.com/talks/marcus_du_sautoy_symmetry_reality_s_riddle?language=en#t-855924
btw @hearty heath monchi and psvm are in vc at the same time 👀
Have they talked at the same time? 😄
Anyway gtg 👋
here
I'm having trouble configuring apache spark
trying to convert a postgres table of 16m rows and load it into python for machinelearning
pyspark
I like that I'm talking to myself
until i get 50
pandas would be ideal
another solution would be converting the table into a parquet file
yes but with so many rows it takes a long time
thus apache spark
🤷♂️
csv would be more practical
for 16M rows?
I
see
This package provides a way for adapting the different datasets (currently supports CIFAR-100 and ImageNet) to the iirc setup and the class incremental learning setup, and loading them in a standardized manner.
I understand it's out of your guys' scope
I appreciate the help
thanks
What's this for
testing publishing to pypi
🤓
59 votes and 95 comments so far on Reddit
do I have to activate my windows server
So stay here I will party up in #voice-chat-text-0 and having fun the whole time.
🤔 🤔 🤔
lol lx and kutiekat were talking about how they couldn’t distinguish your voices earlier
🤔
in a vc*
😦
aren’t you supposed to be taking a test or something 😔
def positive_sum(arr):
sum = 0
for number in arr:
if number > 0:
sum += number
return sum```
def positive_sum(arr):
result = 0
for i in arr:
if i > 0:
result += i
return result
positive_sum = lambda arr: sum(filter(lambda x: x>0, arr))
i is not your count iteration variable
RENAME IT 😄
def get_count(input_str):
num_vowels = 0
vowels_list = ['a','e','i','o','u']
for letter in input_str:
if letter in vowels_list:
num_vowels += 1
return num_vowels
def getCount(inputStr):
num_vowels = 0
for char in inputStr:
if char in "aeiouAEIOU":
num_vowels = num_vowels + 1
return num_vowels
get_count = lambda s: sum(s.lower().count(c) for c in ["a", "e", "i", "o", "u"])
def get_count(input_str):
num_vowels = 0
for i in input_str:
if i in ('a', 'e', 'i', 'o', 'u'):
num_vowels += 1
return num_vowels
string.count("aeiouAEIOU")
Thats why ruby is better than python 😄
from collection import Counter
def get_count(input_str):
C = Counter(input_str.lower()):
return sum(C[e] for e in "aeiou")
def get_count(input_str):
num_vowels = 0
for letter in input_str:
if letter in "aeiou":
num_vowels += 1
return num_vowels```
@warm tendon a string basically works as a list when iterated thru it?
uhh, sorta?
iterating over a string gives you characters
!e
for char in "hello mina ✯✩✯":
print(char)
@warm tendon :white_check_mark: Your eval job has completed with return code 0.
001 | h
002 | e
003 | l
004 | l
005 | o
006 |
007 | m
008 | i
009 | n
010 | a
011 |
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/mapoconone.txt
oh the stars are gone 😔
lolllll
how poetic
oh they're there if you click the link
ye
Please let me do this on my own as its code wars and I am trying to learn. Thank you 🙂
oh ok sry
@raw wren are you still doing the one you posted
yes but I have been distracted lol
ye ik
son_age * 2 + x = dad_age + x
can you do algebra in default python?
that's your job :P
are you sure?
i just solved it
isn't it smth else
son_age * 2 = dad_age - x
the son ages at the same rate as the dad
oh wait
it's not 😦
it's 2(son + x) = dad + x
which is what you have yeah
😔
hm wait
idk but mine's wrong kek
what song 😮
i can't remember the last kpop girl group song i liked
we have to change that 😔
checking my playlist. i like korean female soloists? sunmi, swja
baek yaerin, ahn ye eun, lee hi
iu
iu 👀
oooo lee hi 💯
word. i'm so glad she signed with AOMG
i found out recently thru a yt video. honestly don't know her discography besides her debut but this cover of golden slumbers is so good and i only wish it were longer
😐
you guys are just in vc all day, brings a tear to me heart 
come hang
gallows
let me abandon these students real fast
lol is your audience still mute?
LMAO "awwww"
mina misses u
yessss
🥺
fancy?
oh ok i do know this
hi yall remeber me
i am SpticYt
lmao who?
i am 13 now
Yes, but now I am helping them with python, which is 8,000x more fun than debugging their CSS
Congrats! you are allowed to be here now xD
why the ping?
ok, haha
Ooh so are you just there to tutor them with their own projects? or do you guys give them projects and assignments?
lol inenrnational
@fluid edge i used to love epik high
thoughts on latest album tho? i could not get into it
i bought tablo's book #realstan
for sleepless in?
both, they can do their own projects or go off of ours. I help them debug, or add features that are not covered by our tutorials.
his podcast is life lmao
seattle
yes, but no lol
lolllllll yes i love tablo the person
but for rap i honestly prefer mithra's voice
and floqw
hoo is tablo
Epik High (Hangul: 에픽하이) is a South Korean alternative hip hop group from Seoul, composed of Tablo, Mithra Jin, and DJ Tukutz. They are known for having combined genres and different styles of hip hop throughout their career, which has seen the release of eleven studio albums since their debut in 2003, as well as for their coverage of diverse ly...
no im not
Cool cool
i didnt
so how did you know my bio
@fluid edge no they had a full studio album release this year
???
oh the one that featured rosario?
ys it does
jake is funny
haaha
memee
,eeee
meeeeeeeeeee
meeeeeeeeeeeee
meeeeeeeeeeeee
meeeme
mee
mee
mee
me
please don't spam
i know coding langieages
i just realized i haven't listened to this album yet. lol
yeah
ok sry
dang. that's disappointing 😦
pls dont @ random ppl
born hater is one of my favorite songs of all time
he is probably busy, you do not need to ping him multiple times. He will reply if he is free.
ok thx
you don't
and i am sry
all of the letters are silent.
your good 🙂
exactly
it is probaly just a name
perfect.
when I want to be haha just kidding just kidding...
XD
when i turned 13 i wanted to join this server so bad
cause i wanted to learn to script bots
Well thanks for not joining it before, and what type of bot, a discord bot?
@weak scaffold early albums.. do you know hon/혼? fan? map the soul. fly. fly!
yall running a hole community
of courseeeeeee
100 thousnad people thats like alot of people
for 1 server
i not sure even if i make a community i wont get that much
thats alot of advertising
the alternative band? i haven't heard their music. but i do like hyukoh
i've yet to meet anyone that dislikes NELL
but a lot of their music sounds similar, so it's a cohesive listening experience? but some of them definitely blend together
😮 time to listen to some albums
arguably their best album is missing from spotify sigh
and figure the problem out
you all need to show me de way. psvm only shows me the kpop girl groups 😭
and before you ask: yes I am lurking
lmao which groups doe
psvm sent me 4 girl group songs and i maybe liked 1 kek
oh noooo. which ones did he send
Loona
don't tell me they were all black pink and twice
some red velvet, loona, black pink
and probably black pink, someone sent black pink
i sent HIM a twice song bc i think i can't stop me is a decent song
aw i like red velvet
i honestly never got into 2ne1 in their heyday either llolll hides
that song is catchy
manufactured to be catchy, but i don't hate that
lol it's ok
@autumn raft , depends what you're into. i like the r&b vibez. so zion t is mah jam.
yanghwa daegyo T_T
u already knowwww
red velvet >>>>
well... I am into metal. I am trying to expand my options though haha
yesss
lmao the hype
don't ask why I named the output raw
;-;
what do you think of my solution?
mine's a dual case algorithm to handle positive and negative numbers separately, then toggle the eth element of an array of zeros
lmao you can do that in one line:
@fluid edge are you still working?
nah. but i am taking 1 elective, so i have homework 😭
this NELL album is giving me v i b e s

anyone that doesn't like NELL once they listen to an album.............. idk if i can be friends with them lol
lmaooo
anyone that doesn't ||stan loona|| once they listen to an album.............. idk if i can be friends with them lol 😦
it's ok i didn't listen to the whole album and i never will, so we can be friends
LMAO
😭
this is how we can maintain our friendship 🙂
friendship is overrated
join us petri dish?
is loona like snsd?
omg nooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo
LMAO
ok it's ok i guess i never loved snsd's music either
like how only 2 or 3 can sing and the rest are just backup dancers
🤔
so basically TTS taetiseo
nah i have school tomorrow so i should sleep soon 😔
abacus lmao
you're getting pasta public static void main mad
😔
<.< read the error lol
non-american? 🤔
^ he sounded so jaded lmfao
class collections.Counter([iterable-or-mapping])```
A [`Counter`](#collections.Counter "collections.Counter") is a [`dict`](stdtypes.html#dict "dict") subclass for counting hashable objects. It is a collection where elements are stored as dictionary keys and their counts are stored as dictionary values. Counts are allowed to be any integer value including zero or negative counts. The [`Counter`](#collections.Counter "collections.Counter") class is similar to bags or multisets in other languages.
Elements are counted from an *iterable* or initialized from another *mapping* (or counter):... [read more](https://docs.python.org/3/library/collections.html#collections.Counter)
😤
it's an e
but aren't you honored to have witnessed jake's accomplishment?
lmaoooooo
is that the new pc way?
lol no. ask jake
it sounds exactly like what it means lol
"in low spirits from loss of hope or courage"
way too long on vc today see you guys later
cya!
!otn a honored to witness jake
:ok_hand: Added honored-to-witness-jake to the names list.
Why does voice verification need 50 messages I dont know what to write
Hey does anyone how I can get the voice verified role?
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
good @charred creek
Just learning @charred creek
Woah please elaborate @charred creek
on?





