#voice-chat-text-0
1 messages · Page 960 of 1
Invasion of the Empire of the Apes: Directed by Mark Polonia. With Ryan Dalton, Sarah Duterte, Jeff Kirkendall, Jamie Morgan. Warrior ape Trask has crash landed on a dead world, stranded and ready to honorably join his elders in the afterlife. But that is interrupted when a human terraforming ship arrives to restore the planet. Soon this lone si...
Sharkula: Directed by Mark Polonia. With Jeff Kirkendall, Kyle Rappaport, Jamie Morgan, Titus Himmelberger. The curse of Count Dracula lives on in shark infested waters, claiming the lives of a tourist community. A sea hunt for the new species results in monsters, madness and bloodshed. This great white is putting the bite back into terror, and ...
thats a classic!
Sharkenstein: Directed by Mark Polonia. With Greta Volkova, Ken Van Sant, Titus Himmelberger, James Carolus. Sixty years after the end of World War II, a small ocean town is plagued by a blood-thirsty creature that was built and reanimated by using the parts of the greatest sea-killers: the Sharkenstein monster.
furyo has a new favorite director
Mega Shark vs. Kolossus: Directed by Christopher Ray. With Illeana Douglas, Amy Rider, Brody Hutzler, Adam Dunnells. In search of a new energy source, Russia accidentally reawakens the Kolossus - a giant robot doomsday device from the Cold War. At the same time, a new Mega Shark appears, threatening global security.
The Return of the Living Dead is a 1985 American comedy horror film written and directed by Dan O'Bannon, and starring Clu Gulager, James Karen, Thom Matthews and Don Calfa. The film tells the story of how a warehouse owner, accompanied by his two employees, mortician friend, and a group of teenage punks, deal with the accidental release of a h...
Howard the Duck, known in Europe as Howard: A New Breed of Hero, is a 1986 American science fiction comedy film directed by Willard Huyck and starring Lea Thompson, Jeffrey Jones, and Tim Robbins. Based on the Marvel Comics character of the same name, the film was produced by Gloria Katz and written by Huyck and Katz, with George Lucas as execut...
The Holy Mountain: Directed by Alejandro Jodorowsky. With Alejandro Jodorowsky, Horacio Salinas, Zamira Saunders, Juan Ferrara. In a corrupt, greed-fueled world, a powerful alchemist leads a messianic character and seven materialistic figures to the Holy Mountain, where they hope to achieve enlightenment.
Soft White Underbelly interview and portrait of Deke, a drifter currently in Santa Monica, California.
Here's a link to a GoFundMe campaign to help some of the people seen in SWU interviews: https://gofund.me/d79eaa60
For ad-free, uncensored videos and plenty of exclusive content please subscribe to the Soft White Underbelly subscription chann...
i say bah humbug
@pallid hazel The only reason I said what I did was that my wife worked in the bush in Alaska for a few years helping the natives there
👀 what is this discussion
I don't know anymore
lol i'm so confused
Difference between folks who are "homeless", which in Aaron's definition are folks who are freshly out of a job, may not have been able to pay bills and got evicted and will be able to get back on their feet not long after
Anyone else beyond that he's classifying them as either vagrants, professional beggars, etc.
you can be temporarily homeless, but there are people who are chronically homeless
Soft White Underbelly interview and portrait of Matthew Cox, a former con man from Tampa, Florida. Here’s a link to Matthew’s book: https://www.amazon.com/Shark-Housing-Pool-Matthew-Cox/dp/B0851KBYCF/ref=mp_s_a_1_1?dchild=1&keywords=shark+in+the+housing+pool&qid=1601928946&s=books&sr=1-1
For ad-free, uncensored versions of SWU videos, as well a...
also, he's white. race plays a factor.
Evidence?
Wait
Can we get evidence as to average income of panhandlers?
If this is one of the major linchpins in the argument?
wait what
You get that, right?
and that's why people can't afford property
the corporations buying residential housing is fucked
just build your own house 
I feel like I'm being called stupid
lego is affordable
lol i can't build my own house if i don't own the land 😦
were you about to say they're just getting handouts @haughty pier
We are all funding its developments by supplying it every day through our bins!
EastTrash or WestTrash, pick a state of Trashlandia
I believe we need a wall in between them first!
To remove the trash from the oceans during our lifetime would be a good deed.
☕
Have a coffee
🫂 Thank you
hello everyone 🙂
Hello
Installing package managers through pip always causes problems
nested package managers
Now there's a thought
Hi @wheat needle 😁
@rugged root - guess what?
Poetry autodetects your venv
It does
PDM checks your global [enviorment]
Of course, now that I try to confirm that, I can't find it
pip uninstall poetry
Sounds right
name: Docker
on:
push:
branches:
- main
pull_request:
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
docker:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
strategy:
matrix:
python-version: [ '3.10' ]
env:
CACHE_VERSION: v2-prod
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up PDM
uses: pdm-project/setup-pdm@main
with:
version: 1.12.3
python-version: ${{ matrix.python-version }}
- name: Get cached dependencies
uses: actions/cache@v2
id: pdm-cache
with:
path: ./__pypackages__
key: ${{ env.CACHE_VERSION }}-${{ runner.os }}-pdm-${{ hashFiles('**/pyproject.toml') }}
- name: Install dependencies
run: pdm install --production --no-editable
- name: Log in to the Container registry
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
FROM python:buster
RUN adduser --disabled-password bradworks
WORKDIR /home/bradworks
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
ENV FLASK_APP bradworks
RUN pip install gunicorn
ENV PYTHONPATH="/home/bradworks/pkgs:$PYTHONPATH"
COPY __pypackages__/3.10/lib ./pkgs
RUN chown -R bradworks:bradworks ./
USER bradworks
EXPOSE 5000
ENTRYPOINT exec gunicorn --bind 0.0.0.0:5000 --workers 4 "bradworks.web:create_app()"
LABEL org.opencontainers.image.source = "https://github.com/darbiadev/bradworks"
Why PDM if container
West trash best trash
!pep 517
@rugged root , btw.. couldnt find a loop way to build all those tables, so I did it manually and laced it into the functions.. finally got it tested and all working now.
If you're working with raw sql, the more that you can just do in raw the better. Otherwise using an ORM would let you have more pythonic ways of dealing with stuff
I'll look into if it's more of a wall, and not trying to get out of lacing my shoes with python..
Yeahahhahha baby!
Whelp, son of a bitch. I can't use my PS4 themes on my PS5. Which means I can't use my favorite theme of all time: https://youtu.be/cJTlu4WM21s
// PSN Store: https://store.playstation.com/en-gb/product/EP2402-CUSA05624_00-ETH0000000002875
A fun dynamic theme for PS4. The mix between lasers and cats never gets old, it's still fun and weirdly adorable at the same time. The music is good, it fits the retro-vibe of the theme.
Looks very good on a 4K TV.
I've been using this one for well over a year or more
@haughty pier what do you mean online help for vim?
laptop guard
cat
:help
Server Deafen
That's a thing?
We refuse to let you hear us
I feel like I'd just ban them at that point
I mean it's a built in thing yeah
Which is why we don't use it
All moderative action goes through @wise cargo
Rebecca Black Was Here out everywhere now. https://li.sten.to/RBWH
This is the one and only official version of Rebecca Black's "Friday" music video.
Where to keep up with me:
https://vm.tiktok.com/ZMJM4sM1M/
http://instagram.com/msrebeccablack
http://twitter.com/msrebeccablack
http://facebook.com/iamrebeccablack
INQUIRIES - RebeccaBlackTea...
Emoji Movie
Box office: 217.8 million USD
Budget: 50 million USD
@quasi condor you're trying to say you're the real life mr bean?
100 dollars
to 200 dollars
get to 20 thousand
spend it all on crack
0 dollars
@pallid hazel can you do a tony robbins sketch?
🤣
@midnight agate 😆
🤣
😆
starting 30 years ago, it would have been very difficult to save 850$/m
i think fury wants you not to underestimate how slow and steady it is to become one
I saved 1000$ / month while living in NY. from 2002 to 2014
then when I lived in Taiwan.
its not quick, thats the point
emotional intelligence with Marcellio
funny vocabulary.......
that people still take you seriously
most people who use your words would get laughed out of a room @midnight agate
🤣
Heyy 👋
"auto-lull" -maroloccio
How is your project going?
@midnight agate rust? For what reason?
Isn't go a more modern language
p.s. i dont have any idea
EH
ksef
xd
yeah
Its ok
Zev
wonderland...
rust gives you a pretty rock solid application when you make one
its quite difficult to learn though
hmh I guessed
Oh @rugged root I don't know if this is something I should address to you but you could in theory add the channel hyperlink in the channel description... [#voice-verification](/guild/267624335836053506/channel/764802555427029012/) hope you don't mind the ping 😅
🤣
Nothing to apologize for
maro 🤣
@midnight agate I once literally criticized one of my high-school classmates for "parroting what the teacher said" instead of actually understanding it because they couldn't explain it in any other words... (the department head was in the room at the time and heard me and said "now the swords come out!")
you remind me of someone who got in trouble in school because they were too smart for their teachers
WHAT? This actually happend?
Like did the smart guy hurt the teachers ego? haha
that happens all the time, what you mean?
dont piss off an Adult.
people are nasty creatures.
trust robots.
and animals
Yeah I guess
Happy that my teachers aren't mad at me, when I correct them
I was cooperative with whatever they wanted as far as assignments and behavior, and I insisted my classmates respect our teachers, but I wasn't a teacher's pet, and I think they had a love-hate relationship with me.
fangirls
@midnight agate I think you missed the conversation where we discussed pip, poetry, and pdm.
It was much earlier
also Cloud Services immediately after that
I also briefly mentioned some things about vim.
frodo baggins?
yea...
I think I should change my name then
🤣
🤣
@midnight agate trying to build suspense....
😆
🤣
😆
you're so funny
🤣
@quasi condor thats chump change
you finessed that dude
damn sad story
@midnight agate thank you marco
for the beautiful speech
😆
🤣
eating, BRB
@quasi condor anything to add?
De ASUS Dual GeForce® GTX 1660 SUPER EVO biedt voor het beslissende voordeel voor AAA-gaming in high definition. Extra lange gaming Koop op Conrad.nl
amazon:
“Annual income twenty pounds, annual expenditure nineteen nineteen and six, result happiness.
Annual income twenty pounds, annual expenditure twenty pounds ought and six, result misery”― Charles Dickens, David Copperfield
@molten pewter I don’t have voice chat permission yet lmao but interesting talks
🤣
'it was a Pleasure....to host ...you.'
what you say after A beautiful dinner
@vivid palm we need streaming privileges
🤣
😆
Maybe....
on a special series of Monday Night Raw
I might pop out
you just gotta tune in
@midnight agate dont go, what do you have better to do?
hold up
i promise ill get you that stream
Damn
😆
gotta keep my privacy
as you say marco
'its A Dangerous....world.'
i cant live up to those expectations furyo
marco has high expectations
higher expectations than tony robbins...
i cant get voice privledges guys, because ill disturb conversations and burst out laughing everytime marco talks
thats one of my main reasons for not
I dont want to interrupt
you can also go voice verify and just not unmute
Why though?
which always leaves the option if you for some reason do want to communicate
why go through with the effort
takes 10 seconds
do you do that?
Nihilistic jmac
Why go through any effort at all then
Jmac giving me an existential crisis by midnight
🤣
im very religious
the reason why im not trying to get corrupted by marcos opinions
corrupted, no less
Sound argument
still corrupted, but im not trying to get more
aha
@olive hedge Hey, Fisher, may I have streaming privilege's to do some live coding with @midnight agate ?
not so much his opinions, but his vocabulary
its too much
it will make me start out going down the wrong path
i got to stay in the lane im going in
i cant get side tracked
you more than anyone knows you have to stay level headed
why you gotta keep doing what you do
and progress consistently
I think progress involves changes
🤣
😆
this guy is killing me
im living longer because this guy makes me laugh so much
and how do you know which change is progress, and which is a sidetrack?
very true, I guess its Perception i guess, And experience
i guess you have to trust your experiences
im not very economic
i know
@midnight agate are you suggesting we type too slowly?
brb i need to go get my fries out of the oven
we can type a lot faster
but that'll trigger the spam filter
not to mention being full of spelling mistakes
anyway
I'll let jmac speak
@sly jolt may I have some temporary streaming privilege's to do some live coding with @midnight agate in voice-chat-0?
@stuck furnace may I have streaming privilege's to do some live coding with @midnight agate?
One second sorry
back guys
!stream 588068033415741525
✅ @molten pewter can now stream until <t:1642720976:f>.
maroloccio, spewing content is both fun and interesting
for the spewer, that is
for the bespewed, it is anything but either
i laugh in an hour more than i do in a month.months when marco talks
this guy literally makes me healthier
well done
🤣
puts away knife
What is going on in this channel? 😄
a "spontaneous" outburst of support for the LGBTQ community
👍
Yup ^-^
😆
I shall add the word "bespewed" to my vocabulary 🧐
Erm, maybe later, I'm reading documentation right now 😄
alright
🤣
thank you 😄
furyo choose SHA256 for your hashing function
Please set numbers in vim ))): it huuurtsss
Use :setnumbers
It’s gonna be a life saver
Now just type :setnumbers
Really?
try it
:set rnu for relative numbers
is this problem running on Windows?
:set nu rnu (so both combined) will set relative numbers on all lines except the current one; the current one will then show the absolute number instead of the relative number
like the one Fury is presenting
'have your stream watchers to help you...too.' 🤣
im convinced marco works as a lecturer
'im muted, because you need Your silence...and Your focus.' 😆
Lmaaaooo
finally, someone who gets how funny this guy is. I thought i was crazy
🏳️🌈
im glad im not alone now
He’s naturally funny, doesn’t try to be lmao which makes it funnier
finally a normal sane person on this server
i thought i was going crazy
thinking everything this guy said i was bursting out laughing almost waking up my room mates
real loud laughs from the belly
You have setlled my doubts now @fallow musk im comfortable in myself again
I cant believe how you gusy keep it cool/dont react to marco @molten pewter
i thought i was going crazy
finally i have someone else who understands
yea
he really should do comedy
he would make a lot more money than a career in coding
I dont know how his family sit down to dinner with him and dont laugh
i would be dying every 3rd conversation
😆
everything he types i can hear in his voice, with his pauses and whispy way of talking
like hes in no rush
its so funny
is that quote from a movie?
fly the flag?
whats the significance?
im not hating, it sounds cool as hell
George carlin vibes here
This is so cool , I’ve never seen the terminal being used like this
Are u guys contributing to the code at the same time live ?
gg
can you repeat the question
I’m new to python programming x) can’t help
i dont think so
ive never done that before if we do
yea change it to bits, no idea how youre going to do that though
@molten pewter i dont think you need to understand it
i dont think marco even knows
im not underestimating
i think we should just do the hash
i have to go. tomorrow i answer your question
🤣
marco dosent want to wake up the kids
disguising it that hes not trying to distract his student 😆
ok my bad
can i type code for furyo?
to help?
Well guys it’s been nice hanging out with you! Have fun and good luck @molten pewter
Good night 
@fallow musk does it still count if you leave and rejoin the server?
To voice verify?
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
delete a line in vim? what are you trying to do?
what does it mean by encoded? encrypted?
but dont you need a key for that?
you dont
so why do you need to encode?
or what does encoding mean?
in the error you got?
ill try and find something
🤣
I was trying to replicating the python program from this website: http://ecomunsing.com/build-your-own-blockchain.
The Python program is as follows:
import hashlib, json
import random
def hashMe...
A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions.
probably😆
i think its because theyre not the same as eachother
i dont know if you can change a hash value into a integer
im not sure, but i dont think you can
what does base 10 mean furyo?
can we use something else than sum? Or change sum to a string?
so theyre the same?
🤣
i think hes off drinking wine somewhere
we're on our own
we need you to listen to the voice chat
furyo needs help, he messed up somewhere
and flipped his code
he needs help getting the bottom back to the top
I messed up the windows... they are now flipped
yes
😆
discover more about what?
yea
yea good work @molten pewter
in a excesss of helpfulness, in an abundance....🤣
🤣
'you're not talking about yourself Marco, are you?' - @molten pewter
sneaky marco
hi @signal sand
Hi
I'm just hanging around..
Why on a file path... Like file paths change right...
i dont think a full path changes
good work guys
enjoyed the stream
great explanations
fury asking good questions
marco with good slow talking
i liked the hard work part and then marco finishing it off and explaining how he would go about it
and trying to make you remember parts, and showing us a different way
I liked alot of it
it was the perfect length too
you missed it @somber heath lol
Night guys
thanks
it was vim
Thanks for being a great spectator jamc 😄
Like if you move a file, it changes, right
if youre into that kinda stuff
yea
existing
it was sha224
booplux was here for 3-5 minutes
it was like 1 hour and 30 minutes long
Yes
ive never seen /used a checksum before
always heard of it, never actually seen one coded
@somber heath what do you mean cerebral or academic?
whats cerebral?
you can hash anything @noble copper
you can hash an entire book if you want to
Not, anything, only if it is static..
it was very interesting man. It was a nice combination
2 entertaining people on the server
do you think watching @molten pewter and @midnight agate they would make us watch something boring...
true @somber heath
i guess i just enjoyed it because they were using Vim
i like vim
@midnight agate actually set the assignment for furyo to do
furyo worked for 1 hr and 15 minutes on it, marco did the closing
which @noble copper saw
It should be inspiring..
caesar ciphers vigenere ciphers? @midnight agate
No
its alot of numbers and methods
If P = NP, we could!
There are some problem that can't be solved even with infinite amount of power...
Halting problem.. for example..
Freelance job still
it is 1
lim(x -> 0) x/x = lim(x -> 0) x / lim(x -> 0) x
LHospital rule... dx/dx / dx/dx = 1 / 1 = 1
Relatively! center of the universe..!
We may never know...
We will be limited by speed of light...
Me too... I feel like we are in a simulation!
Not like that...
Just arbitary computation
It could be discrete..
I don't like both.... Both are depressing!
If we don't have free will, it is sad we are not in control
If we have free will, it is sad, because we are responsible for everything choice we ever made
If we always make those choice, are we really making those choices..!
Choice is like traversing through binary search tree, you get to choice at every step recursion, where to go..
If we always make those choice, we can only explore one branch of the tree...
I personally don't believe in god. The idea of god in religious text don't make sense.. But our mathematics have limitations on what we can prove and all... so, it should be open ended...
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
test
what you say?
oh, talkin gto someone else
Question 1. The cell below creates an array of some numbers. Set third_element to the third element of some_numbers.
some_numbers.index("-6")
some_numbers = make_array(-1, -3, -6, -10, -15)
third_element = some_numbers.index("-6")
third_element
Now, my first try was this:
some_numbers.index(-6), what i'm trying to do is find the third element and google told me that method <------------
Idk if i'm supposed to use a numpy command or what
Yeah
The issue I have is that they haven't taught us what to do, they just introduced this code and told us to use index...
I'm trying to print the third element of that array by indexing it
Yeah!
That
But what code do i use for that?
google is telling me <array> .index(<array value>)
hence me doing some_numbers**.index**(-6)
It's a jupyterlab page from my class
im cooking atm, but is there a way to bypass the waiting 30 mins to speak?
dont think so
its not that big of a deal if not bc ill probably be eating the next 20 anyway
ive been in the discord for over 2 months probably lul
and they want to prevent spam?
Mr. Buddha do you have any idea on how to solve my predicament
i be lucky to send 5 over a month

is the .index function the right one to begin with buddhist?
Yessir mister buddhist
namaste
how long has everyone been coding or using python?
1 day
i would offer advice on it, but its been a while since ive used python, i could probably answer some questions though
Question 1. The cell below creates an array of some numbers. Set third_element to the third element of some_numbers.
some_numbers = make_array(-1, -3, -6, -10, -15)
third_element = some_numbers.index("-6")
third_element
I wanna see a sitcom with most of these characters...
been learning html and css lately, branching out my coding languages
In this case I need to find what index number -6 is
afaIK
Maybe if I use numpy?
it must have some sort of indexing function?
i am lost as heck google keeps telling me different things lmao
I see
I need to find the third index value
I guess i jsut need to find -10 then
i..e. use index to have -10 show as the third_element

it's a normal array yeah
bc np.aray would make it a numpy array
my freaking friend figured it out but he's sleeping so he won't answer my text LMAO
the third element is index 2 yeah
(-6)
some_numbers[2]
was my line of code correct?
oph ty
so
u were correct
but
the grading module says its wrong
I FR#EAKING GOT IT
I GOT IT
int(2)?
nope nvm false positive
ill finish eating and see if i can help
int(some_numbers[2])
let me check
yeah that works!
got this question is so fricking s🅱️oopid
one sec my cat is crying for food
ty tho ❤️
ok im back
my cat bit my toe
I'm just doing a homework assignment lol
data science 101 course
nah, i been trying to get my certifications on codecamp
Naw, this is just a credit i took for fun so it's an intro to python
was looking to start working on projects with others
so i been looking alot more in discord and on github to start doin stuff
need some projects for my resume, and work with others, only things holding me back
Got it for my business degree
i made an HTML website a year ago for a class and it was hilarious, i wish i could share
HTML5 and CSS for me
yo, i still need about 30 messages but i could join the vc if i spam them all rn
do it bruh
lul
my foods getting cold, why im not typing much
i got my html and css certs about 10 months ago
been working with python for several years
coding in C since i was 14
im 27 now

here and there
"CaN yOu MaKe mE a FrEe WeBsItE fOr mY aPp PlEaSe?"
i would work on projects here and there, but not like professionally do it
so i would consider it coding experience, but not like i have in depth knowledge
can always fake it till u make it
i self taught it without any tutorials
basics of C++ then apply for some small indie dev studio ig?
goddamn buddhist
it's rly similar to excel coding but a lot of the code itself is either "you know it" or "you don't", with excel you have buttons u can press if you dont know what ur doing
my guy you're ready to work for activision
unity and UE5 are waiting for u
exaCTLY yeah
i was just using notepad, so python was my first code editor
5 and yeah it fries your internals
I bought an M1 mac and it outperforms my desktop tbh
i7 1100 vs the M1 and the crappy mac had 20% the render times it was crazy
show us the game
sounds cool af
dang
well keep me updated lol
where do u wanna go with it int he future?
saw a post the other day to join a project for space invaders
though i think that was a post from like 2 months ago,
and idk if it was on this discord
coulda been another server
i have anoyther question
Question 3. You'll sometimes want to find the last element of an array. Suppose an array has 142 elements. What is the index of its last element?
index_of_last_element =
there's no code?
ye it worked lol
wtfrick LMAO
i thought this was gonna be some hard querstion
-1 should work
or does it say anything about push/pop function?
push function adds stuff to end of an array
Append
is this right?
Question 4. The cell below loads an array called president_birth_years. Calling .column(...) on a table returns an array of the column specified, in this case the Birth Year column of the president_births table. The last element in that array is the most recent birth year of any deceased president. Assign that year to most_recent_birth_year.
president_birth_years = Table.read_table("president_births.csv").column('Birth Year')
most_recent_birth_year = int(president_birth_years[-1])
most_recent_birth_year
1917
The len function brought back 38 values
ah, push is for html
been doing html and css lately like i said lol
been like a year since i touched python but i still say im more experienced with python
ah, that weirdly worded question from earlier i think i know why it was being weird
if it showed as an array it wouldve messed up the auto grader for the questions
so told him to use int function to solve that problem
just hypothesising
didnt really say to use int fuction though, so that was weird
I just hit a really hard question, im gonna attempt it but i may need some help if thats ok
The auto grader only assesses whether the answer is of the correct type i.e. an integer of a certain length
so the answer could be 10 instead of 17 and it would say "Passed!"
They did it on purpose lol
idk why
bc they were just looking for it to be an integer and not an array
Important: In this homework, the grader.check() tests will no longer tell you if your answers are correct, only if your answer could be correct (of the correct type, format, etc...).
hmm i think it's because they want to hide the answers to make it harder?
so we don't cheat. We're allowed to work together or ask for outside help, but not check chegg
yeah
showing 34 from the past 30 mins
what if you sent a couple emotes lmao
🏀

totally gonna get banned
lmaO
it's not spam if it's a conversation
alright ill check now
how are you todayu mixxer?
answer the questions^^
what color is the sky
how old is obama
LETS GOO
MY BOY IS FREE
i just need to wait 2 days

someone free me
this one is pretty good we got the clutch MASTER Gaming Buddhist

UI/UX?
yessir
since u mentioned website design
wtfrick is going on here
@slender wasp I used to make people websites for $300 and when I got paid I went on fiver and paid some random person $150 to make a website for the same request and pocketed the difference

@wind raptor it's not working?
i redefined it
yeah
(max_temperatures-32)*(5/9) worked!
nopw i just need to round
np.round(2)????
or what
round(2)
hi
What are you working on @wind raptor
nice
part 1 is on the bottom btw
part 2 (with the error) is uptop
brb, need to use the bathroom
clash of clams
can I ask for help in here? im in vc
what kind of help
paste code here?
yeah so i can get help
you can put ur code in between three ticks(`)
like this ```c++
int main(){
return 0;
}
and ask about it
('''example''')
```example```
^
oh okay thank
MB = pygame.transform.scale(Menu_Background, (Width, Height))```
keeps returning this
i dont know anything about pythong tbh, sorry
i am really new to python, i know some c++
let me try that brb
still the same
thats what I see
when i run the program
i love you
thank you lol
i belive its like pygame.display.update() or something like that
yeah
is it working now?
let me check rq
import pygame
import os
pygame.font.init()
pygame.mixer.init()
## COLORS
WHITE = (255, 255, 255)
BLACK = (0, 0, 0)
RED = (255, 0, 0)
GREEN = (0, 255, 0)
BLUE = (0, 0, 255)
YELLOW = (255, 255, 0)
PURPLE = (255, 0, 255)
FPS = 60
Width, Height = 1920, 1080
WIN = pygame.display.set_mode((Width, Height))
pygame.display.set_caption("No Name Yet!")
Menu_Background = pygame.image.load(os.path.join("Assets", "Midnight Background", "The Midnight Background.png"))
MB = pygame.transform.scale(Menu_Background, (1920, 1080))
def draw_window():
WIN.blit(Menu_Background, (0, 0))
pygame.display.update()
def main():
clock = pygame.time.Clock()
run = True
while run:
clock.tick(FPS)
for event in pygame.event.get():
if event.type == pygame.QUIT:
run = False
pygame.quit()
draw_window()
if __name__ == "__main__":
main()
still didn't work
im not sure what it is
why its not working that is
are u getting the same result
yeah
can you show me properties of the background png file you are trying to put
yeah im trying to scale to 1920x1080
i mean i guess it could work if I were to full screen and stretch nativly right?
Legend league is when you hit 5k trophies, it’s a tournament kind of thing that limits you to 8 attack a day and 8 defenses
tho im not sure how to do that
Every month it resets
i am not sure about it.. but i am looking
okay thanks man
For whoever said that
damn thats sick dude
that is awesome i wish i had the skills to do stuff like that
id say if they can hold objects than they would have mass
@severe kindle
so that way i could transform
and im not sure who the person in vc is, but I'm starting a 2D side scroller project
I only know of pygame is there a better lib to use?
you are not even using the returned value
maybe try replacing Menu_background with MB in draw_window
@severe kindle is it working
there you go that worked im pretty tired lol can't belive I over looked that thanks man
😯 its fine, its common to make simple mistakes when tired
I am very confuse with this
is it a 3d ? can we look at them from the other side
the variable "world population" isn't defined as a variable
isn't it here tho?
its not slightly comedic to wear sunglasses at night
@worldly coral it looks like you reference world_population.csv but im my IDE when its highlighted red like that it means it has had a problem loading file.
shiiid
@grand terrace gl man
so what should i do?
but in that SS i don't see where you actually defined "world_population"
is "world_population" a file in your project folder?
i guess so?
this is a homework assignment thingy
I haave a table world_population and i need to find the largest annual change in population between any two consecutive years.
how do i do that
oof should have led with that man, not suppose to give you the direct answer according to Server TOS, but definatly can help you arrive to the write answer
right*
nah dw it's not graded, it's a learning module where we're supposed to figure it out based on the info given
I've tried np.diff(world) but it gives an error
the issue is that I don't know which arithmetic and which table to reference
np.diff(max(world)?
how many lines is the current file?
send it to me in DM
ok
?!
the eating one?
i am sure you ppl are very professional
is @wind raptor making a game?
No
oh, but i saw something like league idk
professional
anyone here like to work on python turtle?
@wise wraith he making legend league
What does that even mean
sounds like video game stuff
I guess
lol
bruh
im back did yall miss me
i guess
not?
heh
@wind raptor u game? it looks like you very professional with python
nah @pliant pulsar helped me, he got it working
thanks tho man
i was using the wrong variable
that was your coding?!
yeah
no, and @slender wasp I had a variable for the inital image and then a had a varible for the image after it was scaled I was renering the first one
I'm going to kermit atrocities of unspeakable scale at this point 
im dying XD
me dying of loss of social credit
If I lived in china I'd be bottom class with -1000 social score
Xi Jinping army for me
i am at taiwan
it was I was calling the wrong one though XD, im pretty tired and on top of that im at an intermidiate level in python
someone help i have the IQ of a hong kongian [THIS POST WAS SPONSORED BY THE DEMOCRATIC PEOPLES REPUBLIC OF CHINA]
-99999999999 social credit
your missing a "r" somewhere lol
is this funny?
what are you working on Buddist
wait what?
call me egg
oeuf means egg in french
Yeah im just dumb, idk what im doing
it was a srs question
._.
i believe it "array" not "aray"
hmmmm
Question 3. If you expected Old Faithful to erupt every hour, you would expect to wait a total of 60 * k minutes to see k eruptions. Set difference_from_expected to an array with 272 elements, where the element at index i is the absolute difference between the expected and actual total amount of waiting time to see the first i+1 eruptions.
I tried this
minecraft faithful texture pack
i have no idea on that one
np.array(60*(k*272)*abs(i+k)
what about it @next herald
LOL
total pee pee brain moment
pvpppp
me too @slender wasp r, got work in 7 hrs or so, gonna crank out some work on my game


