#voice-chat-text-1
1 messages ยท Page 11 of 1
one prints 30, another prints 90 or something like that
that's the big hint
and 12345 -> 14 is the small hint
@misty sinew ๐
how linear algebra affects the brain:
making notice linear correlations between input and output
I'll put it here too
print(next(c:=map(int,input()))*sum(c))
@blissful ledge ๐
reverse
all languages
https://www.codingame.com/clashofcode/clash/30312670b510e20791958c3bf1dbc6f5606e55d
twisty take a break lol
print(next(c:=map(int,input()))*sum(c))
print((c:=map(int,input()))[0]*sum(c[1:]))
you can't [] on map
first, move [1:] into sum
!e
input = lambda: '12345'
print((c:=map(int,input()))[0]*sum(c[1:]))
@delicate wren :x: Your 3.11 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "/home/main.py", line 2, in <module>
003 | print((c:=map(int,input()))[0]*sum(c[1:]))
004 | ~~~~~~~~~~~~~~~~~~~~^^^^
005 | TypeError: 'map' object is not subscriptable
!e
input = lambda: '12345'
print((c:=[*map(int,input())])[0]*sum(c[1:]))
@delicate wren :white_check_mark: Your 3.11 eval job has completed with return code 0.
14
did it succeed
cool, what the game is about?
reverse mode:
you're given tests that your program needs to pass
you need to figure out what the task is
I have work pending, but want to play too ._.(got addicted to this i think)
so, like, given tests, write a program which passes similar tests
i'm not a programming genius unfortunately i learned coding for game engines im pretty sure i'll just fail all the time LOL
login with GitHub is the easiest, I think
I think the thing is decryption not encryption
+k, I think, is encrpytion
@misty sinew in JS you need to mod twice
((a % b) + b) % b
because negative numbers
fastest, as requested
https://www.codingame.com/clashofcode/clash/30312829d914c7465e94743edbed1a6ae1f0766
-4
it preserves sign
because of how it's done in the CPU, I think
C has the same issue
you can't measure performance well in this context
too much strain on the servers to get valid results
fastest needs more complicated tasks
yes, btw
codewars has vim
vim-ish
these options
yes, this is still active
dons,krap is done
I actually lost it too
I just pasted 3031290e4cd7b5d68f42d1ae0ab7d7907048662 into one of the earlier results URLs
some other people from text chat might choose to join, so posting links for now is preferred
@north nacelle it's [team::teams] not [team*teamsize:team+teamsize]
they're interleaved
reverse, all languages
https://www.codingame.com/clashofcode/clash/3031307d746c422f951bded8f744998cf3edd05
I submitted less than a second later
I lost to Ruby
to conciseness of Ruby
wrong word
what did the book say
concision
I remember that book
but I don't remember what it was about
either kubernetes or pandas
50%*0:52 == 100%*0:26
"let's call it a tie then"
@misty sinew default case for factorial is 0 not 1
that might cause issues there
0! == 1
and negative! is undefined
wait, wasn't test 2, like, too big?
though it worked
โ136, I'll try to count
https://www.codingame.com/clashofcode/clash/303132304f94a5b2ad69b4721887fdd9009d50d
@crystal aurora
it's not python 3.10+
ew
half the time I was fighting with the editor for one reason or another
@crystal aurora
or at least it argues as if it's sub 3.10
epic state machine
respectable but for this context is overengineered
I think
i'll join too
I don't like from the correctness point of view this is ideal too
if-elif-elif without else is scary even here
@crystal aurora I think it shouldn't start in FALSE state
though
eh
might be?
I kind of understand why it might be
nvm, yes, makes sense
because it's FALSE for empty sequences
@crystal aurora
also, invited via the site
(thrice I guess)
I could've saved time but not doing extra imports
but, eh, might "show off" library knowledge as well
now, I'll write it the way I'd prefer to
it's not really a trick
it's quite a common implementation of modulo out of remainder
Pascal programmers use that a lot, I think
from string import ascii_uppercase as U
def get_table(shift: int) -> dict[str, str]:
return {U[i]: U[(i-shift) % len(U)] for i in range(len(U)))}
@misty sinew you already won in shortest
not for this
this is how you lose jobs
all ingested hormones are all broken down, unlike injected ones
@crystal aurora code-golf-ish
from string import ascii_uppercase as U
s = int(input())
p = input()
print(*(chr((ord(c)-s-ord('A'))%26+ord('A')) if c in U else c for c in p),sep='')
@crystal aurora
new link
I didn't know about DOT before
TOC helps in compiler construction
I was experimenting with rust-hdl state machines some time ago
have you read the fizzbuzz paper?
wtf
I have no idea what is happening
unlike the paper
that one is very clear
should try translating into python
will check it out.
i think i am getting different when i am searching fizz buzz, could you share
@ornate cobalt @misty sinew
it auto-started I think
timed out
@misty sinew
@ornate cobalt it's a bug
name, name, first name, last name
Yu, Yu, A, F
> not in VC
are you organising a cartel
I don't have professional experience
but I did participate in comp prog
IRL
that's not me
that's the inventor of turtle language
pid ! is syntax from Erlang
@crystal aurora I can try
I code more properly when I'm tired
the less I care, the more I follow pep8
and for other things that in real circumstances are better
why my score is 0 though
I would use operator and starmap in real code
@north nacelle
soo many replace gave up(
i though you must have used a trick but you went in the simple way)
you can't adequately solve it with replace
[] -> [[ -> ]]
i even did not looked it further
str.translate(table)```
Return a copy of the string in which each character has been mapped through the given translation table. The table must be an object that implements indexing via `__getitem__()`, typically a [mapping](https://docs.python.org/3/glossary.html#term-mapping) or [sequence](https://docs.python.org/3/glossary.html#term-sequence). When indexed by a Unicode ordinal (an integer), the table object can do any of the following: return a Unicode ordinal or a string, to map the character to one or more other characters; return `None`, to delete the character from the return string; or raise a [`LookupError`](https://docs.python.org/3/library/exceptions.html#LookupError "LookupError") exception, to map the character to itself.
You can use [`str.maketrans()`](https://docs.python.org/3/library/stdtypes.html#str.maketrans "str.maketrans") to create a translation map from character-to-character mappings in different formats.
See also the [`codecs`](https://docs.python.org/3/library/codecs.html#module-codecs "codecs: Encode and decode data and streams.") module for a more flexible approach to custom character mappings.
@misty sinew discord.py library?
@tree.command(
name="embedtest", description="Embed test",
guild=discord.Object(id=guildID)
)
async def first_command(interaction):
embedVar = discord.Embed(title="Title", description="Desc", color=0x336EFF),
embedVar.add_field(name="Field1", value="hi", inline=False),
embedVar.add_field(name="Field2", value="hi2", inline=False)
await interaction.response.send_message(embed=embedVar)
did you sync it?
command tree
๐งฑ
^ peak humour
don't use debuggers with async
await tree.sync()
in another command
or on startup
@misty sinew isn't there ?? operator?
h[n] ?? n
ok, reversed()
that makes sense in Rust
it's all a trade-off
I think [::-1] is faster but I might be wrong
what
it's a hack but a short one
@client.event
async def on_ready():
await tree.sync(guild=discord.Object(id=guildID))
print("Ready!")
I guess I do have it
also didn't meant to reply to this message
Hello ๐
how i have never seen it
Oh, codingame ๐
@stuck bluff
Nope. Not my thing.
๐ฎ
@crystal aurora if you want to join the next one
2 minutes left to join
I'll try to go for readability this time too if it's not a totally dumb task
typesystem-wise it's a catastrophe, so I choose not to
ok, it was a bad task, I'm not sorry for not changing the template code
I'll be okay with it if it's segregated into a separate function
now the challenge is to come up with a name
>>> for a,b in [1,2,3,4]:
... print(a,b)
...
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: cannot unpack non-iterable int object
!e
for a, b in "12 34".split():
print(a, b)
@delicate wren :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | 1 2
002 | 3 4
how to name this?
def the_function(src: str) -> dict[str, str]:
return dict(src.split())
I think this is the cost to this hack
this is fine
brb restarting discord
discord gave on the idea of updating without restarting
finally
* gave up
what people usually do is:
they come a specification for the src format
then write an RFC
then make people call it by some short way, or RFC number
then name the function parse_<format_name>
for two last updates, it was reloading not restarting
when updated using the button
hi im new here, and im in dire need of help. I applied for an internship for some company and their giving us a puzzle solver problem. I'm somewhat new in coding, I know the basics and stuff. But their problem is bit out of my level. I just recently installed all of the pre requisites and git resources needed for the project.
Upon getting resources, I'm already facing with a lot of problems. I assume these early problems has got to do with the fact that I just recently installed python or visual studio. Idk. All i've done is debugging and trouble shooting with the code. I haven't done any actual work yet.
I just wanna start with the project, do you guys know anyone I can consult with or help me? I dont need someone to complete the project , i still wanna learn. ChatGPT cant help with this one either haha
Visual Studio or VS Code?
VS Code
> a lot of problems
it's OK to ask on help for specific problems generally
This sounds like an #algos-and-data-structs sort of thing, but it depends on what you mean by puzzle solver.
Back later ๐
* ask for help on problems
I can't type
I mean I dont need someone to finish the project, I still wanna learn, through out the project.. it just frustrates me that I havent done any actual work yet because all ive done is debugging :<
What is meant by a puzzle solver? What sort of puzzles?
They asked us to create a puzzle solver, an algorithm that would solve puzzles. But the puzzles was Unique, i think they created it uniquely for this internship exam .
anyways how do you fix importerror
incorrect startup, I'd guess
I thought of better input checking
couldn't come up with anything
could you try go back to the dir(where it is trying to import and run the file from there)
yes, production level code haha
using start button is wrong probably
I'd guess you need to use python -m solver
or something similar
that's what I read in stackoverflow altho I dont know how to do it exactly
use it in the terminal
this
python -m solver, then just use this ?
try that
you've opened the wrong workspace (if this is a screenshot from VC Code)
this should probably be the workspace
or maybe including src part
idk
How do i correct the workspace , if thats the case?
File -> Open Folder
โ144
still prioritising readability, at least partially
https://www.codingame.com/clashofcode/clash/3031519307abaffbcc55d92792917d1a10bebb7
Yuu sleeps
this had an opportunity to be an interesting task
it wasn;t
I've been to university for 4 months
at some I should publish almost everything I have onto GitHub
200 repos in one day challenge
though I'd have to refactor it all to make it publishable
I can't study, I can't work,
and on top of that I can't care
@crystal aurora https://www.codingame.com/clashofcode/clash/report/30314997f723a95ef90436be2f64b325e2a4d42
does it show the button there?
what does it show?
I'd rather not risk running others' code at all
not my thing if it's not libraries
just WASI it
WASM but like Docker
for back-end
starting when 01:00
IQ tests are garbage generally
I doubt I can optimise it without some wild data structures
@misty sinew new might appear
apappleple
I have no clue, it's too cursed
?
@crystal aurora I understand but that doesn't improve time complexity
asymptotic rather
this problem has two forms to solution
"replace while there is something to replace"
"replace while replace changes anything"
@crystal aurora you compare length, right?
how do you check if it changed?
do you compare strings or lengths?
it won't when lengths are equal
you can compare lengths and be sure
new link?
previous I coded as well as necessary
will start when timer hits 3:30
I could've done better
in terms of code quality
now I'll spend time rewriting it
to differentiate them between each other
โ is from Cyrillic layout though
you didn't tie, you lost by less than a second
"I don't have IQ, that's a benefit, I guess"
Farzin scamming people with false hints
@misty sinew you forgot capital letters
submitting it got busy somewhere
"ChatGPT fucked up" is a normal ChatGPT behaviour
selection bias
it's good at it
Why can't I talk?
I am the brother of Hakimi remember? I can provide a certificate
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!e
def f():
return
yield
print(list(f()))
@delicate wren :white_check_mark: Your 3.11 eval job has completed with return code 0.
[]
@crystal aurora
this conversation demonstrates why people voted for Donald Trump.
value passed to return doesn't get yielded
words matter
!e
def f():
return "something"
yield
print(next(f()))
@delicate wren :x: Your 3.11 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "/home/main.py", line 5, in <module>
003 | print(next(f()))
004 | ^^^^^^^^^
005 | StopIteration: something
!e
def f():
return "something"
yield
g = f()
try:
print(next(g))
except StopIteration as e:
print(repr(e))
try:
print(next(g))
except StopIteration as e:
print(repr(e))
@delicate wren :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | StopIteration('something')
002 | StopIteration()
oh, wow
it actually does what makes sense
can hear
!e
def f():
yield "A"
return "B"
g = f()
print(g.send(None))
print(g.send(None))
@delicate wren :x: Your 3.11 eval job has completed with return code 1.
001 | A
002 | Traceback (most recent call last):
003 | File "/home/main.py", line 6, in <module>
004 | print(g.send(None))
005 | ^^^^^^^^^^^^
006 | StopIteration: B
if it's yielded, it's returned
if it's returned, it's raised with StopIteration
if StopIteration is raised, it raises RuntimeError
chain of translation of concepts
@misty sinew You have been assigned to mandatory sensitivity training and social media re-education.
@tame sequoia i disagree with ur previous statements though my opinion doesnt matter much
the babies statement one, it doesnt just make sense and hurts feelings to some extent
yeh lmao
Intellectual disability (ID), also known as general learning disability in the United Kingdom and formerly mental retardation, is a generalized neurodevelopmental disorder characterized by significantly impaired intellectual and adaptive functioning. It is defined by an IQ under 70, in addition to deficits in two or more adaptive behaviors that ...
@terse osprey
are y'all still going on with your accelerationism?
idk, they're really on some weird political stuff
have you considered moving the fuck out to another server?
where things like !rule 1/!rule 2 don't exist
it's been suggested a few times
can you use words my tiny brain can fathom :(
@misty sinew i just found out that in the coming future words like 'challenged' or 'slower' could become offensive as well .....to which you were referring to earlier
kinda absurd right?
m not blaming you
m just talking about it
i agree with you here
Intentionality fallacy โ the insistence that the ultimate meaning of an expression must be consistent with the intention of the person from whom the communication originated.
!rule 1 @misty sinew @sinful elm https://www.pythondiscord.com/pages/code-of-conduct/
1. Follow the Python Discord Code of Conduct.
i am breaking no rules in here
as far as i am concerned
at least read it in full one more time
one day soon:]
the instantaneousness of your reply signals that you haven't bothered yourself with reading anything on that page
it takes more than a minute to read.
if i am violating any rules (which idts)then please do ping me with the rule number mentioned ty
overreading
take the time and find it yourself.
couldnt find any as i mentioned this
nutrition without meat? hmm sounds inetresting
Python Enhancement Proposals (PEPs)
The Code of Conduct for our community.
def example():
a = 1
b = 2
return lambda: a
stack frame, bounding a and return also includes b
or if it was function-scope-wise
if you already store data mostly on the heap, it might be cheaper to RC the closure
A
002 | Traceback (most recent call last):
003 | File "/home/main.py", line 6, in <module>
004 | print(g.send(None))
005 | ^^^^^^^^^^^^
006 | StopIteration: B
this code?
I'm actively losing the seasonal ranking
I was top7
I'm top82 now
wth is this kerning
p7
it looks wrong
oh
ik
i saw that
tail recursion is a reward of its own?
oh
.xkcd 1270
"nope" not "no-op"
nooฬp
I have never built a language on my own , will this book help? crafting interpreters one
(that's diaeresis not umlaut)
i hear it's good, but only anecdotal
!e
def foo(n, l):
if n == 0: return
l.append(n)
foo(n-1, l)
res = []
foo(10, res)
print(res)
@pale pivot :white_check_mark: Your 3.11 eval job has completed with return code 0.
[10, 9, 8, 7, 6, 5, 4, 3, 2, 1]
no return, not pure
by any definition, it literally mutates state
what's your definition of pure?
returned value of the subcall
there is none
(a function that either returns a value) or a "pure*" call to itself
- returned value of the subcall gets directly returned by the calling thing
...(a function that either returns a value) or (returned value of the subcall gets directly returned)
both of your clauses require a return value
"accidentally equal to" lmao
in reality the condition is just that you don't need the state of the current function after the recursive call is made
my whole point is your insistence on returning
you don't need to return the value of the subcall
you just need to make sure the recursive call is the last thing you do
actual valid example of not returning if you want one
fn f() -> ! {
f();
}
not these
fn f() -> ! {
f()
}
fn f() -> () {
f();
}
fn f() -> () {
f()
}
(will not delete because this is the first message in this discussion, to which any of the parties involved applied any intelligent thought)
wow you really don't like being called out on a technicality, do you?
aka I can't do any handwaving to explain the first one
?
nvm I'll find better stuff to do

\u007c : VERTICAL LINE - |
This image satisfies me.
cgv
!voice no canal
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
.snake card
A wild Lycodon Capucinus appears!
bro im ki
hello can u see my chat
@crystal aurora
im in vc
yo
i have some question actually
like im kinda new
sorry i was afk
also as i was saying man
how do u make those ui with python
yeah
oh
im like in the biginner phase
also you are not sharings creen
ALRIGHT
IS IT LIKE a real website?
taught it was just a game
LOL
heh
i dont really know
i was following tutorial
def my_function(x):
if x == 0:
return x
else:
return x + my_function(x - 1)
result = my_function(4)
print(result)
Okay so looking at it here, let's walk through it manually, since that's really the only way to get recursion at first
We call my_function with the argument 4 which gets assigned to x. So it goes through the if statement, sees that x != 0, then goes to the else. We're then left with
return x + my_function(x - 1)
# or in this case
return 4 + my_function(3)
@ripe acorn with me so far?
just a second just analysing ur prev texts
Take your time, and don't hesitate to ask questions
Ok got it, next
So the next thing we do is run my_function(3)
wait is it necessary to be in the vc?
Okay thnx
Okay so then? The same thing repeats ryt?
We go through the same chain, see that x isn't 0, then we get to:
return x + my_function(x-1)
# so
return 3 + my_function(2)
If we look through the whole thing now, we can think of it as:
return 4 + (3 + my_function(2))
We keep running it over and over until we end up at the base condition, the x == 0
Oh yeahh okay so it's like 4+3+2+1?
Bingo
Nope, it'll print the 10. Because we're returning back to each level
return 4 + (3 + (2 + (1 + (0))))
The important part is the base condition. That's the key part that makes recursion work
Oh okay thank you!
Thank you understood it!
We have to have a point where we say "Okay, we can't change this anymore, it can't go any lower, etc."
Cool cool
Glad I can help! Recursion is tricky, it takes some getting used to
Alrr!
But the key is just taking your time and stepping through it
Yeah TwT
Thank you! Next time gonna do this way!
Sure!
That's a bit out of my wheelhouse, unfortunately. #data-science-and-ml would help better than I can
my firt code
n2 = float(input('second number: '))
s = (n1 + n2)
print(f'The operation is {s}')```
this is a good start
try to make a full calculator it's good practice
hi
hey
@blazing garnet hi
I can't open a file in my script, it puts me like thisยฒยฒFileNotFoundError: [Errno 2] No such file or directory:
pretty cool
That was quite some time ago
The history of measurement systems in India begins in early Indus Valley civilisation with the earliest surviving samples dated to the 5th millennium BCE. Since early times the adoption of standard weights and measures has reflected in the country's architectural, folk, and metallurgical artifacts. A complex system of weights and measures was ad...
The history of measurement systems in India begins in early Indus Valley civilisation with the earliest surviving samples dated to the 5th millennium BCE. Since early times the adoption of standard weights and measures has reflected in the country's architectural, folk, and metallurgical artifacts. A complex system of weights and measures was ad...
Old Indian measures are still in use today, primarily for religious purposes in Hinduism and Jainism. They also are employed in the teachings of Surat Shabda Yoga.
Visualization and explanation of the Lorenz Attractor (an example of a strange attractor) from the documentary "Weather and Chaos: The Work of Edward N. Lorenz." Full movie and credits: https://vimeo.com/287523707
tyo
damn
i cant even speak
sword ani looks cool to me as well
agreeed
@digital cradle it took you 1 year to learn how to make that? or it took a year to craft it over time
ohh
touch bar intergration whattttttt
an AI LMFAOOOO
wtf
bitcoin minr uhohh
@primal quarry let me make some connections ๐
ik there is other programming servers
i js cant find any others but here
and programmer hangout
and people to make friends with because im really trying to learn python
oh okay i joined here yesterday
there is Rust Community server
what is the issue?
(if Google API is the Firebase API)
https://firebase.google.com/docs/reference/admin/python
other Google APIs might have their own dedicated packages
though, I think, Google focuses more on support for JS/golang rather than Python
!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 floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.
I didn't know about that
!stream 380636940078284800
โ @bitter raptor can now stream until <t:1682617864:f>.
@chrome stratus Talk in here so you can get your message count up
So what's wrong with the macro?
One sec, restarting my rig
fasho man thanks, so everything so far is working but im not sure how to make my character stop going right, go forward, stop going forward then go left and then forward at specific times
Which game?
minecraft
import pyautogui
#print(pyautogui.size())
pyautogui.moveTo(900, 302,)
pyautogui.click(900 , 302, button='left')
pyautogui.keyDown("D")
pyautogui.mouseDown(995, 490, button='left') that is what i currently got
Free keyboard macro program. Supports hotkeys for keyboard, mouse, and joystick. Can expand abbreviations as you type them (AutoText).
so i should use auto hotkey?
That's what I'd recommend
I'm given to understand it was originally written to service naval vessels.
So does spinach.
I..... what?
Ah, yes. Foosball. An essential component of any first-aid course.
Teaches how to be nimble
The spray bottle.
SST!
"No! Bad! Don't you dare have a heart attack in my classroom."
Hello guys! I need some help! How could I use python to ask chatgpt a question and scrape the answear?
๐
the api doesnt work for me
since is not free anymore
and I do not want to pay for it
Can I maybe use something else?
No..not avoiding payings
Look for a free alternative
@mild flume sorry, what were you messing up with on that class instance again? you were using a dictionary function to read it and were explaining the reason as to why a parameter had a bunch of numbers on it
So I basically want to use ai to give me a different product everyday then give me a short description of it and the price, thats all, nothing hard
!e
print(int.__dict__)
@mild flume :white_check_mark: Your 3.11 eval job has completed with return code 0.
{'__new__': <built-in method __new__ of type object at 0x7fd957b139a0>, '__repr__': <slot wrapper '__repr__' of 'int' objects>, '__hash__': <slot wrapper '__hash__' of 'int' objects>, '__getattribute__': <slot wrapper '__getattribute__' of 'int' objects>, '__lt__': <slot wrapper '__lt__' of 'int' objects>, '__le__': <slot wrapper '__le__' of 'int' objects>, '__eq__': <slot wrapper '__eq__' of 'int' objects>, '__ne__': <slot wrapper '__ne__' of 'int' objects>, '__gt__': <slot wrapper '__gt__' of 'int' objects>, '__ge__': <slot wrapper '__ge__' of 'int' objects>, '__add__': <slot wrapper '__add__' of 'int' objects>, '__radd__': <slot wrapper '__radd__' of 'int' objects>, '__sub__': <slot wrapper '__sub__' of 'int' objects>, '__rsub__': <slot wrapper '__rsub__' of 'int' objects>, '__mul__': <slot wrapper '__mul__' of 'int' objects>, '__rmul__': <slot wrapper '__rmul__' of 'int' objects>, '__mod__': <slot wrapper '__mod__' of 'int' objects>, '__rmod__': <slot wrapper '__rmod__' of 'int' ob
... (truncated - too long)
Full output: https://paste.pythondiscord.com/sulejakati.txt?noredirect
Sorry I might misspell some words since I am eating a yogourt with rice in it and even tho it is healthy it tastes so bad
All good
does instagram still allow automate posts using python?
The internet says it might not but I would understand why..
That I'm not sure. I thought they closed their public facing API
hello
hmm...I should have looked that up before starting to work on my new idea which is actually based on it oh..
am i now allowed to talk or i will be like.....interrupting
I might be wrong
I'm honestly not sure, I'm kind of half paying attention. But they do seem to still be talking. You can type in here
well since last time what happened
I know
you can freely walk if you are on point and of course, if you are verified
i dont want to risk get banned of this server
no one will ban you just because you wanted to join the conversation
ask hemlock
Schin op Geul
if you are listening and want to join by saying smth meaningful you can do it
When people bull rush into a room, talk over everyone, continue to talk over everyone after being asked to not...
Yeah that ends up getting old
Honestly this is such a quality server and getting ban on it would be a shame..
I appreciate that a lot
yes thats why i dont want to get banned off of here
I'm not going to ban unless I have to
I have a pretty high metabolism. I canโt really gain much weight. Iโm stuck at 165
So has anyone tried and used the Open assistent? Basically the alternative of ChatGPT?
I am watching a vid now and I wanted to get some reviews
Hadn't even heard of it
im not stuck "yet" there but im already at thatheght
Me too, but I am still a teen so that my change. i ve been trying to bulk up but I burn calories just by living basically ahaha
theres this one called GPT4ALL
it completeley local free
does it also have an API?
ig yes
meanwhile me at 145
I am barely 130
but you're probably also shorter than me
im sorry but that is goblin height sorry bro
no offense
weight?
but I am also 167cm and just 14 years old(52 kgs)
oh wait
yeah I'm 192 cm
i misheard๐
daaamn, guy got the height genes
wait you talking in pound or kg
well im a literal stickman
52 kg and 130 in pounds I guess
im almost 32 kg ๐
ah. like me
yeah that seems pretty low
and for my age im kindatall
I go to the gym so thats why i am considered skinny and I need to gain weight
3 kgs and you become funni weight
Waait how old are you?
5 kgs you mean
you 64 kgs
69-64=5
^
thats why this server doesnt really want 14 year olds in it haha
daim im kinda bad at math
TF
well...... i find this server real useful
better than stackoverflow
Not really the case at all, actually
for me
We want anyone who wants to learn the language
Speaking of which, tomorrow I have a math contest
next sunday is my final exams
Ye, tbh everyone has been very polite with me since I got here, even tho I got here when I was just 13 and was probably not really great at programming and not really knowing what I was talking about( not saying that now I am more elevated tho)
is it ok to say opinions here or it will be like a twitter thread
Whats the max amount of people that this server can have @mild flume
Parce-que @unique raptor ?
The server proper or the voice channel
Je ne suis pas franรงais @unique raptor I just speak more languages
the server
No idea. Pretty much when you start approaching certain amounts you have to give Discord a holler to make sure they adjust it to accommodate the additional users. Or something. Not 100% sure
How could I get more roles on this server?
I am gonna have to wish you all a good night since my wrist watch is indicating the midnight
@raven orbit are you autistic and color blinded?
yes
Sleep well
How do you identify yourself as an autistic as you dont mind? i just think you are very normal
Oh f meds honestly
I don't take meds.
and just how do you think you can judge if someone is normal through a voice chat?
the simple fact that you are having a normal conversation and you are on a server that has as a topic programming, something that isn't so easy/so accessible to all of the people
But it is known that autistic people have special abilities as well
autistic people are highly overrepresented in programming
both in hobby areas and in the industry
I just think that autistic people are like normal people as well, I dont really make differences between people
of almost any kind
And I also think there might be a lot of autisitic people without even knowing they are
I think this is a really common scenario
alright, take care people!
why do you always keep telling him that he is jewish @unique raptor
because he has dementia
maybe he keeps forgetting he's told me
๐ค
maybe he has dementia
wus-ter-sher sauce
the city is called worcester and pronounced wus-ter
the shire is called worcestershire and pronounced wus-ter-sher
the sauce is called worcestershire sauce and pronounced wus-ter-sher sors
@rotund granite
you also have
gloucester, pronounced glos-ter
gloucestershire, pronounced glos-ter-sher
leicester, pronounced Les-ter
leicestershire, pronounced Les-ter-sher
bicester, pronounced bi-ster
marylebone, pronounced mar-lee-bun
hunstanton, pronounced hun-ston
!v mute
which game you guys are talking about?
@idle crystal @lament badge ๐
yo!
@raven mantle Down here. ๐
hey
Yahoy.
how are you
Crotchety.
hello
hey
@unreal bison ๐
hi
how was everyone's day
def press(num):
global expression
expression = expression + str(num)
equation.set(expression)
fine, learning python today for the first in my life
can anyone explain this?
have fun with learning this language, it can be very useful
explain what?
I dont understand the first line
Good night ๐ญ ๐
good morning?
True
yes, im learning it because i want to do some sport stats things, im at the statistic deparment
isnt this a function?
yes
sorry neither can i, all i know is it is doing math.
did you just start today?
oh, I'll search it up then๐
thank you.
how are you learning? what method?
your welcome, I hope you figure it out!!!
Jackpot!
you get it?
def press(num) is a function that concatenates the number passed to it as a string to the expression variable and updates the text displayed in the text entry box accordingly.
just downloaded python, downloaded an extension to make VSC to work with python and right now im just touching things xD
yes
so what equation.set do?
are you watching youtube tutorials on how to code?
update the expression by using set method
i told you i started like 5 minutes ago xD, i dont even know what to learn, is there a wiki of python or any good resource where i can learn
but as i already how to code with c++ im just trying to figure out things that i do in c++ in python xD
it sounds silly but it works
c++ and python are totally different
well, good luck learning!
oh really?
go to python.org then go to the docs section of the website there is going to be everything you need.
man don't get offended ๐
im asking
really? i dont see they are that different
checking the docs right now
they are similar languages, relative to like lua or somthing
cool
oh lua, i used lua a long time ago while making Super Mario Bros X levels xD
my friend tried to force me to learn lua so I could make roblox games with him
Python supports garbage collection. C++ doesnโt support garbage collection, but it can be implemented.
garbage collection? what is that
the process of automatic deletion of unwanted or unused objects to free the memory
sooo, python is lightweight, thats what i understand
good night everyone, have a good rest of your days
i tried to make some roblox games with a friend, but we were just good at programming, nothing else
good night
good night , I guess?
xD
here 1:12AM
๐
im a bat
a batman
today is sabado, so everything is okay
sunday
bat man?!
it's saturday here๐
yes its saturday here
i was wrong
india
oh
portugese?
ok im just bad at dates
spanish
hahaha, portuguese and spanish its almost the same
what do you think about the AI to help you code
Ya
It may be helpful, but it may also not be a beginner friendly experience since it would assume you already knew it.
also you need basic understanding of python code for you ti understand
yes, i already know about c++ and im using the latest microsoft AI to help me code faster and i think its pretty accurate
and it only teaches the basics if you ask
i dont use it with python because i dont know a thing about python
it can help to write functions and suggest you things
its pretty good, but i notice that if its too advanced it will do a lot of mistakes
you also need a code before hand
to ask doubts and for you to get explanations.
I hope you find my opinion helpful! and it's your option!
of course that its helpful
thank thanks
Yo whatsup?
QUALITY
lol
YEAH
making them overpriced
thats why people always want them
wwait
you dont have ajob?
SHE A BDDIE
am botta get banedAHHHHH
yo also
parser
PARSER :d
Yโa des fr ?
@junior totem ๐
Hi all
I'm trying to build something similar to profilepicture.ai
Can someone please connect with me? I need a little help?
such a weirdly laid out diagram
here the equivalent of school finals isn't necessary linked to a school
also some teachers are required to take those exams themselves every year
"indirectly bullying someone into resignation" plan
The Ministry of Labour & Employment is one of the oldest and important Ministries of the Government of India.|Government of India
I re-joined at some point
there do exist good free courses for ML (with somewhat respected certification if you meet some "successfully passed" threshold)
but the only one I took isn't in English
(University-specific courses usually)
pick a university/institution you already know of
(either local or more world-known ones)
check whether or not they have ML courses
!rule 5 @fading totem
5. Do not provide or request help on projects that may violate terms of service, or that may be deemed inappropriate, malicious, or illegal.
... for reasons
Hemlock Im banned?
@devout sedge ๐
hi
@wispy flare ๐
hi
hello
@verbal minnow ๐
๐๐
ye i dont mid to write
i need a hand
i did a lesson whit python and i cant understand time date command
yes
!d datetime
Source code: Lib/datetime.py
The datetime module supplies classes for manipulating dates and times.
While date and time arithmetic is supported, the focus of the implementation is on efficient attribute extraction for output formatting and manipulation.
!e py import datetime now = datetime.datetime.now() print(now)
@stuck bluff :white_check_mark: Your 3.11 eval job has completed with return code 0.
2023-05-04 19:36:04.245030
so the format is -%d -%m -%Y?
A quick reference for Python's strftime formatting directives.
you save me
dont worry you alredy help me a lot
how do i get verified to speck to the chats do i need to send some id
?
hooo
okay
but dose this count
yee i think this is one of the best approce
ye but i hate the people who mic spam
they called kids
well ye it better that way becouse i got a bad mic on my lpatop
maibey the create a discord bot
no
maybe the person who blow in the mic created ca discon bot that send text evry 5 min to bypass the mute and start mic spamming
well ye
well it easy whit chatgtp
no, they interacted more naturally previously
they did support some other troll in the VC earlier but not to extremes
like this
!code
โโTestโโ
@stuck bluff hi
Are you good at math?
Simplifying square roots.
Lol
no
this is studying
LOL
@fierce void
I don't they see this chat.
I'm just confused how this works.
Ok hold up let me show you like what I have so far.
omg
Phone
being stupid
ok, uploading
I just don't understand how it's combined. I get the factoring.
@fierce void
I'm a coder not a mathematician. ๐ญ
Wha?
how to get it to the end result
yes
how did it get to 6 | 3
I'm just wondering if the last 3
comes from the remainer
at the 3 * [3]
2^2 * 3^2 * [3]
um
lets say
144
AI:
To simplify the square root of 144, we can follow the steps:
Factor 144: 144 = 2 x 2 x 2 x 2 x 3 x 3.
Identify the perfect square factors: 2 x 2 x 2 x 2 = (2 x 2)^2 = 16, and 3 x 3 = 3^2 = 9.
Take the square root of 16 and 9, and move them outside the radical: sqrt(16) = 4, and sqrt(9) = 3, so sqrt(144) = 4 x 3 = 12.
There are no remaining factors inside the radical sign that can be simplified further.
Therefore, the square root of 144 simplifies to 12
So
lemme do that by hand and see if it matches.
duded its so funny listening to both of u yall so confused
@barren steppe Butterscotch schnapps, Bailey's Irish Cream
@misty sinew ๐
hello
Hello
@blissful fossil๐
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
hahahaha
@turbid silo ๐
hey hi , is this chat about tech ? or anything related to python or data science or something like that or general talk ?
oh cool ))
I am more interested in talking how AI and data science will effect our general lives
thanks bruv
@misty sinew๐
will anyone talk ? or you ppl are waiting for someone ?
oh yeah makes sense
I can give one
print(print())
!e py return_of_print = print('Hello, world.') print(return_of_print)
@stuck bluff :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | Hello, world.
002 | None
Nonetype itself is a class
yeah
I don't his question tbh
can you give a code example or smth ?
Thank you
@compact jay๐
btw this had me puzzled to this day : print(print()) , will give an op : None
the above code will print space and then None
why is that ?
!print-return
yeah print() returns None
!e ```py
def func():
pass
print(func())```
@stuck bluff :white_check_mark: Your 3.11 eval job has completed with return code 0.
None
Yeah got it @stuck bluff
hey what y'll think of these LLM's in the market ?
yeah
things like that
ppl who belive that it will replace coding jobs , I feel they don't have any idea what they are talking about !!
yeah that'
anoying
tbh I have seen exact same answers from stackoverflow given as a res from gpt
they have trained all that qna type of thing on stackoverflow , I have seen exact same answers given by ppl on stackoverflow
Trickster 
is everyone comfy If I can ask some questions related to ML pipe line and stuff ?
oh cooL )
are you @stuck bluff into cs stuff ?
btw I m to this discord world , so i have couple of questions
when I join a voice chat , should I verify that I am not a bot to speak or how it is ?
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
You must meet all of the following criteria before you can speak in voice channels:
โข Have over 50 messages in the server.
No should I have 50 messages spammed ? ))
lol
๐
well ye you can great people
I wonder what would happen if ww3 happens and it's a nuke one
all these tech jobs ? ๐
I doing trying to text 50 messages
here
what keyboard you have ?"
does any one has any idea about string theory
yes
well if it happen all the tech jobs will scar rocket