#voice-chat-text-0
1 messages · Page 388 of 1
!e
Missing required argument
code
!e print("string"[1:])
:white_check_mark: Your 3.12 eval job has completed with return code 0.
tring
days_list = {"monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"}
user_input = input("please write a day to get the next day! ")
user_input.lower()
for user_input in days_list:
user_input == days_list
print(f"That is a day of the week! {user_input}")
lol well... this was better than what I did before
AI: *You and your group of friends decided to go on a trip to a campground. after unpacking and setting up camp it was time sleep. at about 2:32 in the morning, you woke up to the unsettling feeling of being watched.*```
AI: As you steal the R3 T20 tank, you notice that the campground has become eerily silent. The crickets have stopped chirping, and there's no rustling of leaves in the wind. You suddenly hear heavy footsteps approaching your tent, where you hid the tank.```
malice?
the motivation to doing evil
to do* or the will to do evil
@main comet
unmaliciously handing the definition 😉
Alice in Wonderland is a 2010 American fantasy adventure film directed by Tim Burton from a screenplay written by Linda Woolverton and produced by Walt Disney Pictures. The film stars Mia Wasikowska in the title role, with Johnny Depp, Anne Hathaway, Helena Bonham Carter, and Crispin Glover, while featuring the voices of Alan Rickman, Stephen Fr...
Christopher Lee might've been a bit scary
You: aeiou?
AI: You and your group of friends decided to go on a trip to a campground. after unpacking and setting up camp it was time sleep. at about 2:32 in the morning, you woke up to the unsettling feeling of being watched.
You: steals your R3 T20 tank
AI: As you steal the R3 T20 tank, you notice that the campground has become eerily silent. The crickets have stopped chirping, and there's no rustling of leaves in the wind. You suddenly hear heavy footsteps approaching your tent, where you hid the tank.
You: I dont like this! hops in tank
AI: *The tank roars to life as you quickly seal the hatch, the engine growling menacingly. The footsteps outside stop, replaced by an ominous silence. Suddenly, you hear a loud bang against the side of the tank, followed by another and another.*
"Try living in America" as an american, no.
The best place to be an American is anywhere but America lol
yo. Covid... I went through that in China.
Literally got locked down for months on end
So thankful that I never got sent to a quarentine facility
those were terrible.
new game?!
I need to finish frostpunk2
that game though... def makes you feel like you're destroying the world
it's super post apoc
clash of clans
the look of it
not the gameplay
ok, I gotta get some work done. y'all take it easy 🙂 thanks for chatting!
in 3 days I will have talking priviledges haha
awesome
temp_conv = []
with open(file_dir, 'r') as file:
for line in file:
if line[0] == "1":
chunk = line[1:]
temp_conv.append({"role": "user", "content": chunk})
if line[0] == "0":
chunk = line[1:]
temp_conv.append({"role": "ai", "content": chunk})```
print(r"HELLO")
that translator would be revolutionary @tacit crane 🤣🤣
chatting so I can talk day number 43
Hi
!paste
Pasting large amounts of code
If your code is too long to fit in a codeblock in Discord, you can paste your code here:
https://paste.pythondiscord.com/
After pasting your code, save it by clicking the 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.
afaik new pastebin allows multi file upload
!e
from random import randint
class Example:
def __init__(self, value=randint(1, 100)):
self.value = value
print(Example().value)
print(Example().value)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | 22
002 | 22
TaskList.tasks should be a dict, since you're doing lookup by id
or take an iterable and make a new list
and default to ()
!e ```py
def func(my_list = []):
my_list.append('...')
print(my_list)
func()
func()
func()```
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | ['...']
002 | ['...', '...']
003 | ['...', '...', '...']
!e ```py
def func(my_list=None):
if my_list is None:
my_list = []
my_list.append('...')
print(my_list)
func()
func()
func()```
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | ['...']
002 | ['...']
003 | ['...']
!e
class TaskList:
def __init__(self, tasks):
self.tasks = tasks
def main():
tasks = []
task_list = TaskList(tasks)
tasks.append("task")
print(task_list.tasks)
main()
:white_check_mark: Your 3.12 eval job has completed with return code 0.
['task']
if task.id == id:
...```vs```py
if(task.id == id):
...```
parentheses after if come from somewhere C-adjacent; some consider that requirement a design flaw
if (condition)
statement;
if condition {
statement;
}
first is shorter when multiline, and I'm not sure if that's a benefit
generate the id, default the status
(about filling in missing values)
id_
:white_check_mark: Your 3.12 eval job has completed with return code 0.
local
!e ```py
def func():
print(value)
value = 'global'
func()```
:white_check_mark: Your 3.12 eval job has completed with return code 0.
global
@somber heath it's already written with argparse I think
!e ```py
def func():
type = 'local'
print(type)
type = 'global'
func()```
:white_check_mark: Your 3.12 eval job has completed with return code 0.
local
instead of interactive
!e ```py
def func():
print(type)
type = 'global'
func()```
:white_check_mark: Your 3.12 eval job has completed with return code 0.
global
!e ```py
def func():
print(type)
func()```
:white_check_mark: Your 3.12 eval job has completed with return code 0.
<class 'type'>
Builtin.
since you're checking all ids anyway, you might as well just take max(task.id for task in self.tasks)
https://paste.pythondiscord.com/67VQ#1L22-L22
how i make it 1 again
@lime fractal It's simple
Just click on that 4mb partition and delete it
It will become full size again
????
@lime fractal check your dm
hi @valid slate
Hello
Yeahh, lol I am just a beginner to python and was just wandering around
i m also a beginner just know the basics of python too hahahaha
but i m an engineer with speciality in ai so i m just trying hahaha
it's normal they say python easy it's not hahahaha
i m still trying with this @ symbol before the functions
and everytime i understand it in a way and i m like yeah i finally got it and later noooooooo
I just got into an engineering degree and we have python as one topic lol
Loll, what is even that. Probably will learn it in some days
i still don't know haahaha but i learn it while learning django hahhaha
Hahaha
(And after a few years Houssem was the greatest coder)
Okay byè good sir, I will go study chemistry lol.
Have a great day
@noble umbra
Cambodia
បញ្ហារបស់អ្នកព្យាយាមពន្យល់ជាភាសារបស់អ្នកតាមរយៈអត្ថបទ។
តើអ្នកកំពុងព្យាយាមអ្វី។ @noble umbra
Happy New Year 2025
https://how-to.dev/how-to-read-the-documentation
@noble umbra
hlo
@unique sorrel 👋
@somber heath https://www.youtube.com/watch?v=VOxCU3wY3kA&t=101s
⚖️ Do you need a great lawyer? I can help! https://legaleagle.link/eagleteam ⚖️
Be Florida, not Florida Man. 👨💻 Remove personal information off the web with Incogni! Go to https://legaleagle.link/incogni and use code LEGALEAGLE at the checkout.
Welcome back to LegalEagle. The most avian legal analysis on the internets.
🚀 Watch my next vid...
@gray magnet 👋
hi !
@lilac geyser good how ru
can you help me guys ?
VIRTUAL_WIDTH = 320
VIRTUAL_HEIGHT = 180
try:
SCREEN_WIDTH, SCREEN_HEIGHT = arcade.get_display_size()
except OSError as e:
print(f"Erreur système lors de la récupération de la taille de l'écran : {e}")
SCREEN_WIDTH, SCREEN_HEIGHT = 800, 600
except Exception as e:
print(f"Une erreur inattendue est survenue : {e}")
SCREEN_WIDTH, SCREEN_HEIGHT = 800, 600
WINDOW_WIDTH = SCREEN_WIDTH // 2
WINDOW_HEIGHT = SCREEN_HEIGHT // 2
class Platformer(arcade.Window):
def __init__(self):
super().__init__(WINDOW_WIDTH, WINDOW_HEIGHT, "Platformer", resizable=True)
self.camera = arcade.Camera(VIRTUAL_WIDTH, VIRTUAL_HEIGHT)
self.center_window()
self.set_update_rate(1 / 120)
self.x = 0
self.y = 100
self.time_since_last_render = 0
def center_window(self):
self.set_location(
(SCREEN_WIDTH - WINDOW_WIDTH) // 2,
(SCREEN_HEIGHT - WINDOW_HEIGHT) // 2,
)
def dessiner(self):
arcade.start_render()
arcade.draw_rectangle_filled(self.x, self.y, 50, 50, arcade.color.RED)
def on_resize(self, width, height):
super().on_resize(width, height)
self.camera.resize(width, height)
def update(self, delta_time):
self.x += 0 # temp
self.time_since_last_render += delta_time
if self.time_since_last_render >= 1 / 60:
self.dessiner()
self.time_since_last_render = 0
game = Platformer()
arcade.run()
the transformation scale dont work
@dry roost check dms and apply what i sent to ur code
@lilac geyser bravestcheetah.pages.dev
thnaks
!paste
Pasting large amounts of code
If your code is too long to fit in a codeblock in Discord, you can paste your code here:
https://paste.pythondiscord.com/
After pasting your code, save it by clicking the 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.
@lilac geyser https://paste.pythondiscord.com/KPJA
@lilac geyser class ModData:
data = {"Sodium":{"download":"temp", "version":"1.21.4"}, "AppleSkin":{"download":"i dunno", "version":"1.21.4"}}
Ssup
hi
I woke up this morning with conjunctivitis in both eyes. The local guitar legend, could probably turn that into a 21st-century blues classic. But it is actually the truth. I needed to go to the doctor, so I took the morning off work - and what a splendid morning it was.
Check out our new TRESemmé Keratin Smooth TV advertisement to find out what your hair routine is missing!
Hello 🤗
How was your 1st jan?
@somber heath Nice PFP opalmist
Now it's me all alone
Which makes me void
You are not allowed to use that command here. Please use the #bot-commands channel instead.
Provided to YouTube by Horus Music Ltd
Jingle Hell · Christopher Lee
A Heavy Metal Christmas Too
℗ 2013 Charlemagne Productions Ltd
Released on: 2013-12-09
Producer: Charlemagne Productions Ltd
Music Publisher: Charlemagne Music Publishing
Music Publisher: Charlemagne Productions Ltd
Composer: Juan Ramirez
Lyricist: Juan Ramirez
Auto-gen...
hi
@rough silo 👋
hi
writing my lab report on op-amps and I completely missed what I was supposed to do and now kicking myself after re-reading the lab sheet and my log book
nifty chips @terse needle
honestly I have learnt so much about op-amp and this has been one of my favourite topics so far
very high gain , high fidelity amps
hmmm , 10 Mhz
this report is now a pain in the ass because I have to side step the fact I didn't really read the instructions whilst still gaining the marks by showing that I understand what I need to
then re-do it for yourself , and make a list of op-amp applications , and actually build them , make notes in your design book @terse needle
the re-doing it myself part is me rebuilding all on LTspice, I don't have access to oscilloscopes to be able to redo it
or signal generators
or resistors
but to be honest I think I'll be okay
can use a op-amp to make sine wave generator - nice and clean , do audio experiments
do you have a old record player ? , make a pre-amp for that , runn off batteries
the marking rubric has nothing to with actually completing the task correctly just about showing an understanding of op-amp circuits and correctly designing and constructing one
What's the due date for the report?
Basic op-amp book will have a lot of op-amp configurations for all sorts of things , look for one and start day dreaming
Absolutely not
Why not
because I have zero interest in doing so
Ok
2 ssd 1 Windows not using
1 i want instal dis on
But it got 2 tb so 244 gb unlocated
And 244 gb i want the bazzite on
Where mouse is i want bazzite on
@steady sail ill just talk here for a bit
okay
ya this is sick
i fw it
dude @steady sail im gonna cry bro
i fixed this freezing shit last night
and now its broken again
😭
man fuck mongodb
can we just use aiosqlite
ya thats sick
DUDE SQLITE IS SO MUCH BETTER
MONGO IS FREEZING THE CODE
no dude
lol
my db
with my old pom bot
was managing 250k entries
a day
the fact that it works? 😭
mongo is freezing the responses of thhe AI
@spark girder
import requests
link = 'https://d755a5762673.ngrok.app/'
heads = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36'}
x = requests.get(link, headers=heads, allow_redirects=True)
y = requests.get(x)
print(y.text)
function
x = requests.get(link, headers=y.headers, cookies=y.cookies, allow_redirects=True)
x = requests.get(link, headers=heads, allow_redirects=True)
# y = requests.get(x)
print(x.cookies)
[for i in o]
[for x in y]
[i in i for i in i if i := x and x != i]
[for foo in bar]
(async x for x in i if x % 2 == 0 else x * 2 for x in range(n))
import asyncio
async def processNumber(num):
await asyncio.sleep(.1)
return num * 2 if num % 2 == 0 else num * 3
async def main():
result = await asyncio.gather(
*[processNumber(i) if i % 2 != 0 else processNumber(i) for i in range(1, 11)]
)
print(result)
asyncio.run(main())
thats hot
class ArgInfo:
def __new__(cls, command: Command) -> str:
arguments = command.extras.get('arguments')
if not arguments:
return 'no arguments'
arginfo = ''.join(tuple(f"``{arg}``: {desc}\n" for (arg, desc) in arguments.items()))
return "\n".join((arginfo,))
class AliasInfo:
def __new__(cls, command: Command) -> str:
if not command.aliases:
return 'no aliases'
aliases = ', '.join(f'`{i}`' for i in command.aliases)
return aliases if len(command.aliases) > 0 else command.aliases
class HelpCommand(Cog):
def __init__(self, bot: TrapBot) -> None:
self.bot = bot
def sanatize_tuple(self, obj: tuple[Command]) -> str:
return ', '.join(f"`{cmd.name}`" for cmd in obj) if len(obj) > 0 else ''.join(cmd.name for cmd in obj)
@hybrid_command(
aliases = ['commands', 'cmds', 'cmd'],
description = 'basic help command',
extras = {
'arguments': {'command': 'command you need help with'},
'category' : 'utility',
}
)
@cooldown(1, 1, BucketType.member)
async def help(self, ctx: Context, cmd: Optional[str] = '') -> None:
if (command := self.bot.get_command(cmd)):
embed = self.bot.Embed(title=f'**__{command.name}__**',
description=
f"{command.description}\n\n"
f'**aliases**: { AliasInfo(command)}\n\n'
f'**arguments**\n{ArgInfo(command)}'
)
embed.add_field(name='category', value=command.extras.get('category'))
return await ctx.send(embed=embed)
commands: set[Command] = self.bot.commands
categories: tuple[str] = ('utility', 'moderation', 'security', 'owner', 'userinfo', None)
ctg_dict: HELPDICT = {category or 'other': tuple(cmd for cmd in commands if cmd.extras.get('category') is category) for category in categories}
helppage = '\n'.join(f'**__{ctg}__**\n{self.sanatize_tuple(ctg_dict.get(ctg))}' for ctg in ctg_dict.keys())
embed = self.bot.Embed(description=f'use `{ctx.prefix}help [command]` for more info on a command.\n\n{helppage}')
await ctx.send(embed=embed)```
!stream 925528147510841355
✅ @whole bear can now stream until <t:1735855985:f>.
@whole bear i don't what you looking for but try claude ai
Bro how can you see what's going on there
Could you expand on that?
The N print of editor transparency is too hard to read
I think that is p8p
php
Huge
Odyssey
No 360 degree display?
Laaame.
Oh, no, no. 360 degrees in both axes.
I want a sphere.
Suspend me from cables inside.
But like, really thin ones.
!stream 925528147510841355
✅ @whole bear can now stream until <t:1735861620:f>.
!stream 1293609724180299779
✅ @steady sail can now stream until <t:1735861648:f>.
zram, formerly called compcache, is a Linux kernel module for creating a compressed block device in RAM, i.e. a RAM disk with on-the-fly disk compression. The block device created with zram can then be used for swap or as general-purpose RAM disk. The two most common uses for zram are for the storage of temporary files (/tmp) and as a swap devic...
!stream 1293609724180299779
✅ @steady sail can now stream until <t:1735862577:f>.
That's a big flex
So what you're saying is that we should ban itertools.
@steady sail why starting the name with "__' ngl looks ugly
It has runtime logic significance.
oh my bad
!e ```py
class MyClass:
def init(self):
print('Hello, world.')
instance = MyClass()```
:white_check_mark: Your 3.12 eval job has completed with return code 0.
Hello, world.
It's what Python looks to run when an instance of the class is created.
The MyClass() on the instance = line.
Bro is a golang developer already, I guess he doesn't remember anything, it's over
It's also where you can give the instantiation process parameters.
I created a cool budgeting app built with Python Django called Moolahplan.
!e ```py
class MyClass:
def init(self, obj):
print(obj)
instance = MyClass('Hello, world.')```
:white_check_mark: Your 3.12 eval job has completed with return code 0.
Hello, world.
__init__ belongs to a group of callables named "special methods".
Or "dunder" methods.
Double underscore.
!stream 227885138623594497
✅ @tulip gyro can now stream until <t:1735863296:f>.
They generalyl govern the behaviour of things you do by means other than directly calling them.
is it because python is slow in runtime ? like the "__" is not needed if you're working with c++ since c++ is faster than python in runtime
!e ```py
class MyClass:
def add(self, _):
return 9001
print(MyClass() + 7)```
:white_check_mark: Your 3.12 eval job has completed with return code 0.
9001
It's not a speed thing.
"Here's the method we call when we do a certain thing."
!e ```py
class MyClass():
def getitem(self, value):
return value * 2
instance = MyClass()
print(instance[5])```
:white_check_mark: Your 3.12 eval job has completed with return code 0.
10
python execute the code line by line, but c++ execute all the code at once, right ?
boog = (8*(2**SIZE))
FILE = r"D:\python stuff\long_strong.txt"
var = ""
SIZE = 16 # 16 = 5 seconds
boog = (8*(2**SIZE))
def get_char():
id = random.randrange(0, 25)
alph = ["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"]
return alph[id]
while True:
for i in range(0,boog):
char = get_char()
var += char
break
with open(FILE, 'w') as file:
file.write(var)
print(boog)
print("done")```
!d random.choice
random.choice(seq)```
Return a random element from the non\-empty sequence *seq*. If *seq* is empty, raises [`IndexError`](https://docs.python.org/3/library/exceptions.html#IndexError).
!d string.ascii_lowercase
string.ascii_lowercase```
The lowercase letters `'abcdefghijklmnopqrstuvwxyz'`. This value is not locale\-dependent and will not change.
!e ```py
class MyClass:
def len(self):
return 9001
instance = MyClass()
print(len(instance))```
:white_check_mark: Your 3.12 eval job has completed with return code 0.
9001
!if-name-main
`if __name__ == '__main__'`
This is a statement that is only true if the module (your source code) it appears in is being run directly, as opposed to being imported into another module. When you run your module, the __name__ special variable is automatically set to the string '__main__'. Conversely, when you import that same module into a different one, and run that, __name__ is instead set to the filename of your module minus the .py extension.
Example
# foo.py
print('spam')
if __name__ == '__main__':
print('eggs')
If you run the above module foo.py directly, both 'spam'and 'eggs' will be printed. Now consider this next example:
# bar.py
import foo
If you run this module named bar.py, it will execute the code in foo.py. First it will print 'spam', and then the if statement will fail, because __name__ will now be the string 'foo'.
Why would I do this?
- Your module is a library, but also has a special case where it can be run directly
- Your module is a library and you want to safeguard it against people running it directly (like what
pipdoes) - Your module is the main program, but has unit tests and the testing framework works by importing your module, and you want to avoid having your main code run during the test
@main comet double N(const double& z) {
if (z > 6.0) { return 1.0; }; // this guards against overflow
if (z < -6.0) { return 0.0; };
double b1 = 0.31938153;
double b2 = -0.356563782;
double b3 = 1.781477937;
double b4 = -1.821255978;
double b5 = 1.330274429;
double p = 0.2316419;
double c2 = 0.3989423;
double a=fabs(z);
double t = 1.0/(1.0+ap);
double b = c2exp((-z)(z/2.0));
double n = ((((b5t+b4)*t+b3)*t+b2)*t+b1)t;
n = 1.0-bn;
if ( z < 0.0 ) n = 1.0 - n;
return n;
};
!e py print(__name__)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
__main__
It's really great when I'm in the middle of what I'm saying and people just bulldoze over the top.
self.configure(bg='lightblue')
I try to give way to people.
I do.
But it needs to be a two way street.
I know that I'm in Australia and so maybe there's a bit of latency.
But not when it's like a few seconds in.
import math
def N(z):
if z > 6.0:
return 1.0
if z < -6.0:
return 0.0
b1 = 0.31938153
b2 = -0.356563782
b3 = 1.781477937
b4 = -1.821255978
b5 = 1.330274429
p = 0.2316419
c2 = 0.3989423
a = abs(z)
t = 1.0 / (1.0 + a * p)
b = c2 * math.exp((-z) * (z / 2.0))
n = ((((b5 * t + b4) * t + b3) * t + b3) * t + b2) * t + b1) * t
n = 1.0 - b * n
if z < 0.0:
n = 1.0 - n
return n
OR
👍
does abs have a fabs 1 to 1 relationship?
and yes the above function i just gave
is what random is built on
without what i said
there is no random
Idfk I just read out the C++ and then wrote the Python equivalent
I was not thinking about the interaction between the variables outside of the math shown in front of me
think of it as a ticker tape running modulus through a list of numbers -> that is what random does
🤣
well if oyu want something really spicy u can just expose it to python
I'm all set 🙂
so you can do py:arg(N) and then expose it to pything in a pybinding
so it runs in c++ fast
and then python runs it itself
@wind raptor i stream?
can i ask a question?
About?
nueral network learning
You may like to look into the #data-science-and-ml channel if you don't get any satisfactory responses from here.
but can i ask it?
You can try.
huh??
pytorch?
transformers?
pytorch
@steady sail can you tell me your theme/font pls, really liked them.
showing it on stream
the color theme
thx bro
ive been trying to make a neuronetwork combined with a sort of macro mixed into it where it would scan a group images and click on a specific one for a set period of time and if it doesnt see the images it would skip to the next set of pictures, ive been using pytorch with cuda and anaconda and i was confused on how i can give my network pictures to learn from if im confined to a terminal
neural netowkrl earns relationships amongst parameters
0_0
learns*
wut
they dont sit there and scan images u have an agent that is scanning the images and basically "references" the learned information inthe network to reach a conclusion
the network itself you ca nthink of as a database of learn information
learned*
how do i give it the info while im confined to a terminal
i dont really know what you are asking exactly
because you would write an environment
train a netowrk
i see
train an agent to work on that network
and then you can pass information to the agent from terminal
and set it up that way
no i mean you need to import packages, torchvision, torchaudio, torch
you dont need "cuda" this whole thing about sticking it on GPUs vs CPUs is not a relevant thing for almost every1s ML applicationst hat they are just trying
ur not processing enough information to make one more advantageous than the other
gotcha
like i primarily train on CPUs
bc it is easier
it also depends on the relationships
like computer vision is best on GPUs
ok thanks
most RL stuff is better on CPUs
yeh i mean ig you could ask questions in the data science and AI channel (they dont actually know a whole lot they parrot a lot of stuff i dont like typing i nthere) but maybe you will find somehting of use for urself
just take everytghing they say with a grain of salt
🏖️ 💔
||A littoral broken heart.||
🕹️Break up with basic browsers. Get Opera GX here: https://operagx.gg/ChrisDaCow Sponsored by Opera GX!
GET KANZI MERCH ❤️🎉https://www.apeinitiative.org/store
▼ Watch UNCUT Kanzi Footage▼
https://www.patreon.com/chrisdacow
🎬 Behind the Scenes & Extra Footage: https://www.youtube.com/watch?v=isBJyacP58Y
🙊 Bonobos are GREAT APES not monkeys!
We...
how do i get screen share?
how they find this footage of me
chris da cow is really cool :D
anyone who plays geogusser here?
!stream 1241255088287252552
✅ @quiet sleet can now stream until <t:1735876651:f>.
This was the best Willie Wonka. Though Tim chalemet did a good job, the movie itself just didn't hit the way this one did.
I've not seen it outside clips.
The recent one.
So I've seen Gene Wilder and Johnny Depp.
"Are we awake?"
"We are not sure. Are we...black?"
"Yes, we are."
"Then we're awake. But we're very puzzled."```
Ghoti is a creative respelling of the word fish, used to illustrate irregularities in English spelling and pronunciation.
@barren hill 👋
prounced
lol
How hard to start from the beginning
http://thirdworlds.net
from "niggas on the moon", featuring björk
the first installment of the double album, "the powers that b"
Directed by: Death Grips
GUILLOTINE
It goes, it goes, it goes, it goes
It goes, it goes, it goes, it goes
Guillotine - yah
Sit in the dark and ponder how I'm fit to make the bottom fall through the floor
And they all fall down - yah
It goes, it goes, it goes, it goes...
Guillotine - yah
Out of the shadows barrage of ...

Provided to YouTube by The Orchard Enterprises
Philosophy of the World · The Shaggs
Songs in the Key of Z, Vol. 1: The Curious Universe of Outsider Music
℗ 2013 Key of Z Records
Released on: 2013-09-12
Music Publisher: Music Sales Corp. (ASCAP)
Auto-generated by YouTube.
hey :p
c++ is a PITA
it looks like rust and c++ but has the chaotic nature of js + py
idk why
yeah
in aus
@reef vessel 👋
My connection is bad
@crisp edge 👋
I will be going now since I wanna take a nap. I didn't realize I was typing for 4 hours lmao
You guys have fun :D
I also need some rest..
Take care 
How goes it
Nah
just joined
whatsa going on?
no i havent
@midnight agate ?
*just got back from being afk
Oo, reverse order this time
I think that's the first time I've seen you do that
UK
But... but I'm reading
I'm here for ya bud
Yarp
anyone wanna do a puzzle (:
What kind?
i wanna test my security, the puzzle is making a request to my login EP, without using an automated browser, using requests only. and it has to be a valid successful login.
(:
Uhhhhhh
basically i made it extremely hard to do automated requests.
sure
im using
ngrok
it's locally hosted
it's not a domain yet till i finish
well i can't tell you then you can solve it, but if you want to il turn on my laptop and host it locally
;?
so you can, try
if someone can, without giving up make a request via python, to the EP successfully
without using an automated browser instance
or a webdriver
We have no real way of validating it's your site. This really isn't something that we want people to be doing here
idk how the other other Alisa finds these random PRs; this one is funny as usual
https://github.com/actions/runner-images/pull/11271
uh if i show the backend 
but yea ig that is true
We don't do exceptions. Again, there is not really an easy way for us to validate. People can fake emails saying it's okay, they can fake this or that or the other
ah i see, okay i got it.
well, even if you send fake FP data, there isn't really a way to handle all cases, now validating if some of keys are there, which is checked. But to prevent that fully is impossible.
it might be a troll account, I'm not sure
probably is
because you can make the browser, solve a challenge, but there will always be a way to automate it. it's not fully preventable, but i made it a certain way to make people give up easy.
that is true.
i have not.
I know who this reminds me of
Original Gangster. So the one that started it all kind of thing (for context someone was asking what OG meant)
Yeah. It's kind of lost the meaning of that and is just a general term for the original or first of its kind
@midnight agate #1121179111956680706 message
I made sure not to mention the who, is that alright? I'm never sure if you're deleting it for anonymity or not
See you bud
@teal folio @tight tartan Yo to you both
Crap, back later
@steady sail you here?
Not atm why
@spark girder
what u think then if you do UI n shit
ttk bootstrap adds CSS like style properties.
pip install ttkbootstrap
https://ttkbootstrap.readthedocs.io/
TkinterDnD2 adds drag and drop features
pip install tkdnd2
https://github.com/pmgagne/tkinterdnd2
tkintertable adds csv like table cells ??? Idk how to explain it
pip install tkintertable
https://github.com/dmnfarrell/tkintertable
tksheet just a better version of tkintertable
pip install tksheet
https://github.com/ragardner/tksheet/releases
TkColorPicker just adds color picking simplified :)
pip install TkColorPicker
https://github.com/j4321/tkColorPicker
matplotlib TkAgg Backend
pip install matplotlib
https://matplotlib.org/stable/users/explain/figure/backends.html
tkscrolledframe
pip install tkscrolledframe
https://github.com/bmjcode/tkScrolledFrame
@spark girder my class just started, the lecturer came in. Need to go
@tacit crane https://en.m.wikipedia.org/wiki/Crested_pigeon
The crested pigeon (Ocyphaps lophotes) is a bird found widely throughout mainland Australia except for the far northern tropical areas. Only two Australian pigeon species possess an erect crest, the crested pigeon and the spinifex pigeon. The crested pigeon is the larger of the two species. The crested pigeon is sometimes referred to as a topkno...
@somber heath how to u keep changing your pic
Why or how?
Why? Because I feel like it.
How? The Edit Profile option of Discord.
There are two icons. A server profile one and a global one.
I'm changing my global one.
Hi im on a course
Thanks man
I just needed a theme and "escape from Bible school" was the theme
ok! posting code below. I don't want to offend anyone so there's mild references to religion here. It's not meant seriously. I respect all religions 🙂
I'd suggest considering rewording that short description, though not sure what would be the better alternative
well I could also just delete it.
Or just not share the game. I went through the code of conduct and I didn't see anything that stood out for not sharing it.
also, since that's probably a long code file, don't send it as a big message or an attachment, @wise cargo automatically deletes text attachment and messages with too many line breaks
!paste
Pasting large amounts of code
If your code is too long to fit in a codeblock in Discord, you can paste your code here:
https://paste.pythondiscord.com/
After pasting your code, save it by clicking the 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.
^ there's this
Thanks!
Hey
❤️
I can hear you.
I got a little game working!
Mm. I generally advise people to make those data driven rather than hardcoding everything.
if you send a tutorial I will check that out. I have to run to dinner time
So you're coding an engine to read the data, rather than coding the adventure in Python,
back in about 40
line 26 is problematic/inappropriate
"time to make another DSL"
domain specific language
Ah. Yes.
I'd consider ren'py's language a DSL, even though it's an extension of a general purpose language
A domain-specific language (DSL) is a computer language specialized to a particular application domain. This is in contrast to a general-purpose language (GPL), which is broadly applicable across domains. There are a wide variety of DSLs, ranging from widely used languages for common domains, such as HTML for web pages, down to languages used by...
opposite of general purpose
Domain specific could be Turing complete.
But it wouldn't necessarily be Turing complete.
ren'py can run almost anything that python can
Right. Almost.
most popular languages are general purpose
I'm talking about a language that can do whatever python can.
ren'py lang is limited in terms of where it runs
Like, and I may sound like a broken record, when I make my programming language that compiles to quantum circuits, it would be a GPL given it would have to do anything sth like C can. Assuming qiskit is a PL (it's not), that would be a DSL imo, given it can only do specific stuff.
but you can directly import python modules afaik
maybe even something like numpy may be imported
regular SQL is a DSL
Right, because you can only do certain stuff with it.
Thus domain-specific. It serves a very specific purpose.
What I'm talking about is sth that is a DSL that can do anything a GPL can. Wouldn't that make that DSL a GPL too?
Or better yet, what's the minimum criteria for a GPL? What does it need to have to be considered a GPL?
applicability of a language to a certain purpose is influenced also by intent, not only the language itself
I suppose my approach would be to keep throwing regex at it until I teased out all the information I needed.
some DSLs are technically extensions of general purpose languages (e.g. jsx, rpy)
I see.
Like saying hey, this language can do whatever python can, but I made it specifically to do statistics?
That would make it a DSL?
Majestic.
No thoughts. Only paintbrush.
Hi guys
@somber heath 👋
Yo.
@somber heath what's with the bird
Did you paint it?
Some say that it is the word.
Now you're a bird guy
I did a bit of vector pathing with some manual tracing and beziers.
I hate how my brain works sometimes. I came up with a better compilation for my controlled gates (it would check how many qubits it's NOT acting on, the ones that are passed as control indices and target index, and use them as ancillas, which is like giving extra memory to reduce depth) and once I do it, I practically have to rewrite my controlled methods in qickit.circuit.Circuit, rewrite the entire qickit/synthesis/gate_decompositions/multi_controlled_decomposition, and all testers for the controlled gates.
...only just now?
Like jackass, couldn't you have came up with this before you wrote all the code?
I'm an animal guy.
Ok
until other people start misusing it to do things it wasn't meant for, at which point no one knows whether it's a DSL or not anymore
Birds are covered.
Thank you!
That's why I'm saying what really is the key distinction.
I don´t trust people who don´t like animals.
Like I feel if it's turing complete, then it should be a GPL. If it's not AND it's meant to be used for a specific use-case, then it's DSL.
Why
She likes animals.
I'm also wondering how I'd add it really. Like should it be optional (like a new qickit.compiler.Compiler instance, or whether it should be builtin and just on by default.
Ergh. Love the idea, but feeling reaaaally lazy.
I don't like changing a big chunk of code over and over. Prefer additions anyday.
So if you have a brother and your doesn't lime animals will u trust him
I'd not continue the discussion. Won't go anywhere.
Ok
I would like to at least draw a division between people who don't like animals because they're frightened of them and people who hold them in some degree of contempt.
@vocal basin How do you manage multiple branches in parallel? Like when some changes clash?
Do you manually go over each one to resolve conflicts?
I almost never use branches
Are u guys talking about github
Yes.
Ok
those are tags and multi-repository merges
@somber heath Whatsup?
@topaz temple Something that can read a text file or files that hold the adventure data itself. Do you could theoretically swap it out for a different adventure.
We were talking about domain specific languages and regex.
if you genuinely have an issue with it, I'll remove it for sharing in the group.
What's that
Turn it on its side and it looks like an 80s sci-fi scrolling landscape sort of thing.
anyone dms please. i need assistance with creating automated application processes, while keeping the app in headless and invisibility.
line 1 in #code-of-conduct message
deletion isn't needed, but just be aware
Python Discord prefers that assistance requested via the server not take place in DMs.
you can use #1035199133436354600 or topical channels if you want assistance on your project
So if its a minor problem will u help
what do you mean by invisibility?
headless
so the shit wont pop up on screen while doing other things
such as playing games
Windows 11
Windows' built in way to run something in the background is done through services
Why is everyone silent 👀
which the user can enable/disable and see if they're running
Fair enough-
The issue is uhm
that i want to
automate behaviours
within the app
while its "in the background"?
not sure if thats possible
it's just a little learning project. I'm a few weeks into a tutorial, so just hoping to get pointers here and there, nothing I can't fix by just looking at w3 python.
I think that's getting out of the scope of the hw, it's just for the tutorial on python, "Make a text based game that uses user input to make choices using for, while and if then"
Hrm.
There's a primeagean video about best projects to do to learn to be a well rounded programmer
they basically were: Make a text editor, Make an emulator, make a compiler, and I forget the other one
hello
https://www.coopminesweeper.com @faint raven0110
w3 python? as in w3schools tutorials for python? if yes, then you should be aware that it's a thoroughly bad source (it's a content farm, not an education platform)
while looking for examples, I found another issue I haven't encountered before
their "Ukrainian" page is just a copy of English one
I had some hope they might mention with when describing file operations on a page in a different language since there could be a possibility it'd be rewritten not just translated
... and it wasn't even translated
https://www.w3schools.com/python/python_casting.asp
URL is enough to understand how bad it is even without opening
int() - constructs an integer number from an integer literal, a float literal (by removing all decimals), or a string literal (providing the string represents a whole number)
There may be times when you want to specify a type on to a variable. This can be done with casting.
insanity
this is GPT2 level of nonsense, but apparently generated by a human
just like flat earth belief, yes
following this literally (pun intended) would be active harm to almost any code base
(I have a list that I can take examples from, but I prefer to actually find them myself, so it'll take a while to get to more blatant misinformation)
that's not what it says there
it says literal
carelessness at this scale is problematic
that's the exact issue with the source
the authors don't care
it is out there just to make money, at least nowadays
"evaluate values"
(this is fine-ish, just funny)
Whitespace is the space before and/or after the actual text, and very often you want to remove this space.
(I skipped over that one for some reason)
another problem with w3schools is that they outrank way better sources in search results
"free"
whatever w3schools' motives, their content is objectively bad and harmful, so mentioning that to beginners is mandatory
it's not bad by "my" standards, it's bad even at beginner level understanding
when I see 2+2=5 as top result on every other search, I call that harmful
and the excuse of "well we just show an example of how two numbers add up to one" isn't valid
An iterator is an object that contains a countable number of values.
idk what they mean by countable
there are two meanings of "countable" that I know
one means finite, another means infinite
neither means both
iterators may yield finite or infinite number of items
(other mod found it not me)
Good morning my name is Hossam I live in Egypt
I am looking for good programmers to join my team
in this team, we can work on a real projects while learning
the programmer should have the basics of one these programming languages:
*Python
*Html
*CSS
*Javascript
we will work for real clients and take money while training or study
please, send me your if you are accepted to join
please don't advertise
please delete this message and make sure to read through #rules
!rule 9
How fix in Windows sandbox
Did you know Christmas trees can bring joy beyond the holidays? Learn how to turn your natural tree into a home for a entire aquatic food chain, and most importantly, trophy catches.
Very good channel: https://youtu.be/kS4VBhQGU9A?si=5WYMe_-Azwl74JwI
A compilation of @astrumspace episodes of everything we know about the Moon.
Astrum Podcast: https://www.buzzsprout.com/2250635/share
Astrum Merch! https://astrum-shop.fourthwall.com/
Join us on the Astrum discord: https://discord.gg/TKw8Hpvtv8
SUBSCRIBE for more videos about space and astronomy.
Subscribe! http://goo.gl/WX4iMN
Facebook! htt...
bob
win + r to open run.
type: optionalfeatures
somewhere there should be windows sandbox.
enable that.
your pc should download it and restart
@sour jay 👋
Hi 🙂
The Zen of Python, by Tim Peters
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than right now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!
nah who gonna stop me from putting everything in the main method
python is overrated anyways
based
@young solstice talk about something other than python = straight to jail
@somber heath are u a mod?
What does my profile suggest?
idk man some mods be undercover
u never know around here 👀
@young solstice u a big python guy?
ever tried another language?
@somber heath LOL u sound like a mod hes not wrong
!e
print((1 + 5 ** .5) * .5)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
1.618033988749895
!e
phi = (1 + 5 ** .5) * .5
def fib(n):
return round(.5 * (phi ** n + (-phi) ** (-n)))
for i in range(10):
print(fib(i))
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | 0
002 | 1
003 | 1
004 | 2
005 | 3
006 | 6
007 | 9
008 | 15
009 | 23
010 | 38
something's off
!e
phi = (1 + 5 ** .5) * .5
def fib(n):
return round(.5 * (phi ** n + (-phi) ** (-n)))
for i in range(10):
print(fib(i))
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | 1
002 | 0
003 | 2
004 | 2
005 | 4
006 | 6
007 | 9
008 | 15
009 | 24
010 | 38
I don't remember
ah, it's not 1/2
!e
phi = (1 + 5 ** .5) * .5
def fib(n):
return round(5 ** -.5 * (phi ** n + (-phi) ** (-n)))
for i in range(10):
print(fib(i))
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | 1
002 | 0
003 | 1
004 | 2
005 | 3
006 | 5
007 | 8
008 | 13
009 | 21
010 | 34
woohoo
Hi! Your profile pic changed!
Yes.
Naah on the way lol
Swift iOS
💀
something is wrong with my pc, can someone help me?
omg
@young solstice
let me quote someone else on this issue:
"The problem with chatGPT is that it is harder to evaluate correctness than it is to generate the correct answer.
Using ChatGPT is wrong is also fallacious because of the same problem. You have to be better than ChatGPT at something to figure out what's wrong with it's answer. Therefore, if you use it to learn, you are by definition not good enough at whatever you're learning to determine if you're learning the right thing."
Which is why I often say that you can use it, but you should always research what it tells you from reliable sources. You shouldn't ever trust it.
Join again
Feel at home
I didn't get voice verified
ok thanks
no
I want to go. bye
🖖
it seemed odd so i hhad left
French is certainly a difficult language, and hard to learn.
Wouldn't say it's the hardest language to learn but the grammar is devilish.
Russian grammar is worse. I think German grammar also seems quite difficult.
"pruning" theory
It's not my favorite and here is why: meditation also has the same effect and shows more potential at long-term benefits in focus. But meditation is kind of a squishy term and I don't know scientifically what it is exactly
so it's not something I put a ton of stock in.
The wedge-tailed eagle (Aquila audax) also known as the eaglehawk, is the largest bird of prey in the continent of Australia. It is also found in southern New Guinea to the north and is distributed as far south as the state of Tasmania. Adults of the species have long, broad wings, fully feathered legs, an unmistakable wedge-shaped tail, an elon...
I love the brown shade.
Bonelli's eagle (Aquila fasciata) is a large bird of prey. The common name of the bird commemorates the Italian ornithologist and collector Franco Andrea Bonelli. Bonelli is credited with gathering the type specimen, most likely from an exploration of Sardinia. Some antiquated texts also refer to this species as the crestless hawk-eagle. Like al...
This one looks smaller.
I like the eagles than can just choose to hunt humans.
I have a dilemma. I am trying to collaborate with someone on a project. Said project is the first of its kind so I don't want to share it without being sure the guy is gonna join.
Here's the dilemma:
- I cannot ask them to join a project they don't know the details about.
- I cannot risk telling them everything before being sure they're gonna join.
Train station ABC (abstract base class)
Airports and trainstations are a class and no one changes the parameters
He's Aussie.
Copy my homework but change it a little bit so teacher won't find out, next day in class me T_T
compartmentalize something then share what you can
I did. I shared the results (I/O style) but they started asking questions about the how.
So, this project is a compiler that I am making for quantum computing. Half of it is done. I need help for this other half.
It's two smaller compilers forming the overall compiler.
😦 I dunno then
The Zen of Python, by Tim Peters
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than right now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!
I'll be back later.
byebye!!
hello
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
The crested pigeon (Ocyphaps lophotes) is a bird found widely throughout mainland Australia except for the far northern tropical areas. Only two Australian pigeon species possess an erect crest, the crested pigeon and the spinifex pigeon. The crested pigeon is the larger of the two species. The crested pigeon is sometimes referred to as a topkno...
@carmine tangle why you wanna take my name 10 time
s
aarav maloo (king)
king is just me adding my self as a king 🤣 💀
👑
👍
bruh
wth is that
@somber heath are you human???
🤨
your voice
that's not clear, it looks like openai created you in their basement man
how do I stream
in this channel
😭
mod input;
fn main() {
println!("Hello, world!");
let mynamestring = String::from("Aarav");
let mynamestringeasier = "hello".to_string();
let mut stringempy = String::new();
stringempy.push_str("hello, world! has been put into the string");
let mut int1:i32 = 12;
print!ln("{int1}");
// get_input();
valueofthevariable(7);
}
fn myfunc() {
print!("Hello, I am func2")
}
fn valueofthevariable(x:i8) -> i8 {
return x;
}
now mods will come running
@ mods come out now
I wrote rust code
in py server
I know py, java, rust, and C
first lang was C
I am in rust
!code
mod input;
fn main() {
println!("Hello, world!");
let mynamestring = String::from("Aarav");
let mynamestringeasier = "hello".to_string();
let mut stringempy = String::new();
stringempy.push_str("hello, world! has been put into the string");
let mut int1:i32 = 12;
print!ln("{int1}");
// get_input();
valueofthevariable(7);
}
fn myfunc() {
print!("Hello, I am func2")
}
fn valueofthevariable(x:i8) -> i8 {
return x;
}
after C learned python, and just lost my mind after that
System.out.println("Hello World");
it is a real programming lang.
is this useful to u guys?
working on it
it is MINE
public static void main(String...args)
system.out.println("Hello, World")
}```
python guys lose their mind in java
simple.
I would took
I would talk, but my voice is just
yeah
I would like look a kid
@somber heath I am more scared of you
his voice
I am just gonna defaen myself
nobody replies like that
what????
chill man
bros speedrunning
not again lord
yorue from california
openai hr
me in school
ai sucks
it is inaccurate
and also 300$
which in INdia can buy you a laptop
I know little bit of ML
and pandas and numpy and tensorflow
and hugging face
am I even hearable
bruh @hello
someone?
gg
hey @carmine tangle
you'll need macOS
.dmg
MacOS xcode for coding it on macos
and dmg for packaging it
you can run mac on windows
I don't have mac
oh okay; well you in collage
I am in school
yeah cuz mac is based on unix
makes much much easier to just code
everybody uses macbook for coding
apple is money and power mad
yeah analog >>>> smartwatch
but if you have like Iphone, apple watch and everything why not them macbook
it would be like the whole ecosystem
would be integrated
nah it has
like that is soo good
that time steve jobs was there
to note that
rn @carmine tangle @robust oasis tim cook is cookin gapple
apple*
they are just copying nokia and samsung 2008 features in Iphone
alexa too dumb
gg
Hey @peak depot
IM BACK IN ACTION!
Could you please suggest a Python and AI project for college that is innovative, engaging, and suitable for my coursework?
@feral plume 👋
Hey @somber heath
Kindling Projects
The Kindling projects page on Ned Batchelder's website contains a list of projects and ideas programmers can tackle to build their skills and knowledge.
@whole bear 👋
Tom Lehrer on public domain (2020):
Use the above link and get the uninterrupted Lehrer TV-performance and The Tom Lehrer Collection from Amazon.com.
Hi
Hi
@rough hound 👋
Milien-ier
hello everyone, new here
@keen sky 👋
hey @somber heath
cuz of this
hey did you check out my Python_Simplified guide
This Opal? @somber heath
Sure, but it's not really funny is it?