#voice-chat-text-1
1 messages · Page 116 of 1
@cold trellis :white_check_mark: Your eval job has completed with return code 0.
001 | True
002 | False
!e 1 is 1
@stuck bluff :white_check_mark: Your eval job has completed with return code 0.
<string>:1: SyntaxWarning: "is" with a literal. Did you mean "=="?
id(foo) == id(bar)
@misty sinew Hi
!e print("\u200b")
@cold trellis :white_check_mark: Your eval job has completed with return code 0.
!e
print("hello world")
@cold trellis :x: Your eval job has completed with return code 1.
001 | File "<string>", line 1
002 | print("hello world")
003 | ^
004 | SyntaxError: invalid non-printable character U+200B
I hate js because of this..
bruh
Still a bad design to begin with...
Yeah... that's sad...
No front programmer want to deal with Rust borrow checker... We need some kinda scripting lang...
!e ```py
class MyList(list):
def eq(self, v):
if not self and v == 0:
return True
return False
my_list = MyList([])
print(my_list)
print(my_list == 0)```
@stuck bluff :white_check_mark: Your eval job has completed with return code 0.
001 | []
002 | True
yep... I'm saying we need some scripting language... which uses web assembly...
haha
I heard in lex friedman's podcast, from the creator of JS... He made that bad decision, just to please some devs... so he can get JS lang more adoption...
👀
how to run code in jsfuck made readable
Damn...
lol
you go through []["fill"] or Array.fill to the Object.constructor on its prototype and run code from it
xD
Y r we in VC 1
Someone gonna code some website with just those kinda things...
I'm sure, someone already did...
oh god..
I guess you can cheat in that... someone can write a complier to js to jsfuck
ohh..
haha
recreation of a p5.js tutorial i find online by just using vanilla javascript and html canvas
Yep..
@true elbow
I did something similar in C++
👀 oh nice
i think i half recreated it with rust using piston
but haven't finished the piston one yet
nvm that's raymarching
this is not using raymarching but just checking for line intersections
:x
i might try to implement that too later tho
raymarching pretty much does that
I'm streaming the program
wrong vc channel lol
and your not in vc, sorry
really? 🤔 i've heard of ppl saying raymarching algorithm but never properly checked it out
so i thought it was something more advanced
😅 nvm apparently there's multiple types of it
this is circle tracing apparently :x
yeah thats typically how raymarching works
the worst part of raymarching is that you have to derive a signed distance function for each shape
Haskell I think is one
@crystal aurora Firefox has been like that for a while, Waterfox too. Very annoying
@crystal aurora - Do you have HomeBrew?
@crystal aurora - brew install python3
Why not?
3.10 is available
👍
@hearty heath 👋
@true valley The problem with Pelican is that CF doesn't support it by default, despite the fact they seem to pretend to. There's some old recommendations about workarounds, but they're not working for me.
The plan for the next steps for data website should be (IMO):
- (Either finding a new topic, or preferably iterating on the existing one) Make some interactive plotly charts in Python
- Figure out exactly how to embed that in the Pelican site
- Get that first article hosted
- Set up the Pelican site to look pretty. Make sure we like how articles look, set up the home page
I'll get the thing working on cloudflare pages tonight and tell you how to get it working before then
for now - I need to go do some other things
The trackpad on MacBooks is still unrivalled imo.
Ah, but you would if you had a macbook 😄
Some people even by the external one to use on desktop.
Gestures etc.
Yeah but it's more expressive and natural.
¯_(ツ)_/¯
Some trackpads'll let you scroll down a page by moving your finger down one of the edges
That's all I've got on trackpads
!pep 636
He's learning about pattern matching in Python
Learning how to do pattern matching in Python the rust way is also an exercise in transfer of knowledge
That's pretty good actually 😄
What isn't 99% programming these days?
I thought 99% of programming was searching on google
System.out.println("9");
You forgot to import System
Systemless.out.println("Down with the system!")?
ok fine.
console.log("9");
printf("down with the sickness");
!exec
from __future__ import braces
!eval
!eval
from __future__ import braces
print("ligma")
@wary fable :x: Your eval job has completed with return code 1.
001 | File "<string>", line 1
002 | SyntaxError: not a chance
!eval print("test")
!eval
from __future__ import print_function
print("Python 1.3 was better")
@wary fable :white_check_mark: Your eval job has completed with return code 0.
Python 1.3 was better
from psychology import comfort
001 | File "<string>", line 1
002 | ImportError: cannot import name 'comfort' from 'psychology'
from __future__ import ES6_syntax
from __future__ import fetch_function_totally_not_lifted_from_javascript
We have already created a dataset for the first question, we should likely finish that and publish it.
Yes, for that first question we should iterate on what we have and convert it to be a bar chart with some level of interactivity from plotly
would you like to schedule a time to get together to do it?
I'm looking at the wildcards and I keep thinking pointers
yes, your first dictionary example was good
where you used x
for your key value pairing
to print your value
both lucy and calli?
I had a hunch... but I was too late
🇺🇸
Pattern matching in Python but it's done like it's Rust
it was russia ... @true valley
?
I've gtg, this has been a very insightful look at structured pattern matching
that caused the car crashes
🤔
A function to evaluate ASTs?
How about just mathematical expressions with integers?
what are U programming?
import ast
def safe_eval(expression):
return eval_ast(ast.parse(expression, mode='eval'))
def eval_ast(expr: ast.AST) -> int:
...
👍
Well it returns an ast.AST object, which is a good candidate to deconstruct using pattern-matching.
Well I was thinking, let python parse the expression into an AST.
!eval ```py
import ast
a = ast.parse('1 * 2 + 3', mode='eval')
print(ast.dump(a, indent=' '))
@hearty heath :white_check_mark: Your eval job has completed with return code 0.
001 | Expression(
002 | body=BinOp(
003 | left=BinOp(
004 | left=Constant(value=1),
005 | op=Mult(),
006 | right=Constant(value=2)),
007 | op=Add(),
008 | right=Constant(value=3)))
Then you can use pattern matching to deconstruct and evaluate this AST.
Ah sorry, I'm half-watching.
Yeah pretty cool 👍
haha
qualcosa
si
I have just a question
what's better between learning with a book and with internet?
Bye Maro 👀
@true valley 🤣
Might have clicked the end call by accident yeah 😄
👋
Anyone up for helping me with an issue?
if (buttonState == HIGH) {
for(int x = 0; x < 7; x += 1) {
{
}
for(int a=0; a < 100; a++){
delay(t_1);
rgb(1, 0, 1, a);
}
for(int b=100; b > 0; b--){
delay(t_2);
rgb(1, 0, 1, b);
}
for(int a=0; a < 100; a++){
delay(t_1);
rgb(0, 0, 1, a);
}
for(int b=100; b > 0; b--){
delay(t_2);
rgb(0, 0, 1, b);
}
}
}
rgb(0,0,1);
rgb(0,1,0);
rgb(red,green,blue,brightness of color);
At least u got 1 @lost falcon 👀
And yea, I am veg
Heh I am Indian
@lost falcon
Nope
Good evening, everybody
I need some help doing this
🇺🇦 A week now seems a lifetime ago in terms of the rapidly changing events in Ukraine. I arrived in the country thinking to myself 'Putin isn't mad enough to invade because the Ukrainian people will fight to the death for their country. It will be like Stalingrad.' And yet I was completely wrong to underestimate his insanity. Now as I write this...
hello
only some more days... @mortal tulip @round ledge i have about 30 messages currently...
we were kidding
!e py my_list = [] for i in range(5): my_list.append(i*2) print(my_list) #or my_list = [i*2 for i in range(5)] print(my_list)
@stuck bluff :white_check_mark: Your eval job has completed with return code 0.
001 | [0, 2, 4, 6, 8]
002 | [0, 2, 4, 6, 8]
!e ```py
my_list = []
for a in range(3):
for b in range(3):
my_list.append(a+b)
print(my_list)
#or
my_list = [a + b for a in range(3) for b in range(3)]
print(my_list)```
@stuck bluff :white_check_mark: Your eval job has completed with return code 0.
001 | [0, 1, 2, 1, 2, 3, 2, 3, 4]
002 | [0, 1, 2, 1, 2, 3, 2, 3, 4]
As night falls on certain beaches around the world, the waves glow with an eerie blue light, neon dots that make it look as though stars are washing up on shore.
What you’re seeing is actually millions of microscopic organisms called bioluminescent phytoplankton.
Some of the most spectacular photographs have been captured from one location, ...
Universe is weird, yo.
Second channel for silliness ► https://www.youtube.com/channel/UCcoO-8J0EYQHGPFQqwmAzVQ
Books what I wrote ► https://tinyurl.com/ycnl5bo3
T-shirts, mugs, and sadness ► https://teespring.com/stores/exurb1a
Discord server ► https://discord.gg/76ybBSR
Like shit music? I attempt to make that ► https://soundcloud.com/exurbia...
#voice-verification @acoustic island
we have to solve 4 digit code in maths by using python
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import time
numbers = "0123456789"
alphabet = ["a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"]
selain = webdriver.Chrome()
selain.get("https://www.thinglink.com/scene/1514855318415212546?buttonSource=viewLimits")
so how i would do it like this. A000, B000, C000, D000 etc. or like 0001, 0002, 0003
.
reverse_binary = ''
while integer_value > 0:
reverse_binary += str(integer_value % 2)
integer_value = integer_value // 2
return reverse_binary
def reverse_string(input_string):
return input_string[::-1]
if __name__ == '__main__':
integer_value = int(input())
input_string = int_to_reverse_binary(integer_value)
print(reverse_string(input_string))
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

!voice
Go to #voice-verification
now you know how it works!
hello suf1f1f1f1f1f1fg1f1f1f1f1f1f1f1ef1f1f1f1f1rf1f1f1f1f1f1f1f1f1f1f1fd1f1f1f1f1fa1f1f1f1f1f1f1df1f1f1fdys 🙂
hello sugar daddy
here
?
right
ahhah
ok
how r u ?
hahah
duude
yeah
but
idk why do they battle
i mean
i know why
but i think that they're mad
wait
my english isn't actually the best
i didn't understund
repeat pls
ahha
but do they win too much killing all this people
and making them be scared
?
but if they wins all the other world will be just like spectiing
without make nothing
yes
it's sad
and have you seen the cities
it's detroied
repeat pls
idk what's that
ok i undersstood ciities destroid
and then ...
wanna talk bout antoher thing
like idk
lemme think
bc idnt want to talk about russia
yes
duuuude
I'm shaiking
hahha
you're lucky
to your house
?
yes
i've not seen my famili for 2 years
haha
and any friend
and you're right?
yes
and there's no a
idk how to say that
yes
and we'll die
everyone
hhaha
we'll became zombies
like in resident evil
hahaha
and
do you think that this virus was created or it was from nature
?
idk what to think
i liked the "yeah2
"
yes
but like there's many mad people
bored in labs
who knonws haha
I prefer to think that there's none doing thinks like that
yes but if this person just want to make the caos
...
maybe
yes
yes
totally
hello
🙂
duuude
i tried to make the face wit the symbols
not the emoji
ahahaha
yeah
and many people died
well
yeas
yeah
but
maybe there's somenoe that tried to do something and it didn't work
or any thing
idk
well
i have to go to sleep
loook at this
wait
i'm stupid
and idk to make a screen shot
ahhaha
wait
i wanted to sow you my hour
haah
it's 2:40
a.m
spain
hhaha
hahaha
well
you are so
<@&831776746206265384>
kind ?
?
Hello. Is SAPNAP talking to people in VC?
I just saw them spamming messages with no one in vc
All is well. False alarm.
Oh right, no worries 
Sorry, because we only see your messages, it looks like you're spamming (or talking to yourself). I don't talk on mic in VC so have the same problem 
well
I'm not going to sleep
and my father will kill me
if he knows that I'm on the computer at 2:40 a.m
hhaha
bye bye opal
and every one ::)
see you
hhahaha
sorry
i just came to ask you if you can say hello to mi sister
she don't understund nothingh but she never listened an american guy
hahaha
pls
can i be unmuted
you have to be voice verfied
voice verifieddddddddddd
@raw wren https://github.com/wumpyproject/wumpy/tree/main/library/wumpy-gateway
https://github.com/wumpyproject/wumpy/tree/main/library/wumpy-rest
async with Shard(...) as ws: -> async with Shard.connect(...) as ws:
Just to let you guys know, we do now have #764232549840846858 and its linked channel, #off-topic-lounge-text
👍
Did that last week
Danke
!stream 565312957081190450 30m
✅ @crimson needle can now stream until <t:1725756538:f>.
✅ Revoked the permission to stream from @crimson needle.
@crimson needle's stream has been suspended!
!stream 565312957081190450 30M
✅ @crimson needle can now stream until <t:1646702364:f>.
just tell me if you need more time
@crystal aurora hello how are u
Hi everyone, does anyone know how to add a loop to a Python program?
fries, you can use the flask or django frameworks
the syntax might change, but concepts stay the same
You can actually visit this website:
https://www.codegrepper.com/code-examples/python/how+to+add+numbers+in+python+using+for+loop
👀 @trim pasture stream on twitch
- 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
That probably works if you didn’t puncture any of the wires
- Choose the option that gives great as the output.
A. my_list = ['books', 'are', 'Great', 'for', 'learning'] my_list.sort()
print(my_list.pop(3))
B. my_list = ['Great', 'books', 'are', 'for', 'learning'] my_list.sort()
print(my_list.pop(1))
C. my_list = ['books', 'are', 'great', 'for', 'learning'] my_list.sort()
print(my_list.pop(3))
D. my_list = ['books', 'are', 'for', 'great', 'learning'] my_list.sort()
print(my_list.pop(4))
charlie is the best currency trader in the western hemisphere
my_list = ['books', 'are', 'great', 'for', 'learning']
my_list.sort()
print(my_list.pop(3))
!e
l = ['az', 'bb', 'aa']
l.sort()
print(l)
@solid gyro :white_check_mark: Your eval job has completed with return code 0.
['aa', 'az', 'bb']
- Which of the following codes will give 3 as the output?
A. my_list = [10, 10, 2, 5, 10]
print(my_list.index(10) + my_list.count(10))
B. my_list = [11, 2, 10, 10, 10]
print(my_list.index(10) , my_list.count(10))
C. my_list = [11, 2, 10, 10, 10]
print(my_list.index(10) + my_list.count(10))
D. my_list = [10, 10, 2, 5, 10]
print(my_list.index(10) , my_list.count(10))
1
- Select the code that gives ['cat in a hat', 'fluffy dogs', 1989, 1990] as the output.
A. new_list = ['1000', '2000', '3000', 'cat in a hat', 'fluffy dogs'] print(new_list[-2:] + [1989, 1990])
B. new_list = ['cat in a hat', 'fluffy dogs','1000', '2000', '3000'] print(new_list[-2:] + [1989, 1990])
C. new_list = ['1000', '2000', '3000', 'cat in a hat', 'fluffy dogs']
print(new_list[-1:] + [1989, 1990])
D. new_list = ['1000', '2000', '3000', 1989, 1990]
print(new_list[-2:] + ['cat in a hat', 'fluffy dogs'])
@mild flume is this B?
@random minnow https://reasonml.github.io/
Reason lets you write simple, fast and quality type safe code while leveraging both the JavaScript & OCaml ecosystems.
- In the following code, the variable size is the function's _____.
def print_square_area(size):
area = size * size
print("A square of size {} has area {}".format(size, area))
s = input('Enter size of square: ')
print_square_area(s)
A. parameter
B. argument
C. property
D. value
lol
- In the following code, the variable val is the function call's _____.
def print_square_area(size):
area = size * size
print("A square of size {} has area {}".format(size, area))
val = input('Enter size of square: ')
print_square_area(val)
A. parameter
B. argument
C. property
D. value
Which function call will produce an error?
def purchase(user_name, id_number=-1, item_name='None', quantity=0): # ... process a user's purchase as required ...
A. purchase(item_name='Orange', user_name='Leia')
B. purchase('Leia')
C. purchase('Leia', 123, 'Orange', 10)
D. purchase('Leia', 'Orange', 10)
!e
def user(username, ham=3, pork=4):
print(username, ham, pork)
user("Steve", "Ham")
@mild flume :warning: Your eval job has completed with return code 0.
[No output]
!e
def user(username, ham=3, pork=4):
print(username, ham, pork)
user(ham=4, username="Terry")
@mild flume :white_check_mark: Your eval job has completed with return code 0.
Terry 4 4
@marble sonnet where are you getting this from? and why are you doing these questions?
practice exam
Coffee is here🙏
yo
- Which of the following is true?
A. A function must have exactly one return statement, or no return statement at all. B. A function must always have at least one return statement.
C. A function can only return strings and numbers, not lists or dictionaries.
D. A function can have any number of return statements, or no return statement at all.
IS this A
jmac is here 🥇
It is not A
So then its D?
@inland delta
- Which boolean evaluates to false?
A. 1>=1
B. 2!=1
C. ‘hi’ not in [‘bye’,’ok’]
D. 10<10
iS THIS d
import csv
import pandas as pd
import io
# from tkinter import messagebox
# from datetime import datetime
# print(datetime.date(datetime.now()))
# name of the list to count
to_count = list()
alarmrows = list()
values = list()
data = ()
tcc = int() # to_count count set as an int
# opens the csv file
with open('test.csv', 'r') as file:
reader = csv.DictReader(file)
for row in csv.DictReader(file, delimiter=';'):
# reads the ThStatus[0] row of the csv and writes it to to_count
to_count.append(row['ThStatus[0]'])
# checking if extracting row is possible
with open('test.csv', 'r') as f, open('alarmrows.csv', 'w') as outf:
reader = csv.reader(f, delimiter=';')
writer = csv.writer(outf, delimiter=';')
for row in reader:
if row[2] == 'ALARM':
# print('Found :{}'.format(row))
writer.writerow(row)
if to_count.count("ALARM") >= 3:
PassStatus = True
else:
PassStatus = False
# prints the status of the PASS/FAIL Alarm status.
print(PassStatus)
print(to_count.count('ALARM'))
to_count_num=(to_count.count('ALARM'))
# generates a message box letting the user know if the check was ok.
# Trying to compare the error code with the alarmcode from Test, and print out the alarms
# The format will look something like this:
# The first alarm was AL_OVER_RESIST
# The second alarm was AL_TA_NOT_CONNECTED and so on.
with open('alarmrows.csv', 'r',) as csv:
data = [line.strip().split(';')[-1] for line in csv.readlines()]
print(data)
ints = [int(data) for data in range(0,to_count_num)]
print(ints)
print(type(ints))
papa;Porto;ALARM;10.3.2022;32
Die;Cala;ALARM;10.3.2022;09
0;1;ALARM;10.3.2022;12
0;1;ALARM;10.3.2022;01
- Which of the following symbols can be used as part of an identifier?
A. @
B. $
C. &
D. _ (underscore)
Is it D?

ER_NB;ALARM_DESC
01;AL_BREAK_ELECTRODE
02;AL_VOLTAGE_LIMIT
03;AL_TA_OVERTEMPERATURE
04;AL_7DEGREES
05;AL_THERMISTOR_FAULT
06;AL_UNREACHABLE_IMIN_VOLTAGE
07;AL_UNACHIEVABLE_IMIN_TEMPERATURE
08;AL_OVER_RESIST
09;AL_UNDER_RESIST
10;AL_TA_NOT_CONNECTED
11;AL_POW_MODULE
12;AL_SHAPE_SIGNAL
13;AL_INCORRECT_SHUTDOWN
14;AL_THERAPY_FREQ
15;AL_V_POW_SRC
16;AL_DEVICE_TEMP
17;AL_FAN_DAMAGE
18;AL_THERAPY_TIMEOUT
19;AL_RESET_COUNTERS
20;AL_POST_RESIST
21;AL_POST_POWER
22;AL_POST_MEMORY
23;AL_POST_BAD_SETTINGS
24;AL_CAD_CONNECTION_FAULT
25;AL_CAD_NOT_CONNECTED
26;AL_BATTERY_COMMUNICATION
27;AL_HW_OVER_I
28;AL_HW_OVER_V
29;AL_HW_LOW_PS
30;AL_BREAK_ELECTRODE
31;AL_VOLTAGE_LIMIT
32;AL_TA_OVERTEMPERATURE
33;AL_7DEGREES
34;AL_THERMISTOR_FAULT
35;AL_UNREACHABLE_IMIN_VOLTAGE
36;AL_UNACHIEVABLE_IMIN_TEMPERATURE
37;AL_OVER_RESIST
38;AL_UNDER_RESIST
39;AL_TA_NOT_CONNECTED
40;AL_POW_MODULE
41;AL_SHAPE_SIGNAL
42;AL_INCORRECT_SHUTDOWN
43;AL_THERAPY_FREQ
44;AL_V_POW_SRC
45;AL_DEVICE_TEMP
46;AL_FAN_DAMAGE
47;AL_THERAPY_TIMEOUT
48;AL_RESET_COUNTERS
49;AL_POST_RESIST
50;AL_POST_POWER
51;AL_POST_MEMORY
52;AL_POST_BAD_SETTINGS
53;AL_CAD_CONNECTION_FAULT
54;AL_CAD_NOT_CONNECTED
55;AL_BATTERY_COMMUNICATION
56;AL_HW_OVER_I
57;AL_HW_OVER_V
58;AL_HW_LOW_PS
- _____ is the process where objects that are no longer needed are deleted.
A. Identity recycling
B. Memory clearing
C. Garbage collection
D. Object recycling
IS this D?
Nope
willy ❤️ @misty sinew
print('the First alarm was "+ *Entry 32*)
It's not D, no
True
4
['32', '09', '12', '01']
[0, 1, 2, 3]
<class 'list'>
garbage collection?
It's his assignment. (but yes)
error_data.csv
@marble sonnet Do you have a text book or some sort of required reading?
print(datetime.date(datetime.now()))
!e
x = """
01;test
02;test2
"""
x_dict = {int(line.split(';')[0]): line.split(';')[1] for line in x.strip().split('\n')}
print(x_dict)
@random minnow :white_check_mark: Your eval job has completed with return code 0.
{1: 'test', 2: 'test2'}
!e
def convert(n):
if n == "ER_NB":
return -1
return int(n)
print(convert('ER_NB'))
print(convert('01'))
@random minnow :white_check_mark: Your eval job has completed with return code 0.
001 | -1
002 | 1
- What is the output?
def check_for_fever(temperature):
NORMAL_TEMP = 98.6
CUTOFF_TEMP = 95
degrees_of_fever = 0
if (temperature > NORMAL_TEMP):
degrees_of_fever = temperature - NORMAL_TEMP
print('You have {:f} degrees of fever.'.format(degrees_of_fever)) elif (temperature < CUTOFF_TEMP):
degrees_of_fever = CUTOFF_TEMP - temperature
print('Your temperature is {:f} below 95.'.format(degrees_of_fever)) return degrees_of_fever
body_temperature = 96.0
print('Checking for fever...')
degrees_of_fever = check_for_fever(body_temperature)
A. (Nothing is output)
B. Checking for fever...
Your temperature is 2.6 below 95.
C. Checking for fever...Your temperature is 2.6 below 95.
D. Checking for fever...
Just moved?
Yea. Over the weekend.
!e
data = """
ER_NB;ALARM_DESC
01;AL_BREAK_ELECTRODE
02;AL_VOLTAGE_LIMIT
03;AL_TA_OVERTEMPERATURE
04;AL_7DEGREES
05;AL_THERMISTOR_FAULT
06;AL_UNREACHABLE_IMIN_VOLTAGE
07;AL_UNACHIEVABLE_IMIN_TEMPERATURE
08;AL_OVER_RESIST
09;AL_UNDER_RESIST
10;AL_TA_NOT_CONNECTED
11;AL_POW_MODULE
12;AL_SHAPE_SIGNAL
13;AL_INCORRECT_SHUTDOWN
14;AL_THERAPY_FREQ
15;AL_V_POW_SRC
16;AL_DEVICE_TEMP
17;AL_FAN_DAMAGE
18;AL_THERAPY_TIMEOUT
19;AL_RESET_COUNTERS
20;AL_POST_RESIST
21;AL_POST_POWER
22;AL_POST_MEMORY
23;AL_POST_BAD_SETTINGS
24;AL_CAD_CONNECTION_FAULT
25;AL_CAD_NOT_CONNECTED
26;AL_BATTERY_COMMUNICATION
27;AL_HW_OVER_I
28;AL_HW_OVER_V
29;AL_HW_LOW_PS
30;AL_BREAK_ELECTRODE
31;AL_VOLTAGE_LIMIT
32;AL_TA_OVERTEMPERATURE
"""
def convert(n):
# Converts to an int if n is not equal to "ER_NB" and in that case returns -1
if n == "ER_NB":
return -1
return int(n)
# Creates a dictionary (the programming concept of key-value pairs i.e. 32 => AL_TA_OVERTEMPERATURE)
err_map = {convert(line.split(';')[0]): line.split(';')[1] for line in data.strip().split('\n')}
# Get and print the error corresonding to the error code 32
print(err_map[32])
@random minnow :white_check_mark: Your eval job has completed with return code 0.
AL_TA_OVERTEMPERATURE
@marble sonnet This is one that would probably be better to search for online
Ok
These terminology ones aren't really something you can work out
['32', '09', '12', '01']
New house or apartment or what
Company provided housing. For six months.
Because.. I couldn't get one in time.
And free for the first month!
Oh sick
So wait, how does that work out. So long as you're employed there you're able to keep it?
If you leave the company/get let go you'd have to find somewhere else?
It's renting from the company. For a maximum of six months.
And yea, if I get fired, I get kicked out.
Decent place at least?
It's.. okay. Better than my dad's place even.
It is supposed to be a house share, but this is off season for hiring.
So I get the whole house to myself!
Oh right. Accents. How do you get used to other people's accents? Is it just time?
COMBINE HARVESTER (BRAND NEW KEY)
12/06/1976 - 2 weeks at #1 - 13 weeks on chart
I drove my tractor through your haystack last night
(ooh aah ooh aah)
I threw me pitchfork at your dog to keep quiet
(ooh aah ooh aah)
Now something's telling me
That you'm avoiding me
Come on now darling you've got something I need
Cuz I got a brand ne...
Mm. Okay. There are some people at work that I have a hard time understanding.
- How many times does the following loop iterate?
i = 5
while i < 10:
print(i)
i = i + 1
A. 0
B. 4
C. 5
D. 6
count1 = 4 #number of times ALARM shows up in my test.csv
['32', '09', '12', '01'] # Alarm codes for every alarm that shows up
[0, 1, 2, 3,] # number of the entry
count2 = count1-1 #to get the index of the last entry
def print_error_desc:
if count1 >0:
print(err_map(count2))
count1-1
else:
break
"It's nice" says KJ. While I had to cycle in the rain this morning S:
the mornings have been really nice the week, I was just walking to school in the morning with a hot warm sun on the back of my neck
count1 -= 1
@mild flume can I get streaming permissions to make some charts
- Which of the following loops is best implemented with a for loop?
A. Asking a user to enter names until the user enters 'Quit'.
B. Counting the number of negative values in a list of integers.
C. Starting from a user-entered integer, increment the value until the value is a prime number. D. Reading values from a temperature sensor until it gives a value greater than 100 degrees.
ping me if the answer is yes
@true valley I need American history help stat
!stream 152515077512232960
✅ @solid gyro can now stream until <t:1646941449:f>.
danke
In light of President Trump's missile strike on Syria, Reason has put together a quick refresher on a few of our many questionable interventions in the Middle East.
Subscribe to our YouTube channel: http://youtube.com/reasontv
Like us on Facebook: https://www.facebook.com/Reason.Magazine/
Follow us on Twitter: https://twitter.com/reas...
@elder wraith Just imagining you spamming the X button like mad
and..
ow many times will the print statement execute?
for i in range(1, 3):
for j in range(8, 12, 2):
print('{:d}. {:d}'.format(i, j))
A. 4
B. 6
C. 9
D. 36
!e python for j in range(8 ,12, 2): print(j) So hard
@elder wraith :white_check_mark: Your eval job has completed with return code 0.
001 | 8
002 | 10
@mild flume I stopped streaming to switch windows and lost it - can I get them back again?
!stream 152515077512232960 1h
✅ @solid gyro can now stream until <t:1646945882:f>.
Sorry, only just sat back down
Tongue twister: Irish wristwatch
!e ```python
from datetime import datetime
unix_timestamp = 1646942907
print(datetime.utcfromtimestamp(unix_timestamp))```
@elder wraith :white_check_mark: Your eval job has completed with return code 0.
2022-03-10 20:08:27
!docs datetime.datetime.utcfromtimestamp
classmethod datetime.utcfromtimestamp(timestamp)```
Return the UTC [`datetime`](https://docs.python.org/3/library/datetime.html#datetime.datetime "datetime.datetime") corresponding to the POSIX timestamp, with [`tzinfo`](https://docs.python.org/3/library/datetime.html#datetime.datetime.tzinfo "datetime.datetime.tzinfo") `None`. (The resulting object is naive.)
This may raise [`OverflowError`](https://docs.python.org/3/library/exceptions.html#OverflowError "OverflowError"), if the timestamp is out of the range of values supported by the platform C `gmtime()` function, and [`OSError`](https://docs.python.org/3/library/exceptions.html#OSError "OSError") on `gmtime()` failure. It’s common for this to be restricted to years in 1970 through 2038.
To get an aware [`datetime`](https://docs.python.org/3/library/datetime.html#datetime.datetime "datetime.datetime") object, call [`fromtimestamp()`](https://docs.python.org/3/library/datetime.html#datetime.datetime.fromtimestamp "datetime.datetime.fromtimestamp"):
```py
datetime.fromtimestamp(timestamp, timezone.utc)
``` On the POSIX compliant platforms, it is equivalent to the following expression:
```py
datetime(1970, 1, 1, tzinfo=timezone.utc) + timedelta(seconds=timestamp)
```...
!e ```python
from datetime import datetime
unix_timestamp = 3000000
print(datetime.utcfromtimestamp(unix_timestamp))```
@elder wraith :white_check_mark: Your eval job has completed with return code 0.
1971-04-08 23:06:40
!e ```python
from datetime import datetime
unix_timestamp = 3000000
print(datetime.utcfromtimestamp(unix_timestamp))```
@elder wraith :white_check_mark: Your eval job has completed with return code 0.
1970-02-04 17:20:00
!e python a = int(50000000) print(a)
@elder wraith :white_check_mark: Your eval job has completed with return code 0.
50000000
def back_half(s):
startPoint = len(s) // 2
outputString = ''
while startPoint < len(s):
outputString = outputString + s[startPoint]
startPoint += 1
return outputString
if __name__ == '__main__':
# you can use this to test your code
print(back_half('abba'))
!e ```python
from datetime import datetime
unix_timestamp = 1646943365
print(datetime.utcfromtimestamp(unix_timestamp))```
def back_half(s):
startPoint = START_AT
outputString = ''
while startPoint < END_AT:
outputString = outputString + s[startPoint]
startPoint += 1
return outputString
if __name__ == '__main__':
# you can use this to test your code
print(back_half('abba'))
!e ```python
from datetime import datetime
unix_timestamp = 1646943365
print(datetime.utcfromtimestamp(unix_timestamp))```
@elder wraith :white_check_mark: Your eval job has completed with return code 0.
2022-03-10 20:16:05
!e ```python
import time
from datetime import datetime
print(datetime.utcfromtimestamp(int(time.time())))```
@elder wraith :white_check_mark: Your eval job has completed with return code 0.
2022-03-10 20:24:41
Back in a bit, heading to the van for more deliveries
!e
x = [1, 2, 234, 1234, 3]
print(sum(x)/len(x))
@random minnow :white_check_mark: Your eval job has completed with return code 0.
294.8
@marble sonnet
def get_average(int_list):
for i in range(len(int_list))
return
if __name__ == '__main__':
# you can use this to test your code
print(get_average([0,3,-1,10]))```
```py
!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.
!e
for i in range(8):
print(i)
@random minnow :white_check_mark: Your eval job has completed with return code 0.
001 | 0
002 | 1
003 | 2
004 | 3
005 | 4
006 | 5
007 | 6
008 | 7
int_list[0]
for i in range(len(int_list)):
int_list[i]
!e
int_list = [0,3,-1,10]
for i in range(len(int_list)):
print(i,int_list[i])
@digital haven :white_check_mark: Your eval job has completed with return code 0.
001 | 0 0
002 | 1 3
003 | 2 -1
004 | 3 10
total = 0
for i in range(len(int_list)):
... ... int_list[i]
+=
total = 0
for i in range(len(int_list)):
total += int_list[i]
!e
int_list = [0,3,-1,10]
total = 0
for i in range(len(int_list)):
total += int_list[i]
print(total)
@digital haven :white_check_mark: Your eval job has completed with return code 0.
001 | 0
002 | 3
003 | 2
004 | 12
!e
int_list = [0,3,-1,10]
print(list(range(len(int_list))))
@digital haven :white_check_mark: Your eval job has completed with return code 0.
[0, 1, 2, 3]
!e print(range(1000000000))
@digital haven :white_check_mark: Your eval job has completed with return code 0.
range(0, 1000000000)
def get_average(int_list):
total = 0
for i in range(len(int_list))
total = total + int_list[i]
return
total / len(int_list))
if __name__ == '__main__':
# you can use this to test your code
print(get_average([0,3,-1,10]))```
!e
def get_average(int_list):
total = 0
for i in range(len(int_list)):
total = total + int_list[i]
return total / len(int_list)
print(get_average([0,3,-1,10]))
@digital haven :white_check_mark: Your eval job has completed with return code 0.
3.0
!e print(__name__)
@digital haven :white_check_mark: Your eval job has completed with return code 0.
__main__
def get_average(int_list):
total = 0
for i in range(len(int_list)):
if int_list[i]>0:
total = total + int_list[i]
return total / len(int_list)
if __name__ == '__main__':
# you can use this to test your code
print(get_average([0,3,-1,10]))```
def get_average(int_list):
x = 0
total = 0
for i in range(len(int_list)):
if int_list[i]>0:
total = total + int_list[i]
x = x + 1
return total / x
if name == 'main':
# you can use this to test your code
print(get_average([0,3,-1,10]))
- How many times will the print statement execute?
for i in range(1, 3):
for j in range(8, 12, 2):
print('{:d}. {:d}'.format(i, j))
A. 4
B. 6
C. 9
D. 36
||Hello World||
69.420
Gmail is shit
I'll agree to that
But winning...
Not in business space
In fact, INbox was superior until Google strangled it
And they implemented alot of them to gmail now...
@mild flume It can be fun... doing leetcode...
Leetcode is not the thing....It is about data structures and algorithms...
@mild flume what would be a better system...
@olive echo that is bad...
@mild flume , leetcode is a good metric, if it shows your general problem solving skills...
But the problem is... people train to themselves to recognize bunch of patterns... and solve them
@zenith wedge massive, but good..
Hii someone please come
@rugged crystal can you please help me
@astral urchin hmm can you please help
with?
I dont know much as im kinda new to python
Aah please help me to understand discord.py code
But you know about discord.py module??
Umm but no one is listing to me lol🤣
i couldnt hear you
I mean I can't speak but i can share screen
Online-Go.com is the best place to play the game of Go online. Our community supported site is friendly, easy to use, and free, so come join us and play some Go!
JollyGo
oh hey, I play go!
Your English is pretty good Diablo
I haven't gotten verified status yet, need to send more msg's
nah its trash
r"\w+[S]acre[B]leu\w+"
I don't drive a car anymore, take public transport as it's very good in my city
fav colour probably blue
you mean like rpg vs Jrpg?
@misty sinew how old are u
im 32, turn 33 next month
43
are are french
my bad
Je ne comprend pas c'est francais peu
je parle francais a un niveaux normal
Howdy yall
@misty sinew just send a normal thing
ive fulfilled the other criteria i think but I think I just need to fill up the msg's
Yeah people in Melbourne do swear a lot too
then i will ask you somme typical question so u can get to your 50 msg
that's definitely true
So, I am new to python. Just started yesterday
Richmond is full of heroin addicts
north richmond
Glad to join a new community.
@misty sinew u can see what u need to get verfied in the verification channel
north richmond is a bit more upperclass than normal Richmond, probaly they are addicted to oxycontin not heroin haha
Yeah I have seen
I have maybe 25 msg to send and then ill try the verify command
I used to live in the meth capital of the united states.
Dahlonega GA
@misty sinew So I know what that can be like
meth is big here and there in aus too
melb is more progressive and more of a party city so party drugs are more common
mdma, speed, ketamine, so on
quick question, how to indent in sublime?
mauritania
Like I want my second line to be slightly indented
a tuple of desert conditions
sunny side up
that
that's why cat stevens stopped making music
and changed his name to yusef islam I think
if Guitar is not in Islam.rules: return GetAngry.text
Christianity: Jesus is a prophet, Islam: recognize Jesus but Mohammad is last prophet and greater, Judaism: last prophet and Messiah hasn't yet arrived
I think
I am a licensed Christian Minister, I did training for months last year online
I know a little bit of Islam and a bit more of Judaism
have read the whole Torah
iambic pentameter
the Gospels were written over time yeah
wasn't written all at once once the big JC died
@misty sinew just send other 5 msg
but in Judaism you have t hings like midrash which is Rabbinical translation and understanding of the talmud
and it was written 500 years later than the talmud i think
and the talmud itself was originally from the Babylonian text, not Hebraic
that's not what Christianity says
people don't physically come back to life, it's metaphorical
\
Hi everyone i am new in this server.plese help me
hey ur welcome help u in specificaly what ?
In python coding
Thanks for asking
specificaly what
urwelcome
Can somebody help me and do a sms text message verification for me?
🦆
Salamaleikum!
Is
hi
it'll get you voice banned if you spam 😉
dont do this
Sed🥲
I got in finally lol I believe in you just needed a few more line I guess
@idle skiff do not spam to try and reach the message requirements.
https://stackoverflow.com/questions/5953373/how-to-split-image-into-multiple-pieces-in-python i found this link which has multiple ways of splitting image. not sure which would work for me - can you suggest one code to try. i want to split image into 100 vertical sections and save each section
hello
hello there
hello to you
can someone help in #help-potato
haha
Are you sure?
Ya
I had to make a new account on discord because some tried to dox me after a debate @high scarab
When people try to use the n word its hard not to tell them off. this wasnt here it was elsewhere
I say that as in do you think that would count for your message count?
Not sure, i still need to wait 3 days anyways
This seems like something that could have been done through @crisp hazel , with details on your previous account.
Agreed but the community is pretty rad
@high scarab thanks for the reply, sorry about the spam, I def wouldnt have do it in gen chat. Oh because of your avatar I looked up ksp python and found some cool stuff on doing ksp with python
Yeah no worries 👍 And I'm stoked for KSP 2.0 this year
I have never really gotten into but always liked watching and listening to people play it but now that I am getting better at math and programming it seems fun to program in. Now I just have to try not to but a console setup for it
yeah so this tutorial shows you how to extend it and use it in jupyter notebooks https://www.youtube.com/watch?v=9ABSicgaNKU
You can buy Kerbal Space Program game here: https://amzn.to/2tE1aqB
Hello and welcome to What Da Math!
In this video, we will use a mod called kRPC to begin learning Python in KSP.
This is a multi part series and the other parts will be available in this playlist as they are released.
The code can be found here:
https://github.com/whatdamath/...
.bm
he has a whole playlist also for different parts of the programming
@pliant turret I am too new
Who’s gonna get muted?
someone who was spamming to get to 50 message gate
How are they going to find out?
idk
@charred creek
Here's your reminder: Hello from the past!
[Jump back to when you created the reminder](#voice-chat-text-1 message)
10.1m is not a valid duration string.
!remind @hallow anchor 10m henlo
Your reminder will arrive on <t:1673993829:F> and will mention 1 other(s)!

!remind @charred creek 2m boo
Your reminder will arrive on <t:1652825867:F> and will mention 1 other(s)!
where is the random mode 
!remind ddd 2m
ddd is not a valid duration string.
!remind @warm bolt 2 min
2 is not a valid duration string.
!remind [mentions]... <expiration> [content]
Can also use: reminder, reminders, remindme
*Commands for managing your reminders.
The expiration duration of !remind new supports the following symbols for each unit of time: - years: Y, y, year, years - months: m, month, months - weeks: w, W, week, weeks - days: d, D, day, days - hours: H, h, hour, hours - minutes: M, minute, minutes - seconds: S, s, second, seconds
For example, to set a reminder that expires in 3 days and 1 minute, you can do !remind new 3d1M Do something.*
Subcommands:
!remind delete <id_>
Delete one of your active reminders.
!remind edit
Commands for modifying your current reminders.
!remind list
View a paginated embed of all reminders for your user.
!remind new [mentions]... <expiration> [content]
Set yourself a simple reminder.
!remind [ @warm bolt ] <1 hour> [hell]
[ is not a valid duration string.
!remind [mentions]... <expiration> [content]
Can also use: reminder, reminders, remindme
*Commands for managing your reminders.
The expiration duration of !remind new supports the following symbols for each unit of time: - years: Y, y, year, years - months: m, month, months - weeks: w, W, week, weeks - days: d, D, day, days - hours: H, h, hour, hours - minutes: M, minute, minutes - seconds: S, s, second, seconds
For example, to set a reminder that expires in 3 days and 1 minute, you can do !remind new 3d1M Do something.*
Subcommands:
!remind delete <id_>
Delete one of your active reminders.
!remind edit
Commands for modifying your current reminders.
!remind list
View a paginated embed of all reminders for your user.
!remind new [mentions]... <expiration> [content]
Set yourself a simple reminder.
!remind @warm bolt <1 hour> [hell]
<1 is not a valid duration string.
!remind [mentions]... <expiration> [content]
Can also use: reminder, reminders, remindme
*Commands for managing your reminders.
The expiration duration of !remind new supports the following symbols for each unit of time: - years: Y, y, year, years - months: m, month, months - weeks: w, W, week, weeks - days: d, D, day, days - hours: H, h, hour, hours - minutes: M, minute, minutes - seconds: S, s, second, seconds
For example, to set a reminder that expires in 3 days and 1 minute, you can do !remind new 3d1M Do something.*
Subcommands:
!remind delete <id_>
Delete one of your active reminders.
!remind edit
Commands for modifying your current reminders.
!remind list
View a paginated embed of all reminders for your user.
!remind new [mentions]... <expiration> [content]
Set yourself a simple reminder.
1hour> is not a valid duration string.
!remind [mentions]... <expiration> [content]
Can also use: reminder, reminders, remindme
*Commands for managing your reminders.
The expiration duration of !remind new supports the following symbols for each unit of time: - years: Y, y, year, years - months: m, month, months - weeks: w, W, week, weeks - days: d, D, day, days - hours: H, h, hour, hours - minutes: M, minute, minutes - seconds: S, s, second, seconds
For example, to set a reminder that expires in 3 days and 1 minute, you can do !remind new 3d1M Do something.*
Subcommands:
!remind delete <id_>
Delete one of your active reminders.
!remind edit
Commands for modifying your current reminders.
!remind list
View a paginated embed of all reminders for your user.
!remind new [mentions]... <expiration> [content]
Set yourself a simple reminder.
!remind @warm bolt 1hour hell
Sorry, you can't do that here!
<@&831776746206265384>
yes?
Ok
figuring out the mic thing one sec
@rain lance @brazen flower guess the bot is trolling me and I cant talk for 3 days lol
lol
😦
its ight, your project sounds cool tho
Lol, I was guessing you were like 20 @brazen flower
its 4 through 6 in the states
Im finishing my 2nd year
GitHub trolling 
Man, despite all these guides saying neural nets are easy, they are really confusing to get working lol
msg 1
import cv2
import numpy as np
import matplotlib.pyplot as plt
# load image
img = cv2.imread(r'C:\Users\Guest_\Downloads\Screenshot 2022-03-18 154330.png')
# convert the image to grayscale
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
# read each column of the image from left to right and save it to a list
cols = []
for i in range(gray.shape[1]):
cols.append(gray[:, i])
# average every 3 columns
avg_cols = []
for i in range(0, len(cols), 1):
avg_cols.append(np.mean(cols[i:i+5], axis=0))
# graph the average of each column (reversed)
plt.plot(avg_cols[60][::-1])
plt.show()
print (avg_cols[60][::-1])
import scipy.signal
import numpy as np
import matplotlib.pyplot as plt
np.random.seed(1)
x = np.linspace(0,2*np.pi,100)
y = np.sin(x) + np.random.random(100) * 0.2
yhat = scipy.signal.savgol_filter(y, 51, 3) # window size 51, polynomial order 3
plt.plot(x,y)
plt.plot(x,yhat, color='red')
plt.show()
testest
how do I get to speak here
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
hello
does anyone know how to change the font of a code so when i run the py the font will show up the same as in vs code?\
https://www.amazon.com/ThrustMaster-Tm-Eswap-Pro-Controller-Xbox/dp/B07XQC1GNG/?_encoding=UTF8&pd_rd_w=8OvGh&pf_rd_p=3eb37f12-7596-4a4f-b588-f365d2f859b0&pf_rd_r=D9Z79YJYH5ACB719JJ08&pd_rd_r=2845dc56-44e8-48f6-a611-65bdb7cc3525&pd_rd_wg=6ffBZ&ref_=pd_gw_bmx_gp_je4ec6cn
Are you talking about the code editor's font? Or is your python code rendering some font?
Also this is unrelated. cool gaming controller.
import random
count = 100000000
tr= 0
def click(prob_of_win = 3300):
a = random.randint(0, 10000)
if a < prob_of_win:
return True
return False
while count > 0:
if (click(prob_of_win = 3300)):
tr += 1
count -= 1
import random
count = 100000000
def click(prob_of_win = 3300):
a = random.randint(0, 10000)
if a < prob_of_win:
return True
return False
while count > 0:
print((click(prob_of_win = 3300)))
count -= 1
how to message code?
!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.
no
not sure I understand then -- are you rendering font? can you send a screenshot?
is there anyone who work on figma?
!video
hi
how are you guys doing

when i can start talking 😦
i really need to talking
i dont know how to program i am trying to watch videos and type code but its so boring and cant concentrate
hi
i have some task
Who is can help me?
Task 1: Create class Time that contains three member variables: hours, minutes and seconds. You should follow the data encapsulation and data hiding concepts.
this is in the c++
this task in c++
Test
What's the problem? Do you not know what a class is?
lovely
Just need to get to the 50 messages. XD
Also hi
Whom are you talking to?
I am doing some unit testing with Python
Task 1: Create class Time that contains three member variables: hours, minutes and seconds. You should follow the data encapsulation and data hiding concepts.
but thx i get it done
@haughty glacier Down here
@stuck bluff ?
Yeah here add me so we can go in our own call so I can talk if you want
Ok
oh here?
right, got it
new to discord
how would one go about getting permission to speak here?
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
much obliged 🙂
oh wow... I see
internet being internet
got ya
yeah makes sense
10 year veteran w/ Python. Full time dev. New to tutoring. New to not lurking and feeling like a fraud :S
lol I'm old yay
I saw that and I helped a beginner from Greece earlier
looks like I meet everything except the 3 day criteria
joined earlier today
oh well
going back to reason for being here Looking for some projects to help the people of Ukraine
sorta ties into your question
yeah I get that, I'm in Sweden, relatives in Finland tho. so ehm...
kinda leaning myself
I see
I saw a vid on youtube which was sponsored by Tabs for a cause (https://tab.gladly.io/ukraine/) and it occured to me that I coul probably do more than just spam tabs...
gonna hit the hay - good night yall 🙂
!video
Matplotlib
def D(x):
x+=1
while x % 2 == 0:
x = x*3//2
x+=-1
while x % 2 == 0:
x = x//2
return x
n = 1
while n<1000:
w=0
x=n
print(x)
while x != 1:
x = D(x)
print(x)
w+=1
n+=2
import numpy as np
from matplotlib import pyplot as plt
arr = np.arange(10000)
plt.yscale("log")
plt.plot(arr)
plt.show()```
How do I talk in this?
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
hi
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!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
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Evolution through natural selection.
oh that's awesome!
is it going to have a frontend or is it just going to be the back-end?
i am
if it's easier you can just talk and i can type
i usually finbd that easier
The frontend is going to be the graphical interface, the backend is handling the logic.
What is 'dm'?
direct message
Oh, ok.
No, its fine as it is.
alright
hi
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!vice verification
I am waiting for voice verify
Hey everyone
@cold trellis Have you wondered... many holidays occur on same weekday...
in India
@tulip geyser have you?
Umm dont we follow the moon and and the holidays change according to it , at-least in hindu culture
Not only that... Birthdays of people
Top of my head... Gandhi Jayanthi and Children's day...
Ghandi Janti is on a weekend
anyway... I wondered this... I got birthdays from my school and atleast in the sample size of 1300 people... more people were born on wednesdays...
Wow 😀 How were you able to get this data ?
I don't know... this is just random or not
Dumb people at my college sent... portal passwords and all their personal data in a excel sheet!! 😂 😂... when I joined
nails on a chalkboard rn
The guys in my college did this too , they wanted to know who was willing to come in the college in COVID and shared it as a spreadsheet , we got the data of email id's of around 2400 students , now it's used for advertising 😂
@true valley son of elon musk!!!
pp
xiiilksdjflkjfklsfd
We are in vc1
@cold trellis But, imo... Try, expect are bad... maybe I just don't know... I've not been coding professionally, that long!
we are still in vc1
haha
But... what if that try block is mutating something...
and it failed half way...
the data is mutated and you can't undo it..
sometimes
true...
but... why bother, write correct code..
yeah... like os
That's true
what the
Root of all evil... bad code!!!
@true valley btw, we are still in vc1
show me your beautiful face... I didn't see it
@cold trellis
💜
@cold trellis
@cold trellis Asian MoMs 🥲
@cold trellis Indian movies are just live action anime!!!
Hello friends
imo... too
Those bollywood dances though
It's not romance... it's sexual assault
And in south... they change north movies... we are traversing a negative cycle graph with dijstra!!
@cold trellis
it's like writing code...
I wonder there is a stackoverflow... for scripting movies
@true valley Collatz!! you know your code might be wrong for some interger! we don't know...
no... it's a joke...
collatz conjecture
The Collatz conjecture in mathematics asks whether repeating two simple arithmetic operations will eventually transform every positive integer into one. It concerns sequences of integers in which each term is obtained from the previous term as follows: if the previous term is even, the next term is one half of the previous term. If the previous...

