#voice-chat-text-0
1 messages · Page 230 of 1
ah so it just manually accesses it by full path?
huh, then I just forgot, I guess
did you know how to host Website on pythonanywhere
I don't use cloud hosting
ok
there is no activate script
I guess that explains
it adds one entry to $PATH
that makes sense too
doesn't change $PYTHONPATH, as far as I see
i still prefer the PEP 582 way better than venvs
i wish it becomes the default 1 day 😦
!pep 582
rip
ah no 😦 just noticed it
python -m venv list That will make the venv named as list, then this will activate it for use ```source list/bin/activate``
in short, having to google "setuptools pyproject.toml" is too much effort compared to "pyproject.toml"
I suppose, yeah
I guess I'm so used to handling my projects through PDM (even small throw away ones) that I don't really think too much about it
pip3 -m pip install setuptools
is wheel installed with that too?
cursed
pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118
pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
> glibc
"so basically not alpine"
we have pizza/sushi delivery until 5 am
mixes well with disordered sleep
there's also electricity cost in addition to GPU cost
4?
> group of four bits
yo
I have a personal question
Shoot
Has anyone lost something or someone important to you?
Sure. Grandparents, uncles
I recently lost my uncle who loved me very dearly
?
We also lost our car about a week ago
Hemlock
How much money do you make?
@trim night :x: Your 3.12 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "/home/main.py", line 1, in <module>
003 | pastebin
004 | NameError: name 'pastebin' is not defined
!paste
If your code is too long to fit in a codeblock in Discord, you can paste your code here:
https://paste.pythondiscord.com/
After pasting your code, save it by clicking the Paste! button in the bottom left, or by pressing CTRL + S. After doing that, you will be navigated to the new paste's page. Copy the URL and post it here so others can see it.
thanks 🙂
I don't remember what my first program was
but I do remember that it was in Pascal
what did it do
back then I was only using Pascal for some basic arithmetic
16~17 years ago
NP-hard problem
all three my PRs, that had been merged, were CSS
and I still don't consider myself a web developer
thank you
actually wanted your repo but that's ok i can back trace it 😅
does numpy support bigint arithmetic?
It's not got anything else in it but patch-2 for that PR. I have no idea what happened to patch-1
what input sizes are you dealing with?
contents of the file
4
12
34
128
1024
4958
1718944270642558716715
9
99
999
9999
9797973
49
239809320265259d
@rugged root
n is given to be such that it has 2 primes
I'd expect it to be possible as some extension, which trades off performance for that support
the expected output
4=2*2
12=6*2
34=17*2
128=64*2
1024=512*2
4958=2479*2
1718944270642558716715=343788854128511743343*5
9=3*3
99=33*3
999=333*3
9999=3333*3
9797973=3265991*3
49=7*7
239809320265259=15485783*15485773
real 0m0.009s
user 0m0.008s
sys 0m0.001s
ooh and all of this is supposed to be done in less than 5 seconds
love to see the one thats even faster
well, just factorise into something, I guess
lowest divisor might be expected
there exist efficient factorisation algorithms, but I only remember one for badly generated case
bad case being p close enough to q
if you use two consecutive primes, 4096 bit keys aren't going to save you from attacks
Yo
Sadly that kind of fails to capture many important parts and emphasizes trivialities
p=x-y
q=x+y
pq=(x-y)(x+y)=xx-yy
start with x being ceil(sqrt(n)), increase it until x*x-n is a perfect square
the key to that attack working is that y changes fast while you increase x only by 1
i have no idea there were tools like that
julien@ubuntu:~/RSA Factoring Challenge$ cat tests/rsa-1
6
julien@ubuntu:~/RSA Factoring Challenge$ ./rsa tests/rsa-1
6=3*2
julien@ubuntu:~/RSA Factoring Challenge$ cat tests/rsa-2
77
julien@ubuntu:~/RSA Factoring Challenge$ ./rsa tests/rsa-2
77=11*7
julien@ubuntu:~/RSA Factoring Challenge$ [...]
julien@ubuntu:~/RSA Factoring Challenge$ cat tests/rsa-15
239821585064027
julien@ubuntu:~/RSA Factoring Challenge$ ./rsa tests/rsa-15
239821585064027=15486481*15485867
julien@ubuntu:~/RSA Factoring Challenge$ cat tests/rsa-16
2497885147362973
julien@ubuntu:~/RSA Factoring Challenge$ ./rsa tests/rsa-16
2497885147362973=49979141*49978553
julien@ubuntu:~/RSA Factoring Challenge$ [...]
.wa 10000th prime
.wa 10001th prime
(WA site isn't working for me for some reason, so I used .wa)
!e
from math import isqrt
n = 10969629647
steps = 0
x = isqrt(n - 1) + 1
y = 0
while x < n:
steps += 1
yy = x * x - n
y = isqrt(yy)
if yy == y * y:
break
x += 1
print(x - y)
print(x + y)
print(steps)
@vocal basin :white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | 104729
002 | 104743
003 | 1
!e
from math import isqrt
n = 239814802253561
steps = 0
x = isqrt(n - 1) + 1
y = 0
while x < n:
steps += 1
yy = x * x - n
y = isqrt(yy)
if yy == y * y:
break
x += 1
print(x - y)
print(x + y)
print(steps)
@vocal basin :white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | 15485863
002 | 15486047
003 | 1
why is it so fast, wth
!e
from math import isqrt
n = 240091627540549
steps = 0
x = isqrt(n - 1) + 1
y = 0
while x < n:
steps += 1
yy = x * x - n
y = isqrt(yy)
if yy == y * y:
break
x += 1
print(x - y)
print(x + y)
print(steps)
@vocal basin :white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | 15485863
002 | 15503923
003 | 3
finally, not 1
!e
from math import isqrt
n = 242635552199011
steps = 0
x = isqrt(n - 1) + 1
y = 0
while x < n:
steps += 1
yy = x * x - n
y = isqrt(yy)
if yy == y * y:
break
x += 1
print(x - y)
print(x + y)
print(steps)
@vocal basin :white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | 15485863
002 | 15668197
003 | 267
(1000000th and 1011111th primes)
!e
from math import isqrt
n = 268362092514007
steps = 0
x = isqrt(n - 1) + 1
y = 0
while x < n:
steps += 1
yy = x * x - n
y = isqrt(yy)
if yy == y * y:
break
x += 1
print(x - y)
print(x + y)
print(steps)
@vocal basin :white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | 15485863
002 | 17329489
003 | 25916
Mind explaining because this makes it way more easier
this is only fit for primes that are close together
!e
from math import isqrt
n = 114112025958181
steps = 0
x = isqrt(n - 1) + 1
y = 0
while x < n:
steps += 1
yy = x * x - n
y = isqrt(yy)
if yy == y * y:
break
x += 1
print(x - y)
print(x + y)
print(steps)
@vocal basin :white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | 7368787
002 | 15485863
003 | 745002
this n is smaler but takes way longer to factorise
If you pick the wrong prime numbers, cracking RSA becomes a cinch. Dr Mike Pound explains the findings of researcher Hanno Böck
ARS Technica Article: https://bit.ly/C_BReakingRSa_Article
Hanno's Blog: https://bit.ly/C_HannoRSA
https://www.facebook.com/computerphile
https://twitter.com/computer_phile
This video was filmed and edited by Se...
It seems like sometimes people will join in get someone to answer their question then they ditch the call lol
Lol
Listen to you bimbos talk lol
Loll
Nah I just sit here and run SAS scripts
Yurp
Only job I could get without a degree
What's your job title?
This was as far as i could get with C programming
https://paste.pythondiscord.com/NV4A
lol no idea we just moved to SAS Viya and the only reason I took the job is cause it’s the only place I could get a job offer. I’m a associate quantitative analyst
funny when articles about a programming language include sections like this
Ohio is gas
I rep it
Not me lol
Podcast and MF Doom mix’s get boring so I join here
Haha Ohio is a meme
I was told they were going to move to python so I was excited to take the job but they decided not to switch
how about this one
Output format: n=p*q
one factorization per line
p and q don’t have to be prime numbers
They say SAS viya handles large data better than python so they are just upgrading our environments rather than switching to python
Lame
114112025958181=1*114112025958181
I’m running a query with 2.5b records and it took 14 hours yesterday
Did nothing all work day
After this years up I’ll be looking for work in a different state
I need out of Ohio lol
Loll
The guy that heads the decisions like upgrading to viya is in his 60s
Been with the company for like 30 years
It’s chase though lol
Not like it’s a small company
Back in my day we used to code with assembly
Are all y’all in the states?
I’m trying to find someone from the states that moved to another country. I’d like to move and work overseas rather than staying in the states
Everywhere I want to travel and see are all over seas
I mean we are pretty bad at taking care of ourselves
I think we have the means to fix or repair the damages we just don’t
I would love that lol
I just don’t have a reason to stay in the states besides work and I know the language
If I could get a chance to move overseas somewhere safe and work I would in a heartbeat
Yea I could see both party’s doing that
Hey @peak depot
Fair
Yo
Jerks are jerks
Hey what's the best python projects you have created
I guess the only one I really completed
Wait
!pypi auto_guild
Pretty cool
How'd you find this picture of me
just googled "depressed it guy accountant"
"Oh god, I'm being pulled into Hell! I'm Hell sinky!"
Spongebob the best
how the heck is this even possible
new_list = [
{
key: int(value)
for key, value in line.items()
}
for line in dict_data
]```
Lol
Step 1: Join python dc
Step 2: Do weird stuff
Step 3: Banned
Discord
Yes
Dog chat

We usually shorten it to PyDis
wowo
!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.
Could do something with this
Back in a sec
Okay
def __innit__(self):
Hey @heavy aurora0
is intit intit say as is in it in it
Would you advice for sleeping pills @rugged root
Melatonin good stuff
wait what??
Nice
i am under age
Yeah then not yet haha
More Uk product not available in my country
and milo
something like this
what kind of subaru mind sharing a pick @lucid blade
A tisket, a tasket, you need a new head gasket
@lucid blade share the pick of the subaru
YO
forester 2001 sf5 2.0 turbo 5 speed manual
arctic silver ... 3" prodrive exhaust system, decat, stainless headers, decat up-pipe, gfb dump valve + some other bits and bobs
Pretty nice
how many inches are the wheels
nice deal you got there then
yeah i paid £80 for them with tyres 😄
you sure they were not stolen or something
nah a guy bought them for his but were a different stud pattern
how many horses does she make
Deem that's too greedy man well as long as you give her what she want's she will definetly give you back without a complain
yeh i think anything over 300 will be too much anyway ... and the mods to go to 300+ are expensive
hey like the saying goes go big spend big
£5k for forged rebuild
i doubt ill go that far though
also they're getting quite rare here in the uk
hello
wat goes on
Just shooting the shit
Deem!! that's some chunk of change over there man sorry my lights were off for a sec
Have any fancy air lifters or whatever you guys call it over there
air lifters
I choose to interpret that as he's turning the car into a hovercraft
What do you think is the best stable and efficient sorting algorithm you like
No idea, that's never been my area of expertise. I wasn't a CS major
@lucid blade
@minor sage where do you live man
Hey under 15 are present in the server voice note
yeh its got an indduction kit
oh air ride lol
thats expensive and u need to loose space for thhe compressors / tank
im going with bc coilovers when i have the $$$
ooh yeah almost forgot about that also
well coilovers are not that bad also
Honestly for a Subaru that's a pretty good car project you have over there and it being a Subaru it's also cool.
@peak depot
Created at Sapientia University, Tirgu Mures (Marosvásárhely), Romania.
Directed by Kátai Zoltán and Tóth László.
In cooperation with "Maros Művészegyüttes", Tirgu Mures (Marosvásárhely), Romania.
Choreographer: Füzesi Albert.
Video: Lőrinc Lajos, Körmöcki Zoltán.
Supported by "Szülőföld Alap", MITIS (NGO) and evoline company.
Click the link...
Sorry, I'm slammed at work right now
Lot more things got added to my plate than I expected
am not really man i think it has to do with your current shifting and logins you have tried to make with the incorrect inputs maybe give it
well beyond that am unable to produce a solution for you that's out of my plate
welcome mate
Yeah that's a pretty nice approach to take well maybe try the get in touch with or even try out their helper email
Fuzz they are really trying to avoid you at all cost
Good luck
pls unmute me
@rugged root were learning neural networks tomorrow 9am sharp
!voice 👇
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Pain
Escape while you still can
@royal blade 👋
It is pain I was just reading on it sounds like it's gonna be a bitch
@quasi yacht 👋
@sudden barn brb
I might go to sleep.
yo @sudden barn @tulip plover
You need to be active on the server in text.
And then write a command in bot chat.
To get a role that lets you talk.
:)
nope you said it right the first time
sear isssss
nope
yes
yes
bull greek god
Why not Sirus?
Well... Depends on what you want from this language.
But it's quite versatile.
Mostly used in backend and data science stuff.
Includion machine learning.
talking to me?
Yeah.
idk what i want out of it
If you wanna make software and applications, Python is probably not for you.
Ah... Good then.
Good luck!
Keep going.
I don't know much about the security.
But you probalby need to learn the leverls of network.
Protocols.
How ports work...
What makes a package and http requests...
No idea what you know already.
Can you accept the friend request, so I can send the recording of that guy acting weird? :D
So you can judge as a mod...
Or I need to make a ticket...
Send it to @rapid crown. I'm heading off in a minute.
Not sure how that works...
@rain agate
ya
Alright, not really sever-appropriate.
Thank you
Just leave 
¯_(ツ)_/¯
👀
Errrrm, I'm not really a web dev sorry 
Mocking maybe?
Yeah, I'm just reading about it: https://developer.mozilla.org/en-US/docs/Learn/Server-side/Django/Testing
Yeah pretty much 😄
The best base class for most tests is django.test.TestCase. This test class creates a clean database before its tests are run, and runs every test function in its own transaction.
So it does create a DB to run tests. :\
No idea why people like Django. Especially funny to read LinkedIn posts and comments where people like "yeah, always use django".
:D
But I am a hater. So...
I'm not objective either.
Alright, anyway cya 👋
Goodbye!
@flint drum 👋
my name was
previously
jan Apisu
the former is the correct
for my old name
but as people always call me the second jan
ive changed it to jan
and now you pronounce it as the second
shall I stream?
ah your not a moderator
hah your always around vc so i was in the impression that your a
moderator
@celest jungle 👋
did someone quack?
@foggy spear 👋
?
You joined voice chat. I make a point of waving to people who do not yet have their unmuting privileges. That way, they're aware this, the associated text channel, exists.
yo anybody tryna help me out real quick
watcha need.
Hey
I want to find the like permutations of the like range of some number n that add up to n so like:
"""
n=2
[0,0,0,2]
[0,0,1,1]
[0,0,2,0]
[0,1,0,1]
[0,1,1,0]
[0,2,0,0]
[1,0,0,1]
[1,0,1,0]
[1,1,0,0]
[2,0,0,0]
"""
but i dont quite understand how to formulate this pattern into code like i got to here on 3 and started to lose it
"""
n=3
[0,0,0,3]
[0,0,1,2]
[0,0,2,1]
[0,0,3,0]
[0,1,0,2]
[0,1,1,1]
[0,1,2,0]
[0,2,0,1]
[0,2,1,0]
"""
i dont really even know what to call this kind of like "permutation" any help would be appreciated!
just getting into code tho not exactly sure how
try sending the code this way
```python
YOUR CODE HERE
```
well like the way i had it is find all possible permutations of the list of range(n) and then find the ones that sum up to n but that takes way too long and i think theres a more efficent alg
i would probably do this using a recursive approach 🤔
what if n = 1
you want the output to look like this?
[1, 0, 0, 0]
[0, 1, 0, 0]
[0, 0, 1, 0]
[0, 0, 0, 1]
yeah
You want it to always be a list of 4?
yeah always list of 4
it's easier not to think about permutations, if the goal is to list all options
since, apart from permutations, there are different sets of numbers that add up to n
well its not really permutations but not really sure what to call it
so base case should just be when one of the cells is occupied with n
all sequences s such that len(s) == m and sum(s) == n for given m and n?
yes
n = 2
[1, 1, 0, 0]
[1, 0, 1, 0]
[1, 0, 0, 1]
[0, 1, 1, 0]
[0, 1, 0, 1]
[0, 0, 1, 1]
[2, 0, 0, 0]
[0, 2, 0, 0]
[0, 0, 2, 0]
[0, 0, 0, 2]
right?
yeah
i kinda took the approach like treat it as one big number then find all of them in increasing order but if n is greater than 10 gets a little confusing
does the order matter?
order does not matter
this shows one of easy-to-implement orders
it also generates them in sorted order, if you reverse the output
how about 3?
[0, 0, 0, 3]
[0, 0, 1, 2]
[0, 0, 2, 1]
[0, 0, 3, 0]
[0, 1, 0, 2]
[0, 1, 1, 1]
[0, 1, 2, 0]
[0, 2, 0, 1]
[0, 2, 1, 0]
[0, 3, 0, 0]
[1, 0, 0, 2]
[1, 0, 1, 1]
[1, 0, 2, 0]
[1, 1, 0, 1]
[1, 1, 1, 0]
[1, 2, 0, 0]
[2, 0, 0, 1]
[2, 0, 1, 0]
[2, 1, 0, 0]
[3, 0, 0, 0]
was that by hand or did you get it with code?
It's with code I guess
around ten lines of code
could i see?
def sequences(m, n):
if m == 0:
if n == 0:
yield []
else:
for i in range(n + 1):
for sub in sequences(m - 1, n - i):
sub.append(i)
yield sub
what is m?
length
wow thats crazy ty
@urban ridge
Official video for Doo-Wop group Street Corner Renaissance - "Life Could Be A Dream"
@royal blade how are you doing
@wind raptor and @somber heath hello
how are you doing
dev i need your help
have you studied the three.js library
@wind raptor
oh
yeah you're right
yeah that is my issure
it is creating a lag
but the thing is that
the tutorial i am watching in that it doesn't lag
moreover it does not lag in the live preview
that makes sense
to create this much of animation with css it would take a heck of a knowledge
ahh it sucks
when you think of doing something
oh it was playing in that video
i thought @somber heath was saying that again and again
i was thinking to use that a backgroung
but not i can't
it feels absolutely great
😦
and on the web it becomes this
i want some
see ya later
@wind raptor @rugged root @somber heath Hello
Had to do a double take, thought this was Patrick Stewart
@stuck zealot If you're wondering why you can't talk, check out the #voice-verification channel
That'll tell you what you need to know about the voice gate
Music video by Red Fang performing Red Fang - "Blood Like Cream" (Official Music Video). Directed by Whitey McConnaughy
Buy on iTunes http://georiot.co/4Bof (C) 2013 Relapse Records
xXx69_GraveYardBoi_69xXx
From the final part of the academic decathlon in the movie Billy Madison. The actor is Jim Downey, formerly of SNL. I could not find a good version to use for a sound board, so I decided to upload my own.
What you've just said is one of the most insanely idiotic things I have ever heard. At no point in your rambling, incoherent response were y...
@rapid chasm https://pcpartpicker.com/
The Yamazaki is a multi-layered single malt Japanese whisky with the aromas of fruit and Mizunara oak. Discover the Suntory's flagship single malt whisky!
What do you call a vampire who wants to be an electrician? an Ampere.
!e python a = [] if not a: print('Hello')
@amber raptor :white_check_mark: Your 3.12 eval job has completed with return code 0.
Hello
Rabbit, why am playing with RabbitMQ
I don't know what I'm learning from it, why do I do this
just stop
use it for Discord bot
or doing tasks
True
don't use RabbitMQ, use beanstalkd
I think I read beanstalkd is a message broker and RabbitMQ is more of a worker broker?
they both just have messages
import time
import socket
import os
import json
import csv
import random
import requests
import greenstalk
BEANSTALK_IP = str(socket.gethostbyname(os.environ['BEANSTALK_ADDRESS']))
BEANSTALK_QUEUE = str(os.environ['BEANSTALK_QUEUE'])
BEANSTALK_STAT_QUEUE = str(os.environ['BEANSTALK_STAT_QUEUE'])
ZKILLBOARD_NAME=os.getenv('ZKILLBOARD_NAME', f"DiscordLoader{random.randint(1,1000)}")
ZKILLBOARD_URL = "https://redisq.zkillboard.com/listen.php"
beanstalk_client = greenstalk.Client(address=(BEANSTALK_IP,11300),use=BEANSTALK_QUEUE)
beanstalk_stat_client = greenstalk.Client(address=(BEANSTALK_IP,11300),use=BEANSTALK_STAT_QUEUE)
kill_count = 0
try:
print("Starting up")
while True:
r = requests.get(
url = ZKILLBOARD_URL,
params = {'ttw': 3,
'queueID': ZKILLBOARD_NAME}
)
if r.status_code != 200:
print(r)
elif r.status_code == 200:
body = r.json()
if body['package'] is not None:
package = body['package']
payload_body = {
"killid": package['killID'],
"killmail": package['killmail'],
"killboard": package['zkb']
}
beanstalk_client.put(
body = json.dumps(payload_body)
)
beanstalk_stat_client.put(
body = json.dumps(payload_body)
)
kill_count += 1
print(f"{kill_count}")
except Exception as e:
print(body)
raise e```
It’s the most wonderful time of the year: Advent of Code! Advent of Code is a month-long programming challenge with a new daily puzzle you can solve in any programming language.
For many, Advent of Code is an excuse to learn a new programming language or practice a familiar one. No matter what programming language you choose to tackle the puzzl...
reason I recommend Beanstalkd BTW is you don't need to precreate queues, if someone connects for a queue, queue is created, queues are deleted when everyone using them disconnects AND all messages are deleted.
Ahh, okay that is quite handy
it also has no security so easy to get going, obviously don't internet expose it
Rabbit where are you?
at my desktop
You're not in the vc
I'm stuck on work meeting
Makes sense
rabbitmq has more features potential for confusion
Yes
it's not async though
Meh, it's more just so I can learn about the concepts
py -m pip install [package_you_want_to_install]
way too many distinct modes of operation:
work distribution (default/direct exchange with ack)
just messages (default/direct exchange without ack)
RPC (either of two previous but with reply-to and correlation-id)
fanout
pub-sub (topic exchange)
whatever headers exchange is
streams
#gpt4 #deepmind #openai
🔥 Get my A.I. + Business Newsletter (free):
https://natural20.com/
https://twitter.com/AndrewYNg/status/1689693276234989569
https://www.deeplearning.ai/the-batch/issue-209/
https://arxiv.org/abs/2210.13382
[RELATED VIDEOS]
Minecraft AI - SELF-IMPROVING 🤯 autonomous agent:
https://www.youtube.com/watch?v=7yI4yfYftfM
...
Language models show a surprising range of capabilities, but the source of their apparent competence is unclear. Do these networks just memorize a collection of surface statistics, or do they rely on internal representations of the process that generates the sequences they see? We investigate this question by applying a variant of the GPT model ...
@mild quartz this is the paper the researcher was pointing to as reference that LLMs have some level of 'world model' or world representation
queue creation in amqp being necessary is also related to how complicated it is,
because it's not just creation, it's also configuration (e.g. durable flag), and both ends need to agree on it;
pain
mb, foot pedal is being glitchy today, not wanting to mute me when i press it 😒
All good all good
chess AIs are forced in matches to play non-draw-ish openings often
"Two AIs in a room. They might kiss."
I know why RabbitMQ works the way it does, it's great at larger scale, for message testing, Beanstalkd covers the concept without the overhead
yeah, just pointing out another difficulty about rabbitmq
of course GPT tells me the one thing i forgot to check, I'm offended.
18.4TB of data
"If you doubt the ubiquity of corn you can take a chemical test. It turns out that corn has a peculiar carbon structure which can be traced in everything that consumes it.'
Nattō (納豆) is a traditional Japanese food made from whole soybeans that have been fermented with Bacillus subtilis var. natto. It is often served as a breakfast food with rice. It is served with karashi mustard, soy or tare sauce, and sometimes Japanese bunching onion. Within Japan, nattō is most popular in the eastern regions, including Kantō, ...
Nuclear Gandhi is a video game urban legend purporting the existence of a software bug in the 1991 strategy video game Civilization that would eventually force the pacifist leader Mahatma Gandhi to become extremely aggressive and make heavy use of nuclear weapons. The claim was mentioned on the TV Tropes wiki in 2012, and continued until 2020, w...
Huh, weird
So it was a myth for all that time until it became an actual bug
That's... weird
Or no wait
I'm confuzzled
Either way, back in a bit
"I have a couple of burns on my stomach and hands. But I'm alive."
SUBSCRIBE for awesome videos every day!: //bit.ly/2J4Pwfn
GoatWoW is viral video community channel for the hottest videos from across the web, We love videos and find the best ones to share with you here, Subscribe to see them first!
Links To Source:
@rugged root mrs has christmas music playing for the kido, will be muted for a while 😒
Rawr men.
@lavish rover
Ramen is a Japanese noodle dish. It consists of Chinese-style wheat noodles served in a broth; common flavors are soy sauce and miso, with typical toppings including sliced pork, nori, menma, and scallions.
maggi doesn't come with meat (even vegitables are barely there), barely has any broth unless you really wanna lose all flavor so idk if i count it
yeah but we're not talking about the proper dish you make, he specifically asked instant ramen
that you get in packets
none of those come with meat and vegetables either
i guess so xD then i've also had topramen curry noodles which is probably the only other instant noodles i've been able to endure eating other than maggi
also if google looses its gonna start such a big learn android development! boom xD as they won't take 30% of your profit anymore
i might take the chance to make 3 full blown android tutorials, native with java / kotlin, react native and maybe a game dev tutorial with a mobile game in unity xD
if epic wins that is
There's no good ramen brands here anymore to fix at the house, but there's one ramen place that is so good near us 🔥
Kebab (UK: , US: ; Persian: كباب, kabāb, Arabic: كباب, [kaˈbaːb]; Turkish: kebap, [cebɑp]), kabob (North American), or kebap or kabab is roasted meat that originates from the Middle East but has been popularised by Iranian cuisine & Turkish cuisine. Many variants of the category are popular around the world, including the skewered shish kebab an...
https://en.wikipedia.org/wiki/Shawarma#:~:text=Shawarma (%2F%CA%83%C9%99%CB%88w,turning%20vertical%20rotisserie%20or%20spit.
Shawarma (; Arabic: شاورما) is a Middle Eastern dish that originated in the Levant region of the Arab world during the Ottoman Empire, consisting of meat cut into thin slices, stacked in an inverted cone, and roasted on a slowly turning vertical rotisserie or spit. Traditionally made with lamb or mutton, it may also be made with chicken, beef or...
Also Gyro...
Vill ha Kebab på Spotify: https://open.spotify.com/track/1fVhTB1oZ1nkJQDriXnMaD?si=3Ww1r9g9TdesArYAO6tGrg
Text & Musik: Wilhelm Karlsson
Kamera & Edit: Viktor Löfgren (Slim Doris)
Instagram:
@willegk - https://www.instagram.com/willegk/?igshid=40qqqhf6nsdi
@_viktorlof - https://instagram.com/_viktorlof?igshid=bpmjcd1qo9eo
Slim Doris på Spoti...
@rugged root we generally don't use mail alot here outside of businesses
even before we had mobile phones it wasn't common
Fair
@west lion depends on wether they enjoy programming or if its just something they have to do for money, the same can be said for any other hobby one may have as a job as well be it art or music
Hey guys,
Can someone suggest a shorter code than this?
# Binary to Decimal: Write a program to convert a binary number to its decimal equivalent. binary_code = input() binary_empty_list = [] for i in binary_code: binary_empty_list.append(i) binary_code_list = list(map(int, binary_empty_list)) print(binary_code_list) def binary_to_decimal_converter(binary_code_list): sum = 0 for i in binary_code_list: sum += i*(2**(len(binary_empty_list)-i)) return(sum) binary_to_decimal_converter(binary_code_list)
python does allow you to just use the int function with base 2
^
Thanks man! 😂 😂
very theraputic
!stream 425552190283972608
✅ @peak depot can now stream until <t:1702581779:f>.
@gentle flint could you help me with bootstrap?
Very true
now i get to see my pc crumble from custom discord css (it flickers alot and i kinda broke it)
Back later, meeting time
What type of instrument is that?
You've found my very first ocarina video from 2006! For new ocarina covers and tutorials, be sure to SUBSCRIBE! http://bit.ly/DER-Subscribe
FREQUENTLY ASKED QUESTIONS
Q: Ocarinas are real?!
A: Yes. Contrary to popular belief, early models of the ocarina have been around for thousands of years. The Ocarina as we know it today was invented in It...
From Chili Klaus´ younger years - he plays When you´re smiling using a tenor and a soprano saw.
By the way ...
Piano Hans Esbjerg
Sax Jan Kaspersen
Bass Peter Vuust
Drums Lars Wagner
try a C64 assembler emulator @rapid chasm
assembly ( ASM ) is extremely fast , but it has lots of basic parts ( granular ) , its a real discipline
C is a human convienience , its close to english , the power of C is the compiler , it will translate C to ASM better than most humans can do
rust goated 👑
@high token There's an MIT course you might be interested in...
sure
6.858 Computer Systems Security is a class about the design and implementation of secure computer systems. Lectures cover threat models, attacks that compromise security, and techniques for achieving security, based on recent research papers. Topics include operating system (OS) security, capabilities, information flow control, language security...
Thanks!
well i dont have a beard.
grow one?
nah
Australia, I think?
@nocturne scroll 👋
!voice👇
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Well maybe later
@azure fox 👋
:ok_hand: applied timeout to @azure fox until <t:1702602891:f> (10 minutes) (reason: burst spam - sent 8 messages).
The <@&831776746206265384> have been alerted for review.
@azure fox This is why reading the directions is important.
!tvmute 2w Spamming to reach our voice verification requirements is strictly prohibited. You can still join voice channels without being verified; you just have to get some legitimate server activity in order to get verified.
Could not convert "user" into UnambiguousMember or UnambiguousUser.
2w is not a User mention, a User ID or a Username in the format name#discriminator.
!tvmute 301348598463856640 2w Spamming to reach our voice verification requirements is strictly prohibited. You can still join voice channels without being verified; you just have to get some legitimate server activity in order to get verified.
:ok_hand: applied voice mute to @azure fox until <t:1703812023:f> (14 days).
@somber heath hello
@rich cipher 👋
hi
@oblique turret 👋
hey
at school lmao
two of my classmates are lise
listening to weird songs on spotify
@finite tartan 👋
All good.
@wooden parrot 👋
@vapid egret 👋
!voice 👇
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@rough cobalt 👋
hi
Эта ваще законна
не получается
крутой
микро не работает(
Он же тебе нормальным английским языком написал в лс, ты должен пробыть 3 дня, написать 50 сообщений и тд
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
треш
думал может помогут тут с парсером(
шаришь за парсеры?
no
(
дохуя надо
о мама ландыши ландыши
на это челы смешные
omg
xaxaxax
You are support Ukraine ?
@finite tartan Это правда что ты лошок?
@proven current 👋
@finite tartan Лялялля
@somber heath how old are you?
Ya sosu chlen
@finite tartan You like sosat chlen negrov?
@finite tartan say pls: "ya sosu chlen"
ya da
<@&831776746206265384> Apologies for the bother.
ражака капец
Omg, poco
!rule English please use English
4. Use English to the best of your ability. Be polite if someone speaks English imperfectly.
@finite tartan Zastavlal modera sosat
@finite tartan Perdyn
I will start handing out mutes if English is not used
oh, okay
That's just insulting
moderi sosyt
!shh
✅ silenced current channel for 4 minute(s).
!mute 1179005209515671622 6H You were told to speak English. Take a break to read our #rules before you return.
:incoming_envelope: :ok_hand: applied timeout to @vapid egret until <t:1702667275:f> (6 hours).
!unshh
✅ unsilenced current channel.
Heyaa
@ember meadow 👋
👋
I'm sort of here. Prepping things for holiday deliveries
Well howdy
The bug out bags, the camo gear, fishing rods, bear traps and spray...
Canned and dehydrated food...
@median cipher 👋
Come on guys... it's not rocket science
🖐 ASK ME ANYTHING! ► https://www.youtube.com/noogai89/join
👕 MERCH! ► https://alanbecker.shop
💬DISCORD SERVER ► https://discord.gg/alanbecker
🕹️ANIMATORS VS GAMES ► @AnimatorsVSGames
📷INSTAGRAM ► http://www.instagram.com/alanbecker
✏️TWITTER ► http://twitter.com/alanthebecker
🔹🔶WRITER🔶🔹
Terkoiz...
If you lighten the background color a bit I think it'd be good
Kind of reminds me of the Discord blurple
SKY BLUE?
should i shoot for the browns or wait for reds to be available
I like browns because I like the tactile feel
how about this
well the keeyboard i have now sucks bc it seendss muulttiple inputs and it has cherry reds
😭
Press down on the keys a bit harder, make sure they're properly seated
Like not on the regular
Just to do a quick maintenance thing
i've tooken this thing apart and deep cleaned it every now and then but this started happening a few weeks after getting the keyboard and just got worse over time
Thats depressing
but ive had the kb for like 2 years now so i think an upgrade is worth
i'll try the browns, i can always switch them out with other switches
True that
see ya later
Yo people
Its meeee
I know you hemlock
I had to make a new account
No i had to make a new discord account
Im the funny python guy
Oh wait
No
I wasnt banned
I had issues with stalkers
why cant they name things the same on amazon vs their website smh
Now they know
Because they would keep coming back
Noooo
Luckly theire not here on this server hehe
"I hope so"
I was around there by a guy who trashed his car battery
If you guys remember him
I think yes
Yes yes that guy
But i was there, i wasnt this guy
I was the guy who saw you do some python basic exercises to see what you have missed
Takes time probably to master
Wow
I remember that one keyboard you can litterally wear as gloves
So wierd
I saw people do some crab finger controll
this always felt so weird to me.
Ikr i saw that also before and was like "whuuuuttt"
but i will admit, some games where more comfortable playing like that than others
Yeah usualy, i even saw phone gamers do this
People who play pixel gun
i played mobile fortnite one time and was like how do people do this as like there go to way of playing.
gets a phone call
Man people come with such wierd grips
Decimeters
My bed is around 55 decimeters long
Wait lol no thats too long
15 decimeters hehe
Btw people use deciliters for drinks
5 deciliters
American people are kinda wierd, they use feets
Imagine using feets to mesure
Bro is getting wasted
my name on this server is NoodleReaper and i get caught eating noodles on this server alot too :x
if True is not False:
print("why")
The best stones are always the kitney stones
Wine is also just liquid grapes
Vodka is liquid potato
This too shall pass
Liquor is liquid fruits
I collect them
o- o just drink more water and you'r probably be fine
Make jewlery out of it
i'd be back in a bit
Im kidding i have an unlimited cobblestone generator at home
Liquid bread hmmm
definitely beer
Im about to make liquid pizza
Is it liquid pizza if you mix things like liquid bread, mozerella, tomato and other things?
A pizza cocktail
So cool, the python discord talks about alcohol while the taxi driver ones ban it lol
Programmer is so much better
Honnestly i dont like alcohol
I hate the burn in the troat
Il stay by the alcohol less drinks
donate to mozilla 🫶
Yo sazk
What do u do with the white chunks after i drunk the mozzerella?
WinRAWR~~~<3 XDXD
Dutch
7zwip~~~~<3 XDXD
No, Italy
Ohhh
Pwython nyaaa
windows doesn't have tar zip?
Not natively
jinja templating engine only works with python?
Jinja's just a template spec. Other languages could use it, I just don't know if they do
HKEY_CURRENT_USER\Control Panel\Accessibility\Keyboard Response
@thick marten
I've finished reading a summary about Philippe Flajolet's work on building methods for Automatic Analysis of Algorithms here.
He basically wanted given an algorithm to find the complexity automatically. This is of course complicated but from what Zimmermann says he made a lot of progress towards that goal:
https://members.loria.fr/PZimmermann/papers/aa.pdf
Now I'm reading a lecture note about a classification of generating functions here:
http://jaypantone.com/courses/winter16math118/lecture-notes/lecture-notes-03.pdf
@obsidian dragon https://spacetraders.io/
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@thick marten Check out the #voice-verification channel. That'll tell you what you need to know about the voice gate
@thick marten ^^ !voice
but i don't qualify until next week
You need to be interactive without voice access through messages here first before you qualify...
what are we talking about?
Reasons for why the voice gate is here
How to get #voice-verification and be able to speak in the channels
i want to use ironpython in visual studio community 2019 for desktop application. can anyone help me to configure
We doing randmom keyboard reveals?
It happens from time to time
Khali box whites :3
if your coding doesn't annoy your roommates, it's not clicky enough
Why specifically IronPython?
Hello
IronPython is cool
Mindful and hemlock
@wind raptor unit, integration and e2e?
to create a good desktop application. and also i can add some extra functionality to my exe file
If you're needing it for .NET support, I strongly advise just using C#, F#, or VisualBasic
i just dropped out of top 5% in cs2 after climbing back up 😦 because i invited a friend to play who invited his friend who went afk in my match
IronPython is a bit.... clunky
i hate people
WHYU THO
i can get these extra functionality. if ironpython is not good so can you please suggest me some other tool
You should be able to have that functionality with C# and what not anyway, I would think
i know through c# but i want through python if possible. ironpython can do this but it not showing in my visual code 2019
CryptoZoo was supposed to be a fun blockchain game that can earn you money... but millions of dollars of investor money later, things are still broken. Coffeezilla investigates why. This is PART 1.
PART 2: https://www.youtube.com/watch?v=wvzyDg40-yw&
PART 3: https://www.youtube.com/watch?v=8-fugWMBwCg&
Support:
► Patreon: https://patreon.com/c...
loaded for me
this thing looks so good i kinda want it (kinda = i really really want it)
https://mullvad.net/en i use this
how about tor
i dont care for it personally
its slow though
kind of
can it substitute a vpn?
it all depends how u use it
just some dodgy web browsing
did u hear about the exit point crypto skimming
omg lol that's good to know about feet 
i stepped on a nail as a kid and it went through the other side... cried a lot too but had to walk to the doctor's
Check out the #voice-verification channel. That'll tell you what you need to know about the voice gate
:incoming_envelope: :ok_hand: applied timeout to @thorn vector until <t:1702660347:f> (10 minutes) (reason: burst spam - sent 8 messages).
The <@&831776746206265384> have been alerted for review.
oof
tuff
everytime i go near a random piece of metal i always barely tap it to make sure its not hot, same with the stove even if i know it hasn't been on in a day
no
lol
Okay
python to high level you need to use brainfuck for that
you can use lots of languages
Don't ask why I'm asking that
!rule 5
😛
5. Do not provide or request help on projects that may violate terms of service, or that may be deemed inappropriate, malicious, or illegal.
😉
im not
It's worse than that
Please refrain from talking about any malicious implementation details on the server.
Okay
@lucid blade same, interest in cybersecurity and stuff like that got me into coding now that i studied coding, i'm interested in data and data processing it's cool when you go down coding rabbit holes because there's so much to learn!
it's like penetration testing and cybersecurity testing
for a class i had to write raw sql...
@wind raptor question
we only glazed over security and sql injections which was a real shame, i wanted to dive into protecting my code better
is this safe? in the context of next.js
`select * from users where username = ${user} and password = ${password}`
lmao
xD
'' or 1=1 --
you need to learn what it is and what the logic behind it is not necessarily how to do it
@solid oyster select * from users where username = ${user} and password = ""'' or 1=1 --"
that would select all records from the db as 1 always will equal 1
fun
fr
a lot of scientists and inventors have died for less
@lucid blade not much would change, most people would rather be a drop in the ocean such as @peak depot said, and some billionaires would try to capitalize but it's not exactly different from what is currently going on
@peak depot interesting to learn about finland's gathering and winter prepping habits are similar to lebanon's. Growing up we always prepared for winter and then I came to the US and people don't really do anything different between seasons
@wind raptor btw chris what were you testing?
hahaha chosen family is the best type
I’m here for it
no worries, I just want to hit the 50 messages and finaly be able to talk
Loafs
The orange one has t-rex on his back
hahaha now i see it
that's beautiful!
Did you have nice lights recently? there was a solar flare that was supposed to give more lights or something
I dont go outside 😂
lol! same here
is it weird that i don't play games like you guys not even have an interest at all
Skibidi!
prapapa papa Big Shaq
my side project is building a laundry folding machine 😄
"house work is useless shit"
me cleaning every small corner of my house to keep insects away because i hate them o-o
also me when i'm hungry and there's nothing to eat + i don't wanna eat out
hahaha i can't work if i feel like the room is messy... i hate housework but it messes with my mental health if i don't do it, might as well try to automate some of it
hahaha and they always fall behind on seeing the reels and memes
me be like