#voice-chat-text-1
1 messages Β· Page 87 of 1
lmao nice job
triple random, if it works it works
that looks better
does your "newPos" var need a random in it?
no nvm thats to move forward
wat da hell
XD
ok now change the colors fast
and rave
LOL
im dead
what range is your random choosing from?
brb ima grab food. good luck brother, if you see me in here show me when you figure it out
maybe thats why the colors were messing up
peace out
hi
I think u should check line 44,45
@golden marsh counld you help me
and search google for incident and reflected rays
ho
isnt the normal vector just the -1,0
so happy for you
direction randomness will be tricky since they are all starting from the same point, direction will always be a line. Or what exactly do you want to achieve with direction randomness
Hey everyone inactive again?
U will have to verify I think, send in more than 50 messages
terraform
configuration management -- provisioning -- IaaC
statelessness
Thank man
you welcome stranger
hi
TF is not stateless you have tfstate files to put up with
hlo
!voiceverify
hi
a game rumor
I'll be back
Listen carefully, I shall say this only once - Michelle Dubois of the Resistance - Allo Allo - Copyright BBC
Colossus was one of the very first electronic, special purpose, computers and it was created almost two years earlier than the better known ENIAC. We visit Bletchley Park, home of the code breakers, and TNMoC, The National Museum of Computing. Professor Brailsford shows us the Colossus replica.
The Most Difficult Program to Compute?: https://yo...
Hitler's High Command didn't use Enigma, they used a faster system called Lorenz, but when Allied forces first encountered it, they had no idea what it was and code-named it 'Tunny' (Tuna). Professor Brailsford explains why this relates to the early days of Computer Science
Next Video in this series: https://youtu.be/yxx3Bkmv3ck
The Professor...
Professor Brailsford rounds up the whole Colossus affair, and explains how Turing actually played a small but significant part in Bill Tutte's work.
Colossus Playlist: https://www.youtube.com/playlist?list=PLzH6n4zXuckrSWWIDJ_3To7ro5-naSk8v
Enigma Playlist: https://www.youtube.com/playlist?list=PLzH6n4zXuckodsatCTEuxaygCHizMS0_I
What Happen...
ya
just like the cia!
cant hear the voice
reconnect
ok
now i can hear
any good project ideas for passing time
??
@sweet bluff
sorry I forgot
Im sorry for that ahah
periodt.
Grrrr
anyways are u guy available to help me with sum?
perhaps
!twss
π
any ideas whats the problem?
also are all the modules also liek downloaded?
fuck pre-commit, all my homies hate pre-commit
All dependencies of whatever you're pip installing also get installed with it, yes
My only feedback is any py to exe is temperamental
the way py-installer works is that it packages a python interpreter and all the installed packages into a folder (or file with --one-file)
Real programmers check manually 
ah ok also another thing what about the defender thing cuz people say whenever u run the exe, defender stops it cuz it thinks its a virus
I'm sure there's a workaround for said thing by rebuilding some module from source
Unfortunately there really isn't an easy way to do that. It involves getting the program certified and other finicky stuff
Not sure if doing it in one file fixes that or not
you have to sign the thing
what thing?
The executable
idrk how it works, i just know you can sign something

https://pre-commit.com/ watch his streams and or contact him for features https://www.twitch.tv/anthonywrites
ups
hello hello! I stream programming and primarily work on open source python software -- some of my projects are pre-commit (creator), babi (creator), flake8 (primary maintainer), pytest (core developer), tox (core developer), and many more!
Anyone here good with selenium? Need a bit of help :/
On a tangential note, my setup has more super powers now
does anyone know what this means?
it means you need a package that you don't have
by package is it like module?
something like that
rofi, still trying to get it to a state that I like
that's so pretty :o
I used dmenu beforehand and it was eh
cuz I was using the pyautogui locate on screen function and It wouldnt locate the image I put and Instead it gave me that error
emacs tho π€’
Any idea what this is supposed to mean?
Kakoune > Vim
nvim > Kakoune
I can DM you my actual setup
π

fira code π
I quite like the selection-heavy approach of kak
wait whats an API
the real kutiekaaaaAAAAti9
Okay I'm stealing the g-h/j/k/l keybinds
aaaaaaaaaAAAAAAAA
So much better than having to do 0/$ all the time to jump lines
That's super cool @golden marsh
:O lx is unmuted
π I talked for like a second in the help channel. Then my anxiety kicked in π
Which way are you rounding @golden marsh? π€
Idk π
Maybe you need banker's rounding?
Because regular rounding is positively biased.
Yeah, it's definitely got a slightly creepy organic quality.
I miss Vanilla Coca-Cola
Same tbh
Literally just tastes like an ice cream float lol
What are you guys doing here?
You should try cream soda π
Python is much slower because it's interpreted.
There's a lot of indirection, which is bad for cache performance.
A common question: βIs Python interpreted or compiled?β Usually, the asker has a simple model of the world in mind, and as is typical, the world is more complicated.
And a lot of things stick around in the code after "compilation" that wouldn't do in a language like C++ (like type information).
because of dynamic typechecks and all the work python has to do at runtime
Yeah that's it. It's more that it's dynamic than that it's interpreted.
whoever asked what the inpsiration was: https://www.youtube.com/watch?v=elqwn7k2Wwk
Let's dive into the branching weirdness of the pulsating slime molds!
Follow Journey to the Microcosmos:
Twitter: https://twitter.com/journeytomicro
Facebook: https://www.facebook.com/JourneyToMicro
More from Jamβs Germs:
Instagram: https://www.instagram.com/jam_and_germs
YouTube: https://www.youtube.com/channel/UCn4UedbiTeN96izf-CxEPbg
Hoste...
Because all languages are interpretted π
Hemlock yes
@warm tendon You're better than that 
Chewsday π₯΄
no pypi just use the mypy π
I used PyPy to bruteforce that one AoC problem
Let me take a look...
Memory is ergh
from aocd import get_data
Here is my part-2 for day 14, if it helps: https://github.com/lxnn/advent-of-code-2020/blob/main/day-14/p2.py
π
def pos_mas(mask, ma):
mas = set()
ma = list(str(m) if m != "0" else v for m, v in zip(mask, ma.rjust(len(mask), "0")))
def gen_ma(i, ma):
if i == len(ma):
mas.add(int("".join(ma).rjust(32, "0"), 2))
return
elif ma[i] == "X":
ma[i] = "0"
gen_ma(i + 1, ma)
ma[i] = "X"
ma[i] = "1"
gen_ma(i + 1, ma)
ma[i] = "X"
else:
gen_ma(i + 1, ma)
gen_ma(0, ma)
return mas
```π
i'm ngl, the itertools.product solution is way better

@mild flume ?
list(bin(int(address)))[2:] lmao
l m f a o
I haven't heard of that
That's messing up the compression algorithm yep
Weirdly the other patterns don't π€
it my favourite candy
it looks something like this
blur ble bloken
a= float( input("vvedite pervoe chislo\n") )
b= float( input("vvedite vtoroe chislo\n") )
what = input ("vyberite deistvie (+ - * /) \n")
if what == "+":
c = a + b
print("result" + str(c) )
elif what == "-":
c = a - b
print("result" + str(c) )
elif what == "*":
c = a * b
print("result" + str(c) )
elif what == "/":
c = a / b
print("result" + str(c) )
else:
print("neverno")
what are yall upto
Does anyone know why this is ? I donβt understand how to actually import the module because I was using pycharm
oh adn should I write something there?
whatever you wanted to write in cmd, use the pycharm terminal for it
oh ok. So instead of installing the module throught pycharm, should I use its terminal to install the package or pyautogui in this case?
wdym
cuz I already installed the module in pycharm but when I made it into an .exe, it said "ModuleNotFound Error"
you tried to make it into an exe using cmd right
no I used the way u guys told me earlier, the "Auto py to EXE
so what's that black box on your screen
oh thats cuz when I tried to figure why my application wasnt launching, i went to CMD and copied to the path and ran it there to see what error was, and it was the one shown
because pycharm uses a virtual environment
so packages installed in your project in pycharm aren't installed to your python in cmd
But now that I want to make it into an .exe it doesnt work because It doesnt have those packages
how are you making it into an exe
sorry Im not sure I understand?
So I found the location of my script, put it on there, then downloaded some images I have on there too, then when it did the command for me and I ran the .exe, this popped up
to do what?
do create the exe
oh ok should I just copy the command from the app I used or is there a specific one I should do?
do whatever you did in cmd to make the exe, but in pycharm's terminal
ok sorry one sec
@golden marsh what are you doing rn?
cxFreeze?
@warm tendon omg thank you it worked wait will it work on computers that done have python?
You could also generate executables with Cython
only on the same operating system as yours
like u mean win 1=?
win 10
?
also I'm trying to not wait for a dependency of my project to update to the latest version
I just want blog posts 
tl;dr PureScript and the Halogen framework got some major version bumps and one dependency I have isn't updated for Halogen 6 yet
he deafened
I'm tempted to PR it up or at least get in touch with the maintainer on Slack
prob was already
wtf
do you guys reccomend Microsoft Visual Studio
or Pycharm?
thonny?
No i meant code sorry
Oh ok sick thanks :))
If you want to get started right now with minimal fuss, you could go with Thonny, or IDLE (which comes with python).
Also @warm tendon I just wanted to say thank you I spent 2 days tryna figure this out and apparently I was so simple lmaoo thanks for the help bro
hey @mild flume man i need help
Ah, someone watches QI π
I watch QI and I also listen to the podcast
Ohh, Thonny looks great actually.
I think I was confusing it with something else (nano?) 
lit rally
Mr. Hemlock's impressions are always π₯
A small exploration of an algorithm inspired by ants, and some little experiments into simulating some of the behaviour of ants and slime moulds. I hope you enjoy!
The project files are currently in early access for Patreon supporters, but will be available to everyone early April, in case you want to take a closer look. https://www.patreon.com...
This is very sour yogurt and I'm not happy about it
;-;
I refuse to believe that modifying a few lines is what it took to have this project built
So I guess I can use my fork in the meantime
how
Seriously, how
I mean it's kinda thrown around in Haskelland how "if it compiles it probably works"
This project uses type-level fuckery that's way past me
Even that statement can't save me
great book btw π
^ how to manipulate people into feeling that they're needed so that they'll be happy to do favors for you
is what i remember from that book
:ok_hand: Added conwayβs-game-of-π£π€π π³π§ to the names list.
!otn s conway
β’ conwayβs-game-of-π£π€π π³π§
A PR made it fuzzy iirc
did you read that book?
bc i haven't yet
what i wrote is basically what i rmbr
Im back
ok
What did Linode do?
damn @misty sinew doing flutter eh? whatcha workin' on?
ooh thats cool
@misty sinew you using any state management library?
ooh ok
yeah thats chill
you dont really need to
they just help you manage your global state(data)
yeah, you'll only start actually caring about it once you work with flutter enough
My Crow Services, for professional web application developer corvids and other assorted birdlife.
Discover the best Network & Cable Testers in Best Sellers. Find the top 100 most popular items in Amazon Industrial & Scientific Best Sellers.
Should I use PyQT, or some javascript framework like electron to build my desktop app?
What do you guys think of PyQT? I don't think its very great for building desktop apps(seems like a ton of boilerplate), and I haven't seen many great UI/User experiences built with it.
might just go with electron
electron seems to be the defacto things these days. PyQT isn't bad and I've seen good things made with it, but it's not as common as electron
although electron does take more ram and stuff
that is the downside of electron
with all the apps using it RAM gets eaten so quickly
can you please link anything that you thought was nice, that was built with pyqt?
right
hello @unique raptor
^ @last cove
how are you?
gud
nice
yup
That's more like it π
thanks!
Gotta update example code then
@stoic bluff
have you done something today
also anyone who works with react, whats your favorite state management library?
me swedish
are you form Sweden
nawh from finland
oh
Arduino IDE was built with it and so was Calibre
but you guys have to learn that
ik it sucks that we finns have to study Swedish
ok
oh wow, havent heard of calibre, but arduino ide being built with it is pretty great
but why
dont know
its more complicated than that
Swedish and Finnish differ from each other
well now you know
how come?
yes
like some words are different but its the same
and speling
but learn cusev and normal latin
cursive
ok
damn thats a lot
damm we miss the 169,069
bye

192.168.1.1
lunsx
"linus"
linus tect tip
no linus the creator of linux
192.168.1.254
he's half swedish, half finn
im going to head out
bye
Hello
@autumn raft I kinda dissed pyqt while @ kutiekaaaaAAAAtj9 was in vc(. Surprisingly, she didn't uh... blow up get upset when I did!
:)
haha, that is because kutiekat is too nice for that
damn
(
i kinda wanted to try it out since you told me last time
it was still a fun experiment so π
Hola FishaaaaAAAA
lol plz dont experiment on staff
got it
didnt mean to legitimately mess with her, or waste her time, i genuinely wanted her opinion firsthand
wont do it again though, sorry
listening to doom ost while programming is so fucking good
havent heard the doom ost, will have a listen
@short river hiaaaaaaaaaaaaaaaaaaaaaaa

thats pretty wholesome
Working with types is quite therapeutic
!otn a hemlock's IT help desk
:ok_hand: Added hemlockβs-π¨π³-help-desk to the names list.
I sure love the compiler screaming at me at 2:30 AM
lol
and it's not even my project 
fix error
YOO the ship
i heard it's free?
i love that it tracks it lol
Itβs free
it fwds to rick roll lol did it always do that?
@true valley static coming in thru your mic intermittently
appologies. Let me turn on push to talk.
π
!e
string = 'kutiekatI9'
while "a" in string:
string = string.replace('a', 'aaaaAAAA')
print(f"the real {string}?")
@warm tendon :x: Your eval job has completed with return code 143 (SIGTERM).
001 | the real kutiekaaaaAAAAtI9?
002 | the real kutiekaaaaAAAAaaaaAAAAaaaaAAAAaaaaAAAAAAAAtI9?
003 | the real kutiekaaaaAAAAaaaaAAAAaaaaAAAAaaaaAAAAAAAAaaaaAAAAaaaaAAAAaaaaAAAAaaaaAAAAAAAAaaaaAAAAaaaaAAAAaaaaAAAAaaaaAAAAAAAAaaaaAAAAaaaaAAAAaaaaAAAAaaaaAAAAAAAAAAAAtI9?
004 | the real kutiekaaaaAAAAaaaaAAAAaaaaAAAAaaaaAAAAAAAAaaaaAAAAaaaaAAAAaaaaAAAAaaaaAAAAAAAAaaaaAAAAaaaaAAAAaaaaAAAAaaaaAAAAAAAAaaaaAAAAaaaaAAAAaaaaAAAAaaaaAAAAAAAAAAAAaaaaAAAAaaaaAAAAaaaaAAAAaaaaAAAAAAAAaaaaAAAAaaaaAAAAaaaaAAAAaaaaAAAAAAAAaaaaAAAAaaaaAAAAaaaaAAAAaaaaAAAAAAAAaaaaAAAAaaaaAAAAaaaaAAAAaaaaAAAAAAAAAAAAaaaaAAAAaaaaAAAAaaaaAAAAaaaaAAAAAAAAaaaaAAAAaaaaAAAAaaaaAAAAaaaaAAAAAAAAaaaaAAAAaaaaAAAAaaaaAAAAaaaaAAAAAAAAaaaaAAAAaaaaAAAAaaaaAAAAaaaaAAAAAAAAAAAAaaaaAAAAaaaaAAAAaaaaAAAAaaaaAAAAAAAAaaaaAAAAaaaaAAAAaaaaAAAAaaaaAAAAAAAAaaaaAAAAaaaaAAAAaaaaAAAAaaaaAAAAAAAAaaaaAAAAaaaaAAAAaaaaAAAAaaaaAAAAAAAAAAAAAAAAtI9?
005 | the real kutiekaaaaAAAAaaaaAAAAaaaaAAAAaaaaAAAAAAAAaaaaAAAAaaaaAAAAaaaaAAAAaaaaAAAAAAAAaaaaAAAAaaaaAAA
... (truncated - too long)
Full output: too long to upload
143 π
oh no
I did it
One more!
Time to fork
Some PureScript package to get me to sleep
poetry env remove 3.9
@autumn raft 
who is sus here
@stark saddle π
π
@autumn raft poetry env list
poetry env remove py worked, but I probs shouldnt have done this
That's how linux development is done I think π
Emailing code back and forth
Hmm, I'm looking at Poetry. What advantage does it provide over a requirements.txt file?
poetry run task start
Oh right
[tool.taskipy.tasks]
start = "python -m aaaaAAAA"
lint = "pre-commit run --all-files"
precommit = "pre-commit install"
Cool, thanks π
It uses pyproject.toml and has good dependency resolution
toml π©
[tool.poetry]
name = "aaaaAAAA"
version = "0.1.0"
description = "Our staff team submission for PyWeek 31. There will be ducks."
authors = ["Python Discord <info@pythondiscord.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.9,<3.10"
arcade = "^2.5.5"
[tool.poetry.dev-dependencies]
flake8 = "~=3.8"
flake8-annotations = "~=2.3"
flake8-bugbear = "~=20.1"
flake8-docstrings = "~=1.5"
flake8-import-order = "~=0.18"
flake8-string-format = "~=0.3"
flake8-tidy-imports = "~=4.1"
flake8-todo = "~=0.7"
pep8-naming = "~=0.11"
pre-commit = "~=2.1"
taskipy = "^1.6.0"
[tool.taskipy.tasks]
start = "python -m aaaaAAAA"
lint = "pre-commit run --all-files"
precommit = "pre-commit install"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
I gotta head out and do some stuff cya guys!
Oh no
^
question to you guys- whereβs the best way to get help if my question wasnβt answered in the help channels
Hey
decentralized
can you post the question here? I can provide feedback. Usually it's one of two things: (1) your question is hyper specific (2) your question isn't quite phrased in a way that lets people help properly
I am just wondering, how do I get voice verified. Apologies if this is not the right place to ask this question
well,
!voice check this out
Voice verification
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
XD
Thank you!
Ledgers are people too 
it's about proof of work, verification etc
easiest way to send large sums of money safely and cheaply
Hi. Trying to use/debug an add-on used for open source Python based flashcard app Anki. Uses a python link to communicate with Spacy, python based open source NLP processor. the add-on ,Morphman, communicates with Spacy and gets POS tagging and dependency labels. Get this exception when I attempt to pass certain fields of a flashcard through the language processor through a "recalc", which computes this for all user-specified flashcards.
Add-on
https://github.com/rteabeault/MorphMan/tree/rteabeault/spacy_support
Debug info:
Anki 2.1.35 (84dcaa86) Python 3.8.0 Qt 5.14.2 PyQt 5.14.2
Platform: Windows 10
Flags: frz=True ao=True sv=1
Add-ons, last update check: 2021-03-28 23:12:08
Caught exception:
Traceback (most recent call last): File "C:\Users\AppData\Roaming\Anki2\addons21\Morphman__init__.py", line 17, in onMorphManRecalc main.main() File "C:\Users\AppData\Roaming\Anki2\addons21\Morphman\morph\main.py", line 573, in main allDb = mkAllDb(cur) File "C:\Users\AppData\Roaming\Anki2\addons21\Morphman\morph\main.py", line 195, in mkAllDb ms = getMorphemes(morphemizer, fieldValue, ts) File "C:\Users\AppData\Roaming\Anki2\addons21\Morphman\morph\morphemes.py", line 166, in getMorphemes ms = morphemizer.getMorphemesFromExpr(expression) File "C:\Users\AppData\Roaming\Anki2\addons21\Morphman\morph\morphemizer.py", line 51, in getMorphemesFromExpr morphs = self._getMorphemesFromExpr(expression) File "C:\Users\AppData\Roaming\Anki2\addons21\Morphman\morph\deps\spacy\morphemizer.py", line 40, in _getMorphemesFromExpr self.proc.stdin.flush() OSError: [Errno 22] Invalid argument
my crypto portfolio is up like 150%
wish I could chat, I'm not leveled for voice
from $10 to $18 (I am good at math)
I sold all my bitcoin for niche, obviously bad-investment currencies
made the right choice 
I don't know much about this, but I like that Etherium moved to proof-of-stake
I feel as if proof-of-work is just not sustainable, in the long term.
I think that falls into the former point kutie mentioned, the problem seems so hyper focused that you may find it'll take a while for someone with knowledge on the library who can help
you guys should bid on my nft
So that is definitely the hyper specific question territory. That's the point where you'd have to dive into the library itself and dig into the internals. It miiiight be better off in one of our topical channels
It might be easier to find help if you ask in one of our topical channels, or on the github itself as an issue
asked on github, devs dont respond. poorly managed, no leadership- lots of bugs π¦
π¦
@hallow anchor @stark saddle which topical channel would you guys reccomend
Seems like a #data-science-and-ml question
gotcha. thanks guys
But, am I right in thinking bitcoin uses a large amount of energy if you just measure it as like joules per transaction?
Same is true for fiat
Why are there so many different viable cryptocurrencies? There's Bitcoin, ethereum, monero, and prolly more.
Download the Bitcoin Wallet by Bitcoin.com. A simple, secure way to send and receive Bitcoin. Available for iOS, Android, Mac, Windows, and Linux. Supports Bitcoin Cash (BCH) and Bitcoin (BTC).
Mr hemlock isn't that what happened to ethereum (blockchain getting too big)? You can no longer mine ethereum with gtx 1060 3gb and you need 6gb version? Or am I misunderstanding you guys?
Horray, fake electric non producing assets!
@elder wraith not gonna lie bitcoin and the like does have some advantages over normal digital currency.
Nothing a normal person cares about
i guess i am so young for such intellectual discussion
Okay I can't argue with that, yes, at the end of the day the average person does not care about crypto, but it's advantages are to be kept and noted.
Sure but when weighted against the negatives compared to fiat currencies, Bitcoin is worthless for average consumer.
Hmmm
1 dormant channel 
So itβs fake electronic non productive asset and terrible
The more you go against my points, the more I find my likings to bitcoing going away.
Because it kills the environment
well...I wouldn't say the environment is the biggest issue here, but we'd be going off topic if we'd go into that
LMFAO
BRUH
Hey @misty sinew π Ask your question here.
Ok
damn is this server usually this popular?
How can i my bot get booster
like nitro boost
er
client.event
async def on_boost():
?
@hearty heath
Hmm, I'm not very familiar with discord.py sorry.
I assume you're using discord.py, have you considered asking this at #discord-bots ?
ok
When you say get booster, do you mean like detect when someone boosts the server?
yes
Have patience
you can buy it using the gift box link in the text line, actually that is for gifting, I think you do it through your browser
kam sounds like he is 14/13
@misty sinew The place to go is #discord-bots not the off topic voice channel
@ionic crater Let's not mock people, alright?
Came off a bit.... yeah
@misty sinew also, please please PLEASE be sure to know the basics of python before getting into this stuff, you should mostly worry about the discord specific stuff if you do discord stuff, if the language is in the way, you need to learn other parts of python first.
Ik this is sort of coming out of the blue, but trust me, if you generally have issues understanding documentation of whatever python stuff you're trying to do, you are missing some basics.
in docs
it says nothing about boosters
is this what you're looking for? ik i just looked up "booster" and highlighted "boost", but hope this helps
Does anyone actually have the data for energy/transaction of bitcoin and other forms of money?
yes, this data is pretty easy to find online
so you could easily find it then?
Guys why are you talking about our planet
You should think about it only 1 day before apoc.
dee em see two
@broken harness alright but at that point isn't this getting complicated? I feel like trying to solve bitcoin's flaws in the form of paper wallets and other solutions is going to complicate the thing in the long term and repel potential holders and users.
btw can we all agree NFTs suck
@ancient whale what's nft?
Non Fungible Token
your basically buying nothing
So one bitcoin transaction is equivalent to 400,000 VISA transactions in terms of energy consumption...? (genuine question, I don't know much about this)
The benefit of fiat currency that any country wonβt give up
I'd be up for uniting
less the carbon footprint from manufacturing the visa machines, their offices, and the rest of the overhead π
but I get what you're trying to say
That STILL hurts me to learn about it
And fiat currency is able to prevent many from going homeless
That overhead exists with Bitcoin
yep, they make me sick
Both use tech
TIL Fiat currency.. has nothing to do with the cars
true, but it wasn't created specifically for bitcoin and it can be used for other things
good one
Yeah, I mean I'm not writing off crypto currencies. Sorry if it came across that way. Didn't Etherium switch to a different algorithm that uses lower energy?
!tempban @elder wraith politics bad
python is cool
bruh pls no i like rabbit
So, C++ ey?
HAHAHAHA
Speaking of languages bad for environment. 
@elder wraith complicated languages cause larger carbon footprint in the form of more calories burned talking to say the same things, we need to half the words in our language to save the environment. I'll start
No, just joking about interpreters requiring more compute
ok tbhhhh it was funny at first but....
Done
HAHAHAHAHA
unless you manually change the transistors in your computer with a b2 pen you are a noob
SO JAVASCRIPT SUCKS MORE
Javascript compiles
oh
JS is actually super efficient at this point
i forgot about that ooops
having fun causes laughter which burns calories, we need to wallow in despair to save the environment, I recommend we all try learning C++ while drunk to start
I can't believe it
oh yeah its extremely less pleasant
@stark saddle will I get in twouble for just pushing to main?
not from me~
i-
hooray
@autumn raft you can push to main any day brother
Do it
it's pyweek, do whatever
push push push, don't hesistate
oh wow that felt freeing
nooooooooooooooooo
Listen, I have to tank this team somehow
oh yeah wait
I feel like a rebel, my heart is beating so fast
Give me push privileges
DEW IT
theoretically i could sabotage this lul
what? you care about being careful with what you commit and only do it in small, manageable chunks? BRUH, LOL
π
is that a competition?
Yeah #816317565738942524
wait what? you got a readme to convey necessary info to the user? lmao what are you? a responsible human being?
does anyone know of any good fantasy consoles that you can use python with?
because I'm NOT using PV8 anymore
fantasy console? I'm intrigued
Tic-80
https://nerdyteachers.com/Explain/FantasyConsoles/ def in the side bar
Find out what is a fantasy console and what are the best fantasy consoles out there.
I was flipping back and forth between staff lounge and the pyweek register form
@client.event
async def premium_subscriber_role(member):
``` i can do this right?
Btw, did you guys expect 'cops' to get chosen? π
Meh
No lol, you?
!e py from random import randint for i in range(15): print("a" if randint(0, 1) else "A", end="")
DOCKER YEAH
@client.event
async def premium_subscriber_role(member):
``` i can do this right?
!e py from random import randint for i in range(15): print("a" if randint(0, 1) else "A", end="")
@sleek parrot :white_check_mark: Your eval job has completed with return code 0.
aAAAaaAaaAAAaaa
i am pleased
pcsx2
lol
@peak frigate @fluid edge
We have you to blame for this
@autumn raft didn't even let me review 
what's the aaaaas for?
screaming in pain
Better question? Why not have them?
mental deterioration in the form of radiowaves caused by typinga too much
aaaaAAAA
no pls i beg you
I let psvm do it, that was more than enough
!int e
async def aaaaAAAA(self, ctx):
ctx.send_message("@dry dune")
is that the role ID?
shh
You have a history of using my user id -_- I gotta check
what am I supposed to do with the role id?
i missed the decorator too but don't worry
gg
so the duck is programatically made?
Been up too late today. See ya folks!
γ°οΈ
soon(TM)
sike
β’οΈ
β’οΈ
!soon looneytune
!e
s = {1, 2, 4}
for x in s:
s.remove(x)
@warm tendon :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 2, in <module>
003 | RuntimeError: Set changed size during iteration
Java error? Failed.To.Do.The.Thing.Class
L = ['red', 5, 'blue', 10, 13, 'bnuuy', 'moose']
for x in L:
if type(x) is str:
L.remove(x)
print(L) # concurrent modification D:
Please remove the Rabbit π―
it's labeled "people with bunny ears dancing"
!projects
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.
wack
so are my lack of linting but here we are π
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
@misty sinew

if you want to overwrite /dev/sda ; caution dont its main disk you use
dd if=input_file of=/dev/sda status=progress
Why are you addressing drive paths?
because someone asked to do the dd overwrite of drive.
!global
When adding functions or classes to a program, it can be tempting to reference inaccessible variables by declaring them as global. Doing this can result in code that is harder to read, debug and test. Instead of using globals, pass variables or objects as parameters and receive return values.
Instead of writing
def update_score():
global score, roll
score = score + roll
update_score()
do this instead
def update_score(score, roll):
return score + roll
score = update_score(score, roll)
For in-depth explanations on why global variables are bad news in a variety of situations, see this Stack Overflow answer.
wheeeee time to move gravel
tf did i walk into
we are trying, dont judge plz
hi everyone in the chat

that is one of my favorite gifs
got it
ok, lets stop spamming now
@autumn raft traitor
!warm @autumn raft
HA
ty, im so cozy
wordpad gang
!code
Here's how to format Python code on Discord:
```py
print('Hello world!')
```
These are backticks, not quotes. Check this out if you can't find the backtick key.
def total(a=5, *numbers, **phonebook):
print('a', a)
#iterate through all the items in tuple
for single_item in numbers:
print('single_item', single_item)
#iterate through all the items in dictionary
for first_part, second_part in phonebook.items():
print(first_part,second_part)
total(10,1,2,3,Jack=1123,John=2231,Inge=1560)
a 10
single_item 1
single_item 2
single_item 3
Inge 1560
John 2231
Jack 1123
!e
def func(*arg):
print(arg)
func(1, 5, 3, 2, 6, 2, 2, 3)
func("hey", "yo")
@warm tendon :white_check_mark: Your eval job has completed with return code 0.
001 | (1, 5, 3, 2, 6, 2, 2, 3)
002 | ('hey', 'yo')
variable number of positional arguments, variable number of keyword arguments
!e
def total(a=5, *numbers, **phonebook):
print('a', a)
#iterate through all the items in tuple
for single_item in numbers:
print('single_item', single_item)
#iterate through all the items in dictionary
for first_part, second_part in phonebook.items():
print(first_part,second_part)
total(10,1,2,3,Jack=1123,John=2231,Inge=1560)
@warm tendon :white_check_mark: Your eval job has completed with return code 0.
001 | a 10
002 | single_item 1
003 | single_item 2
004 | single_item 3
005 | Jack 1123
006 | John 2231
007 | Inge 1560
!e ```py
def total(a=5, *numbers, **phonebook):
print('a', a)
#iterate through all the items in tuple
for single_item in numbers:
print('single_item', single_item)
#iterate through all the items in dictionary
for first_part, second_part in phonebook.items():
print(first_part,second_part)
total()
@sleek parrot :white_check_mark: Your eval job has completed with return code 0.
a 5
!e
my_list = [1, 2, 3, 4, 5]
print(my_list)
print(*my_list)
@autumn raft :white_check_mark: Your eval job has completed with return code 0.
001 | [1, 2, 3, 4, 5]
002 | 1 2 3 4 5
!e
def minimum(*numbers):
x = numbers[0]
for number in numbers:
if number < x:
x = number
return x
print(minimum(3, 2, 3, 6, 1, 3))
print(minimum(3, 7))
@warm tendon :white_check_mark: Your eval job has completed with return code 0.
001 | 1
002 | 3
!e ```py
def total(a=5, *numbers, **phonebook):
print('a', a)
#iterate through all the items in tuple
for single_item in numbers:
print('single_item', single_item)
#iterate through all the items in dictionary
for first_part, second_part in phonebook.items():
print(first_part,second_part)
total("Not a Number",1,2,3,Jack=1123,John=2231,Inge=1560)
def typestotal(a: int=5, *numbers, **phonebook):
print('a', a)
#iterate through all the items in tuple
for single_item in numbers:
print('single_item', single_item)
#iterate through all the items in dictionary
for first_part, second_part in phonebook.items():
print(first_part,second_part)
typestotal(10,1,2,3,Jack=1123,John=2231,Inge=1560)
typestotal("Not a Number",1,2,3,Jack=1123,John=2231,Inge=1560)
@sleek parrot :white_check_mark: Your eval job has completed with return code 0.
001 | a Not a Number
002 | single_item 1
003 | single_item 2
004 | single_item 3
005 | Jack 1123
006 | John 2231
007 | Inge 1560
008 | a 10
009 | single_item 1
010 | single_item 2
011 | single_item 3
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/ozifaxonur.txt?noredirect
"first_part" and "second_part" are top-tier variable names
from curses import wrapper
def getdebug():
print("Debug?")
debug = input("y/n")
debug = True if debug == "y" else False
return debug
def init():
dg = getdebug()
screen = curses.initscr()
return screen, dg
def main():
# I cant get arguments in here apart from using global because the wrapper from curses doesn't take arguments
global screen
global debug_
# do game stuff
if __name__ == "__main__":
screen, debug_ = init()
wrapper(main) #I cant get arguments through this, so I have to use globals instead
this is my team logo haha
if not "":
print("works")
python: "" is false```
lua = trash
# python
if something:
do_something()
-- Lua
if (something) then
do_something()
end```
local var
def do_something():
var = "lol"
print(var)
-- Lua
function do_something():
local var = "lol"
print(var)
end```
Instagram
songda_cat
This will make your Shibe not only clean, but also very happ!
Remember to enhance the water quality in the bathtub with bepis flavoured soap. :)
Sources:
Maruko on IG:
https://www.instagram.com/tommyrts/
https://www.instagram.com/tomikago/
Patrons:
Wise Woofers:
π Chase Cutler
π₯ Wheel
π Tyro Lavine
π Generic Scottish Channel
π Nick Moran
π Ma...
Live on the Panel back in the day! He was a youngin' here...
John Mayer playing a solo acoustic version of Neon, at the Soundstage concert on July 14th, 2005.
AMAZING solo in the middle of the song!
SW-2664-5342-0717
adorbs
march
Hey everyone! Does anyone know about Libreboot? I've been having an issue after replacing the Memory. Whenever boot into Trisquel (my OS) it crashes at boot, or it'll crash a few minutes after startup.
I'm not sure if its an issue with the micro-code or something like that. I haven't tested the memory yet, but its for sure a memory issue
United States v. Microsoft Corporation, 253 F.3d 34 (D.C. Cir. 2001) is a noted American antitrust law case in which the U.S. government accused Microsoft of illegally maintaining its monopoly position in the personal computer (PC) market primarily through the legal and technical restrictions it put on the abilities of PC manufacturers (OEMs) an...
In its October lawsuit, what did the Justice Department lawsuit allege about Googleβs dominance in search?
The Justice Department alleges that Google is illegally maintaining its monopoly in search through exclusionary contracts with distributors such as mobile-phone makers, wireless carriers and web browsers to make Google their default search engine. As a result of these agreements, which involve Google paying out billions of dollars to distributors each year, Google owns or controls search distribution channels accounting for about 80% of the general search queries in the U.S., according to the governmentβs complaint.
These agreements thus prevent competitors from being able to get any kind of meaningful foothold, the government argues.
Googleβs chief legal officer said in a statement that the suit was flawed and that consumers use Google because they chose to, not because they are forced or lack alternatives.
"the other big video site" π
π
I thought Microsoft did some interesting research.
Particularly into programming languages.
Sure, but compared to other companies in 2012
like Microsoft pivoted in 2017, FAANG was coined in 2012
LMK if any piano sound is coming in thru my audio..
my brother is playing v loud today lol
Krisp is working
man, docker-compose up....so satisfying
SMELT
This has got to be one of my favorite, quick courses on regex: https://www.udemy.com/course/regex-academy-an-introduction-to-text-parsing-sorcery/
esp if he's using 9mm π
Well, I joined at a good time π
Adam reveals the derogatory origins of jaywalking and explains how the auto industry made it illegal.
Subscribe: http://bit.ly/truTVSubscribe
Watch Full Episodes for FREE: http://bit.ly/1Rw2yzp
In Adam Ruins Everything, host Adam Conover employs a combination of comedy, history and science to dispel widespread misconceptions about everything w...
I mean, they take you right into the city center.
Should I use a monorepo or a multirepo organization strategy for an npm library? I want to create a documenation website for the package. Should I put the website in a separate repo or the same repo as the npm package?
lul
And they're about the same distance as LA and San Francisco, or DC and Boston.
road tripppppp
NHS IS AWESOME* (* sort of... more funding and resources are needed. But they did save my life so thats nice)
This sounds like some Commie stuff
also, 50% of those are suicides
Life expectancy and income over time
who keeps tagging me π
no one here?
let me live my lifeeeeee. gaaawwwwddd
lmaooo
what's a professional degree?
oooh
like the different degrees for doctors
and lawyers
yeah
take a screenshot and redact your info lol
i started scrolling. this is a poorly designed spreadsheet. lol
lol
it's more a
word document
but in excel
purely bc, table
this is how koreans use excel
drives me nuts
thats a lot of nos
Hey @elder wraith!
It looks like you tried to attach file type(s) that we do not allow (.xlsx). We currently allow the following file types: .gif, .jpg, .jpeg, .mov, .mp4, .mpg, .png, .mp3, .wav, .ogg, .webm, .webp, .flac, .m4a.
Feel free to ask in #community-meta if you think this is a mistake.
hey
cooooooorl
yo
season 10 introduced princess
chapelle's parody of the walking dead. π―
rick is not dead yet
hopefully it doesnβt go until like 20 seasons
GOT
kill get killed
I didnβt say Rick died I said he left
The creators arenβt making it clear if heβll return
Hey @halcyon notch!
It looks like you tried to attach file type(s) that we do not allow (.csv). We currently allow the following file types: .gif, .jpg, .jpeg, .mov, .mp4, .mpg, .png, .mp3, .wav, .ogg, .webm, .webp, .flac, .m4a.
Feel free to ask in #community-meta if you think this is a mistake.
Even then I think once you start replacing a lot of characters
You lose the appeal of the original show
exactly
csv?
yepπ
Bc the cast changes drastically between every season or so
unpopular opinion: grey's anatomy was always trash.
here's the csv file
I think it says something
When people are interested in a show thatβs about doctors screwing
And itβs been going on for over 10 seasons
use libre office LP
see ya
cheers
You too peace
did you look at the ping from earlier lol
I donβt like how itβs devolving into Elliot going crazy
that's y mina's a real one.
I liked it more when it was tech oriented
the UK gov used a single Excel sheet for all covid data until that broke
so that was stupid
i also read smth abt the UK govt and excel
I found that hilarious
they ended up wiretapping a bunch of phone numbers
the wrong ones
bc of the drag/fill feature i think
oof
Thatβs funny
maybe it was an intern. lol
Rip that intern then
@drifting tusk other recommendations
bojack horseman
the it crowd
wild wild country
narcos
the great british baking show/GBBO - baking competition
ugly delicious - food docu
i couldn't get into bojack horseman π¦
these are all different genres lol
those sound pretty good, i think i might try getting into narcos. i like thriller/sci-fi shows
uh
i suppose you've already watched stranger things?
yes!
problem is i kinda like newer type series
okay so better call saul or stranger things... which one should i start π
i'd say stranger things is more fun
mmmmmmmm
it's great from the beginning... maybe a few eps?
same with stranger things. it starts off slowwww
Stranger things is unnecessary after the first season
The horror aspect is completely gone
s1 is def the best
i miss black mirror.
They continued the story bc they made bank
But not every show needs an extra couple seasons
I donβt think people understand that anymore
OOOOOOOOOOOOH peaky blinders
@fluid edge did it end?
1920s birmingham
no official word on season 6. π¦
word. charlie brooker basically said, "i'm busy with other things." lol
did American horror story stop?
i don't think so?
my parents donβt approve of me watching that bc of the graphic content
i chickened out. couldn't finish the first season.
Also the plot is weird??
the plot must be too big brain for me
Bc I couldnβt stitch together what was going on
I donβt like shows that make me do detective work in order to understand them
shouldn't you be asleep? lol
He doesnβt sleep
Savage pasta man only exists to be savage
niceee
ok
did you TIL as well
lmaooooooo
i learned something new today lmao



