#voice-chat-text-0
1 messages ยท Page 564 of 1
they trained on all of public github
I haven't seen a cent
chatgpt's integrating ads
It's basically over
TFW twitter is running illegal ..was it coal generators?
no, gas generators
over the local smog cap but weaseling the laws
He's rich
Panema papers
Yup
The definitely extralegal island that nobody can escape from
@whole bear gently poking and reminding you we've got 13yo's here
yeah, just not as deep into the details
๐
X% of the population are horrifying people
->
X% of people in power are horrifying people
?
What do horrible people in power do
I've been doing AOC
It's nice this year
last year was annoyingly algorithmic
AOC is pretty excellent for that
That's always the trap
make something for yourself
That'd be @livid drum
Confused why you can't speak?
lol
Opals got it
lol
beautiful
to be honest
It's not uncommon for "Amazing american voice actor" to like
not be american
It used to be lower
kept turning it up to get rid of the nutcases
They would literally go
1
2
3
4
5
Potentially, but unlikely
Our influx is a lot lower now, obviously, but I think the serious positive effect on the vc's has ensured it'll stick around
As bad as it's been lately, it's so much better than it used to be
personal voice chats
People used to literally do that with servers
I remember when discord could jsut be pasted into game lobbies and people would join
That would be a neat feature
but do you know how long it took them to start autobanning the basic friggin dm spam?
years
@patent chasm I have to correct you here
you absolutely can
Actually, can't do that
Apple systems have a verification integration for that stuff
Safari doesn't get cloudflare warnings
Not very private though
there are mac os ports
Yeah
CGNAT
Or more importantly
Schools
sharing an ip
student troll comes from home, moves to uni, you ip ban the uni
It is impressive how synchronized at interrupting each other you are
...sure
oh boy
because of my job?

uh oh

ChatGPT, does this picture contain innocent civilians
Yeah
They're all posthumously labeled combatants
no warcrimes here!
"maybe you should trust the cops"

lemme know how that works out for you
It knows he wasn'tin quicksand cause it has location data
don't ask what else they do with that data
: )
#flock
yep
America is a reaction to uk legal behavior
Guys me in india so you know what UK did to India
Is truth a defense for defamation?
Depends on where you are.
I can tell you're not very old
which is.. an interesting concept
That's for human BTW
ICE has been disappearing people... I thought there was some law about "due process". It sure seems like that is being followed...
it turns out if peopel dont follow rules ruels dont matter
why do you think we have 2a nuts?
It's the situation of every country bro not just the USA .
@gleaming shuttle ๐
People wonder why americans "love the 2a" well
lose faith in the legal system and rely on steel
america top
bread and circuses
What are your thoughts on multi parth system
i clicked the voice verify thing and it said that i passed
but still they dont let me speak
yes
so uh, that's on you to figure out with Discord
not the server
check your settings
the gear
hit that mic test
make sure things work
mic testung
123
Make sure the correct input is selected
not frequentlyenough
SQL
The point of the voice gate is to have you actually interact with people on the server. Sending random text is spamming, obviously
wait let me change my mic
Hi

Can somone help me?
What's up?
i dont have permission to talk
here i go again
hi
Wanna hear me try sing darner danse
Connolly Begg 6th edition
Thanks
Hi Everyone
@fresh plover what is your question ?
about the derivation of all functional dependencies of a relation through the usage of Armstrong's axioms
have you worked with Armstrong's axioms?
I haven't
@fluid crest ^^
me too
ya maybe
database normalization
yeah, yeah, i read the regulation
i cant talk because
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
because cant talk because because also new to the server
go to text channel code-help-voice-text and doing this
it will take 3 days
why because for 3 times AHAHA
naah it say you have to be in the server for atleasst 3 days
i got the same
@fluid crest ^^
@calm ginkgo ^^
the subject probably is database management
ok thx
its basically using softwares such as mysql or sqlite or sm
@wise loom my data is over ): bye
then u gotta know the basics of how to run a database. A database cant be run just by winging it. u gotta make it efficient and less duplicates and allat
FDs for StaffBranch
@calm ginkgo thanks for brainstorming with me ๐
now for an important moment in Computer Science and Artificial Intelligence
https://www.youtube.com/watch?v=RyzP5Mb9nw4
Read More: https://www.miamiherald.com/entertainment/visual-arts/art-basel/article313212944.html
โRegular Animalsโ exhibit โ part of Art Basel Miami Beachโs new AI sector, Zero10 โ was a hit at the VIP opening. Flesh-colored robot dogs, modeled after Rock โEm Sock โEm toys and masked as famous men from Warhol to Zuckerberg took ph...
wtf_
?*
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
I dont meet it
HI
I cant talk lmao
what are u guy up too?
lol
I can relate, but not outside since it snwoing and its cold
I practing python but its hard to remember the stuff from my class, got any idea on how to remember?
hmm ye true
right now I am doing files I/O and I am messing up the basic setup
!e print(open)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
<built-in function open>
like it reading a file, making a file
open with(C://) as file: stuff like that
\
like I need to look it up
!e py print("Hello, world.\nGoodbye.")
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | Hello, world.
002 | Goodbye.
!e py print(r"Hello, world.\nGoodbye.")
:white_check_mark: Your 3.14 eval job has completed with return code 0.
Hello, world.\nGoodbye.
thinking back< i remember talking to you when i join this server
couple of month ago
I need to know my what I am doing, bc my python exam is writen
hmm great question
I am not sure atm
its just Isa
but my name is so nice, i say it twice
From his new album Solid State, out April 28.
The album has a companion graphic novel written by Matt Fraction and drawn by Albert Monteys. It's a science fiction story about the internet, the future, artificial intelligence, and how probably only love will save us.
The book, CD, Vinyl, Tshirts, and deluxe bundles of fantastic things can be pr...
letter = "a"
print(letter)
letter = "b"
print(letter)
letter = "c"
print(letter)```
a
b
c
!e py for letter in "abc": print(letter)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | a
002 | b
003 | c
ok
!e py for i in range(3): print(i)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | 0
002 | 1
003 | 2
!e py for _ in range(3): print("Hello, world.")
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | Hello, world.
002 | Hello, world.
003 | Hello, world.
is that the same as _ = i
!e py for i in range(5): if i == 3: continue print(i)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | 0
002 | 1
003 | 2
004 | 4
!e py for i in range(5): if i == 3: break print(i)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | 0
002 | 1
003 | 2
!e py for i in range(10): print(i)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | 0
002 | 1
003 | 2
004 | 3
005 | 4
006 | 5
007 | 6
008 | 7
009 | 8
010 | 9
!e py for i in range(10): if i == 3: continue elif i == 7: break print(i)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | 0
002 | 1
003 | 2
004 | 4
005 | 5
006 | 6
yea
!e py for _ in range(3): print("Hello.") else: print("Else") print("Goodbye.")
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | Hello.
002 | Hello.
003 | Hello.
004 | Else
005 | Goodbye.
!e py for _ in range(3): print("Hello.") break else: print("Else") print("Goodbye.")
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | Hello.
002 | Goodbye.
no keep going
oka
!e py a, b, c = 1, 2, 3 print(a) print(b) print(c)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | 1
002 | 2
003 | 3
yes you assign multiple variable in a single line
!e py _, b, _ = 1, 2, 3 print(b)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
2
yes, bc of naming convention
!e py for a, b in [(1, 2), (3, 4), (5, 6)]: print(a) print(b)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | 1
002 | 2
003 | 3
004 | 4
005 | 5
006 | 6
!e py fruits = "Apples", "Oranges", "Bananas" for iv in enumerate(fruits): print(iv)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | (0, 'Apples')
002 | (1, 'Oranges')
003 | (2, 'Bananas')
!e py fruits = "Apples", "Oranges", "Bananas" for i, v in enumerate(fruits): print(i, v)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | 0 Apples
002 | 1 Oranges
003 | 2 Bananas
!e py letters = "abc" numbers = "123" symbols = "@#$" for abc in zip(letters, numbers, symbols): print(abc)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | ('a', '1', '@')
002 | ('b', '2', '#')
003 | ('c', '3', '$')
!e py letters = "abc" numbers = "123" symbols = "@#$" for a, b, c in zip(letters, numbers, symbols): print(a, b, c)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | a 1 @
002 | b 2 #
003 | c 3 $
!e py text = "abc" for i in range(len(text)): print(i)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | 0
002 | 1
003 | 2
!e py text = "abc" for i, _ in enumerate(text): print(i)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | 0
002 | 1
003 | 2
is zip string ?
honestly understand what to but when I am given a question I get stomped like how do i apply this ๐ญ
my goal is to do a hackathon and I want to be ready for that
much appreciated Teacher OpalMist
okay
review,
like give me a question and I want to see if i am able to do it
f string
ye
like format
okay
okay, so you are asking me to create this. ask for your name, age. then also greet the user and the last one?
i will try , this sounds complex
okay, so when i get the age, you want next that it will say something like, if you are 20 next year you will be 21
okay perfect
okay
okay
!e
code
!e print("How are you!")
name, age = input("What is your Name and Age?").split()
print(f"Hello {name}, How have you been!")
age = int(age)
for i in range(2):
age += 1
print(f"Next Year you will be {age}")
:x: Your 3.14 eval job has completed with return code 1.
001 | How are you!
002 | What is your Name and Age?Traceback (most recent call last):
003 | File [35m"/home/main.py"[0m, line [35m3[0m, in [35m<module>[0m
004 | name, age = [31minput[0m[1;31m("What is your Name and Age?")[0m.split()
005 | [31m~~~~~[0m[1;31m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^[0m
006 | [1;35mEOFError[0m: [35mEOF when reading a line[0m
!e
print("How are you!")
name, age = input("What is your Name and Age?").split()
print(f"Hello {name}, How have you been!")
age = int(age)
for i in range(2):
age += 1
print(f"Next Year you will be {age}")
:x: Your 3.13 eval job has completed with return code 1.
001 | How are you!
002 | What is your Name and Age?Traceback (most recent call last):
003 | File [35m"/home/main.py"[0m, line [35m3[0m, in [35m<module>[0m
004 | name, age = [31minput[0m[1;31m("What is your Name and Age?")[0m.split()
005 | [31m~~~~~[0m[1;31m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^[0m
006 | [1;35mEOFError[0m: [35mEOF when reading a line[0m
!e py for i in range(5, 10): print(i)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | 5
002 | 6
003 | 7
004 | 8
005 | 9
Stop
Start Stop
Start Stop Step
for i in range(1):
age += 1
print(f"Next Year you will be {age}")
!e py print(f"Hello. {1 + 1}.")
:white_check_mark: Your 3.14 eval job has completed with return code 0.
Hello. 2.
!code
print("How are you!")
name, age = input("What is your Name and Age?").split()
print(f"Hello {name}, How have you been!")
age = int(age)
for i in range(3):
print(f"Next Year you will be {age + i}")
name, age = input("What is your Name and Age?").split()
print(f"Hello {name}, How have you been!")
age = int(age)
for i in range(3):
print(f"Next Year you will be {age + i}")
hi
print("How are you!")
name, age = input("What is your Name and Age?").split()
print(f"Hello {name}, How have you been!")
age = int(age)
for i in range(3):
print(f"Next Year you will be {age + i}")
print("How are you!")
name, age = input("What is your Name and Age?").split()
print(f"Hello {name}, How have you been!")
age = int(age)
for i in range(3):
print(f"Next Year you will be {age + i}")
Good morning
===creating folder===
my_folder already exist
===Creating files===
created - image.jpg
created - document.txt
created - song.mp3
===moving files===
file moved outside.txt into my_folder
[Program finished]
Today I am learning how to move files into folder by using shutil in python
@somber heath ๐
@somber heath late night VC this time i see
Fun times
Well for your timezone it might be very early morning now
I'm tired of people making the claim that I stand no chance in a fight for my life against a chimpanzee. I am coming out on top in that situation at least 70% of the time.
People over exaggerate claims about animals and severely underestimate human ability.
hear, hear!
Ok so fight with a chimpanzee and then notify us
I'ma feel bad for dunking on it
hello guys
!ban 1436701309637234839 slurs
:ok_hand: applied ban to @opal flax permanently.
@somber heathcan u hear me
whatsup
cupsd sucks
WHT LANGUARE IS USERD TO CREAT LIKE COOL LOOOKING SITE WITH ANMATIONS
Why are we yelling
css
@sly isle ๐
Im still supressed
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
what's happening today
@tiny ingot ๐
Hey
@wind raptor can I get a piece of that? ๐
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
javascript is generally what makes sites come to life
im trying to make the REPL a bit more live-in
i made a folder called python with 2 files with the code below, then i run python -i init.py
helper.sh
#!/bin/bash
var=$(ls ./.)
select file in ${var}
do
sf=${file}
break
done
nl --body-numbering=a $sf
ed -p "ED: " $sf
init.py
import subprocess
# CRUCIAL TO THE INIT
def editconfig():
time.sleep(3)
subprocess.run(["./helper.sh"])
with open('init.py') as f:
exec(f.read())
# CRUCIAL TO THE INIT
print("\nWelcome to the REPL!")
print("testing testing 123")
@wanton iron ๐
a feature i wanted to implement but cant find a good way to execute it is to flush the memory of the REPL every time you load a different init file
if you put global().clear() it will nuke editconfig()
-# i dont think a repl is supposed to be live-in
mic isnt working in vc, its like suppressed
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@somber heath okay so are you australian, british or none of the above i cant tell
discord did you dirty
@somber heath what do you think of my project, it partially works
i thought the curse was over
did you post the entirety of the shrek movie or smth
๐ญ
i think they're referring to how discord is marking their messages as coming from a "likely spammer"
@somber heath i think they are complaining about discord flagging them, not python discord
i've never had spam
i wonder how long i've been in this server total
a bit more than a year on this account
@somber heath demonstration
it sometimes mangles the list but its not too big of an issue
aren't many indian places up here in the middle of nowhere hah
@tacit fog im using ed
damn
ok but like what does ed stand for
editor
opal what do you think of my demonstration
could've sworn it meant something
@tacit fog recreate these files in a folder and run the command
to give it a go
@somber heath you are able to edit the init.py during runtime
yeah every time you call editconfig() you are given a list of files you wanna edit
and then it reads init.py again
991
@somber heath thats why i wanted to figure out a way to flush memory every time you read, but i cant find good way to do that without nuking editconfig() on accident
@somber heath oh so the recursion limit is separate from memory problem i was worried about in python
@errant locust damn
it might be possible with a different approach
i was trying to turn it into a lisp like repl lol
@somber heath is this what you were saying
@errant locust are you doing bachelors
@somber heath with open is separate from subprocess
im using with open to open init.py
@somber heath are you familiar with how lisp REPL's behave
def foo():
pass```
!e ```py
def foo():
print("Hello, world.")
print("Goodbye.")
foo()
foo()
foo()```
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | Hello, world.
002 | Goodbye.
003 | Hello, world.
004 | Goodbye.
005 | Hello, world.
006 | Goodbye.
!e ```py
def foo(parameter):
print(parameter)
foo("argument")```
:white_check_mark: Your 3.14 eval job has completed with return code 0.
argument
!e
def foo():
print("bar")
print("CRASH")
foo()
foo()
foo()
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | bar
002 | CRASH
003 | bar
004 | CRASH
005 | bar
006 | CRASH
useful for maths
if you didnt put any parameters you just put an empty () next to the function
if you dont put an empty () next to the function python will bite you
!e py parameter = "argument" print(parameter)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
argument
!e ```py
def foo(a, b):
print(a)
print(b)
foo(1, 2)```
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | 1
002 | 2
!e ```py
def foo(arg="default"):
print(arg)
foo("Hello, world.")
foo()```
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | Hello, world.
002 | default
!e ```py
def foo(a, b):
print(a)
print(b)
foo(b=1, a=2)```
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | 2
002 | 1
it works but i dont know whats going on under the hood
!e ```py
def foo():
return "Hello, world."
print(foo())```
:white_check_mark: Your 3.14 eval job has completed with return code 0.
Hello, world.
!e ```py
def foo():
print("Hello, world.")
return "Goodbye."
print(foo())```
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | Hello, world.
002 | Goodbye.
!e ```py
def add(a, b):
return a + b
result = add(5, 3)
print(result)```
:white_check_mark: Your 3.14 eval job has completed with return code 0.
8
!print-return
!e ```py
def func():
var = "local"
print(var)
var = "global"
func()
print(var)```
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | local
002 | global
:white_check_mark: Your 3.14 eval job has completed with return code 0.
global
write a function who purpose to accpect a postive integer, then cal a the sum lead up to that number from 1
1 = 1, 2 2 = 3
3 = 6
1: 1 = 1
2: 1 + 2 = 3
3: 1 + 2 + 3 = 6
4: 1 + 2 + 3 + 4 = 10
int(input("Give me an Postive Integer:"))
for i in range(1):
def num1():
int(input("Give me an Postive Integer:"))
for i in range(1):
@grizzled valve ๐
๐
integer = int(input("Give me an Postive Integer:"))
for i in range(1):
cal = integer + i
def sum1()
cal +
integer = int(input("Give me an Postive Integer:"))
zero = 0
cal = integer + zero
for cal in range():
cal
!e ```py
def func(value):
result = 0
for i in range(1, value + 1):
result += i
return result
for i in range(10):
print(i, func(i))```
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | 0 0
002 | 1 1
003 | 2 3
004 | 3 6
005 | 4 10
006 | 5 15
007 | 6 21
008 | 7 28
009 | 8 36
010 | 9 45
!e py foo = 1 for i in range(1, foo + 1): print(i)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
1
!e py foo = 2 for i in range(1, foo + 1): print(i)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | 1
002 | 2
!e py foo = 3 for i in range(1, foo + 1): print(i)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
001 | 1
002 | 2
003 | 3
!e py foo = range(1, 4) bar = sum(foo) print(bar)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
6
!e
for i in range(1,2)
print(i)
:x: Your 3.14 eval job has completed with return code 1.
001 | File [35m"/home/main.py"[0m, line [35m1[0m
002 | for i in range(1,2)[1;31m[0m
003 | [1;31m^[0m
004 | [1;35mSyntaxError[0m: [35mexpected ':'[0m
!e
for i in range(1,2):
print(i)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
1
@outer horizon ๐
@somber heath i dont know if i am right, but i think i unintentionally caused a namespace collision with __init__
well i renamed it and that didnt change anything so thankfully i think this is a different error
!kindling
The Kindling projects page contains a list of projects and ideas programmers can tackle to build their skills and knowledge.
Geometry 2
The geekiest of our courses. Learn further calculations and formulae to evade oncoming attacks from those jealous of you.
hi
@hollow bough out of curiosity does system("cat foo.txt") render characters that would normally be invisible
@hollow bough i was worried about that because when i did that, it keeps appending 0's at the EOF
im on linux
@wise loom remember me?
@hollow bough well linux understands it, python might not necessarily understand it
@hollow bough
from os import system
string = system("cat foo.txt")
it captures but theres a 0 at the EOF
which messes with things
@hollow bough
repr(...)
@hollow bough i did a diff on initchoice and a file i made that was identical in terms of characters, and the diff said it was identical
i forgot how to extract text from a file using normal python
that would probably be more stable
with open("/tmp/initchoice") as f:
contents = f.read()
print(contents)
@foggy void What did you ask? I was helping Froge
how do i capture that into a variable
there we go that actually worked thank you
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
@stuck blade what do you wanna talk about?
@steady zephyr ๐
@somber heath i found solution for my problem
cant talk yet
i basically create a subprocess that is new session, then parent kills itself
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
they say 3days needed
yes
i am new so not allowed to
@graceful dagger ๐
@cloud lotus come to the voice chat 1
@mighty linden Please unmute
Oh!
3 days
@inner hill Join
i send you a screenshot one sec
push the voice verify in the text channel voice verify
is there a general suggestiom channel?
curious as the help channel retains non closed threads, are the closed deleted or just not shown? maybe an archive channel?
suggestion for what?
like suggesting an archive
@wind raptor what do you think of this self editing module i made
print("running", __file__)
import os
import shlex
import subprocess
def chinit():
subprocess.run
def editconfig():
subprocess.run(["./helper.sh", "inifile"])
cmds = shlex.split("./helper.sh refresh")
refresh = subprocess.Popen(cmds, start_new_session=True)
quit()
print("Welcome to the REPL!")
oh i havent finished defining chinit
ignore chinit
@wind raptor the way it works is it subprocesses a helper script executing a function defined in that script to edit the module itself then it creates a new session after you finish editing and the parent kills itself
chinit is not done, the way that will work is you can actually switch what init file you have loaded into REPL
the init file will be similar to how init.el works in emacs @wind raptor
have you used emacs before? @wind raptor
@wind raptor emacs is a lisp interpreter that can be configured during runtime, you just need to refresh the buffer, i replicated that behavior in my module
ah ok
@wind raptor emacs has features beyond the text editor that it does better than vim imo, vim is capable of doing emacs things but the way it does it is a bit hacky.
i know thats ironic considering what im doing in this python module 
oh mb
goal of this module is to make the python REPL able to be lived inside of
if that makes sense
like a feature im gonna implement later allows you to configure what text editor you prefer the REPL to switch to when you want to edit a file
default editor i have set up is ed
ed is a bit antiquated but it feels fitting in a REPL environment imo
end goal is to make a development workflow possible, i think this is whats called an IDE
where you dont leave the application, it just has all the features you need
Hey @livid niche how do u go into python coding on mobile?
do you have termux
No
first learn how to use that, it will make development on a phone easier
termux is a neat terminal you can install onto your phone and it doesnt require rooting your phone, the drawback is that its a bit more difficult to do things because of the fact it doesnt require a rooted phone
i wouldnt reccomend rooting your phone tho
Ik how to develop on phone just idk how to get into python coding
Is it possible?
Idk how to get me into it, I click python coding and it sends me to like this ai thing
nowadays
i would say try to get into it like you would any platform
write simple practical things, or simple dumb things that you find amusing, it depends on your tastes
@somber heath had to switch the editor to vim sadly
ed was a really nice line editor, wish it worked
What the hell going on #off-topic-lounge-text โ ๏ธ
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Hi๐
was making a benchmark tool, how is it
fake death
kill god
become god
The Church of the Flying Spaghetti Monster, after having existed in secrecy for hundreds of years, came into the mainstream just a few years ago. With millions, if not thousands, of devout worshipers, the Church of the FSM is widely considered a legitimate religion, even by its opponents โ mostly fundamentalist Christians, who have accepted th...
So, you read that other How to Play Minecraft in Real Life and thought, "Too much work". Well for some it isn't too much, but if you don't want to do that, follow this guide to playing the famous game in real life. (Create a skin) Choose...
Oh!
@wind raptor How can i unmute quickly
Na thats not
@wind raptor I am learning python I hope you guys help me
@wind raptor mic still suppressed even after 3 days
i tried but it say i am not active enough
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
okk
but its boring
dammmm
but i noticed so many people left the server because of this
i have seen some
its phub community
๐
woofle you know hindi language
๐
@fleet tide
i got an minore project to submit in the collage but i dont know the basics of programming
@wind raptor
can you give me some ideas
??
@fleet tide Add Text to speech in server
nahhh bro
yaaa
ai also gave me the same answer
I know basics I can help you
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
then you can install an program inside patients that can run their body for a whilke
Extra wattage power supply
@flint wharf @worn tundra Hello ๐
instead we can install atlas os which is optimized
hello!
yaa
@fleet tide so the nurses know python as well ??
What's on your mind today?
@fleet tide SAME
@fleet tide How do you motivate yourself to learn and work everyday?
๐ Iโm sad because Im prepraring for my final exam tomorrow
No worry ๐
i also work on a vehicle manufacturing company and what motivates me is the date of salary
@fleet tide
ok
but its like there is a lot of politics going in there
YAA
they dont care how much you work for the company all they care about how much to jiggle around your manager
Same
pradip bro kitni aati he python
Like me in java script console.log
me toooooo
me too
only youuuuuuuuu
Give me
@cyan wolf doing some majdoori and stuff
Are you from india?
kinda
I am from Nepal btw
a rayyyyyy
But I know hindi
and whats that ??
What
i also know hindi , urdu , english , math ๐
dammmmmmm]
dammmmmmmmmmmmm!
rip mitttar
Diging in a medical field
@cyan wolf Yaa
last semester i studied using chat gpt after exam i checked that question and chat gpt changed the answers
LOL
for same question it will give you different answer eveery time
I have a question, what do you recommend more software majors or artificial intelligence majors?
!stream 313797258200219648
โ @midnight agate can now stream until <t:1765463457:f>.
Badaya
git clone https://github.com/LazyVim/starter ~/.config/nvim
@midnight agate
YAa I know
Thank you
i am learinng from apna collage
and code and chai
Right
@warm patio It can use just using just your electricity
Main is Gpu drivers
@warm patio Use windows Hyper-V
Inbuilt
Yaa
You don't get gpu in it
!paste
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 Paste! button in the bottom left, or by pressing CTRL + S. After doing that, you will be navigated to the new paste's page. Copy the URL and post it here so others can see it.
@midnight agate what linux you are using
!stream 1410576103470399611
โ @cyan wolf can now stream until <t:1765465043:f>.
@wind raptor thanks for the permissions, I'll be on my way.. twas a pleasure to see you here again
you cannot speak
i think
you can hear
i know
i muted my laptops speakers
hang on
i hear you guys now
how are you @wind raptor ?
Chris
is Chris offline rn?
may be
i can hear you
i unmuted my laptops speakers
just so you know.
??
hi opal!!
how are you @somber heath ?
sry guys
i got work to do.
like homework
Hey guys
question for all of you
yes
Would any of you guys like to join my pybricks server?
if you don't know what pybricks is.
python programming for lego robotics.
oh
it's not for children only
it's for all ages
i mean it
check the lego website
what new design?
i mean
if any of you guys know how to program with pybricks,
then let me know via DM.
wait
sry guys
no advertising
hi @rugged root
@rugged root
dude
@rugged root
hey i got a question for you
hemlock
!e py my_dict = {} my_dict["key a"] = "value a" print(my_dict)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
{'key a': 'value a'}
@cyan wolf
def add():
name: str = input("Enter The Student Name:")
mark: int = input("Enter The Student Mark:")
data[name] = [mark]
print(data)
{'name1': 80, 'name2': 1, 'name3': 32, 'name4': 43, 'sdf': ['34']}
['34']}
its is a list
not a int
this is out put
data = {
"name1": 80,
"name2": 1,
"name3": 32,
"name4": 43
}
def add():
name: str = input("Enter The Student Name:")
mark: int = int(input("Enter The Student Mark:"))
data[name] = int(mark)
def remove():
name: str = input("Enter The Student Name:")
data.pop(name)
def update():
pass
def search():
pass
def display_all():
pass
if __name__ == "main":
add()
remove()
print(data)
@peak depot how i can remove something from dict
it rase a error
โ Ai And Ml python -u "/home/yousaytoday/Documents/Ai And Ml/py1.py"
Enter The Student Name:23
Traceback (most recent call last):
File "/home/yousaytoday/Documents/Ai And Ml/py1.py", line 212, in <module>
remove()
~~~~~~^^
File "/home/yousaytoday/Documents/Ai And Ml/py1.py", line 199, in remove
data.pop(name)
~~~~~~~~^^^^^^
KeyError: '23'
โ Ai And Ml
Hello nail ๐
Need?
How much do you get paid?
For 2400 line?
Damn it's child labour
Data engineer ain't easy?
which is more difficult ML engineer or Data Engineer?
Everything is hard!
Do you know what I have for storage?
64 GB usb.
You guys have 32 GB?
I got 8
I guess I'm dirt poor
:(
@peak depot How long did it took to complete the fullstackopen?
That program is really hard..
my team lead has gone ai crazy ... want's to implement agentic ai in every small thing
I did 6/12
I meant how much duration?
what's fullstackopen ?
oh I don't remember anymore, I did it months ago
Open program to learn concept of fullstack
it is not easy
unit testing part took me the longest cos had not done much of it before
Gotcha
pytest is easier than the unit testing that course has
I'm stuck at part 3
At first it wasy easy
now difficulty has increased significantly
Hey. Just got back. Sorry if I missed something.
hey
My lovely presence 
Meet with PWL Capital: https://calendly.com/d/3vm-t2j-h3p
If asset prices reflect expectations about the future, the market rising should be viewed with optimism, but there might be less optimism, and there may even be pessimism, about a market that is being artificially propped up by a central bank. What if the central bank canโt print any m...
parquet
(Red square = Gap > 15 minutes | Red stripe = message with โab ababโ | Blue stripe = message without โab ababโ | Black stripe = โ434f4eโ restart message)
my bad had to translate so i could understand
@wind raptor if i may, may i have the ability to share my screen?
please, thankyou
Who is actually understanding 1000 devices worth of messages at a glance?
You should have a view of issues ,not all the good stuff
because humans can't parse a million pieces of information at a glance
You really want to draw all the data points on the screen at once?
i was thinking it can be the same side by side with a slider aswell
so u can see the gaps
The system should just present the gaps
if that's what you're looking for
why are you making a view of EVERYTHING to find a certain thing
just show the thing you're looking for
yea true
i think the issue is that they're looking for overlap of gaps in a timeline
Do that programatically
and retur nit
not all the data
just the gaps
that overlap
if you want the overlapping gaps
@dry jasper i'm writing some code to help you visualize
@wind raptor can i get video stream permissions
i made a visualizion for you in plotly lol
just asked chatgpt to make it for me
@wind raptor could @calm ginkgo get streaming rightscfor a few minutes pls
Lol
!stream 778585347562930208
โ @calm ginkgo can now stream until <t:1765476985:f>.
Oh, Oh no
?
thank you that's good, i'm done streaming thank you!!!
welcome
C Web Server, very hostile ecosystem for not memory safe
I know Apache and Nginx are probably C as well
but those projects have hundreds if not thousands of contributors, and made by more experienced people lol
zeekr
need help who had worked on programing robotic arm with python?
when the pizza delivery guy is just as shy as you are ๐ฅบ
#shorts
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
hi
yeah wait let me fix my mic real quick
so using Tkinter i can change my gui of python and pygame>
0......
hi
yo
what are you working on
nothing basically making guides for a game i play and integrating it with a gui ๐
i was talking to these fellas for advisee on some modern guis
ahh hey as a beginner in python what should i be focusing on?
like are you on if else statements ?
if else statements?
Oh so you have just started out?
yea yea
i believe im not fit to give advise but ig you could ask in general chat. There are thousands of videos teaching python. I'd say in this day and age pick up one good one, and complete that one.
back when i started there was no ai slop to worry about, i really don't know how beginners go about learning.
you mentioned that you were making a guides for a game.
which game?
like you made a game by yourself
oh pokemmo, nobody plays it though. no not made by me ofc that'd be kinda narcisstic ngl
pretty good game if you're fan of pokemon in the good old days hah
last time i played it was 1.16
ive many memories of 1.14 but we really didnt play after 1.16
hi
yea
how old are you
oh
dont wanna tell
when i said dont wanna tell i was talking about you
yeh i get it ๐
i am 16 btw
crazy
no i mean as an expression. it's great to see that the bar of progrmaming has reduced now.
i hidemy true age so i dont get judged maybe im just paranoid
nah i cant talk untill i have spent enough time on this server
i see
Hello!
@rough pebble
How are you doing
@lament path
Talk here
If you are not veirfy
@jade spire
Hey
If you are not verify talk here
Still can't talk
Streaming services really need a "binge mode" that removes the "coming up next time" and "Last time on"
"After the commercials", "before the break"
half the show is recaps
A guy I workwith got caught up on it
one piece
took him like a year
someone else ocnvinced him to start
lol
He would watch it on the bus on the way in
and home
You should google 67
boo
thgought it said now
picking gifs on a 4k screen is annoying
really?>
You don't get this?
gimme screen share real quick please
!stream 221417491136512010
โ @primal shadow can now stream until <t:1765548218:f>.
and I gott a close these 42 windows to find the right one
you see?
They joined the fun
But not in canada apparently
lost sound when I streamed apparently
๏ผ
it was silent from then on
I was so confused
I generally avoid x.x.0
after that it's all bugfixes
On my Pixel I'll give it a month or more
!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's a question
Hoii everyone
here you go
ODin does a great job
save and sahre code
mainly sharing
working with others
Makes teamwork not be nearly as painful
I guess start here
Most development houses use git
no
i write new code every day
can't just copy things that aren't there
