#voice-chat-text-0
1 messages ยท Page 989 of 1
ohh, yes, this I forgot, I hadn't used it in a long time
I can't explain it very well right now hahaha
thnx, thanks for the reminding
no i understand
thnx
@midnight agate are you from italian?
def fn(str_chars):
string_vals = str_chars
value = string_vals[::2].upper()
return value
fn_obj = fn("abcdefghi")
print(fn_obj)
@tidal shard :x: Your eval job has completed with return code 1.
001 | File "<string>", line 1
002 | !e
003 | ^
004 | SyntaxError: invalid syntax
!e
def fn(str_chars):
string_vals = str_chars
value = string_vals[::2].upper()
return value
fn_obj = fn("abcdefghi")
print(fn_obj)```
@tidal shard :white_check_mark: Your eval job has completed with return code 0.
ACEGI
def fn(str_chars):
string_vals = str_chars
value = string_vals[::2].upper()
skipped_chars = str_chars[1::2]
return "\nString Characters: %s "\
"\nSkipped Characters: %s" % (value, skipped_chars)
fn_obj = fn("abcdefghij")
print(fn_obj)
@torn zephyr @tidal shard @midnight agate
Here is my solution...
@midnight agate hi , i am beginner in python , do you have some command ideas to get better in python ?
!e
def fn(str_chars):
string_vals = str_chars
value = string_vals[::2].upper()
skipped_chars = str_chars[1::2]
return "\nString Characters: %s "\
"\nSkipped Characters: %s" % (value, skipped_chars)
fn_obj = fn("abcdefghij")
print(fn_obj)
@austere linden :white_check_mark: Your eval job has completed with return code 0.
001 |
002 | String Characters: ACEGI
003 | Skipped Characters: bdfhj
!e
new_string = 'hello'
new_list = list(new_string)
newer_list = []
for i in range(len(new_list)):
if i % 2 == 0:
newer_list.append(new_list[i].upper())
else:
newer_list.append(new_list[i])
print(''.join(newer_list))
@tidal shard :white_check_mark: Your eval job has completed with return code 0.
HeLlO
!e
new_list = list('hello')
print(''.join([new_list[i].upper() if i%2 == 0 else new_list[i] for i in range(len(new_list))]))
@tidal shard :white_check_mark: Your eval job has completed with return code 0.
HeLlO
But he wanted a function...
oh yeah haha
@tidal shard hii bro
hello!
very cool
!eval [code]
Can also use: e
*Run Python code and get the results.
This command supports multiple lines of code, including code wrapped inside a formatted code block. Code can be re-evaluated by editing the original message within 10 seconds and clicking the reaction that subsequently appears.
We've done our best to make this sandboxed, but do let us know if you manage to find an issue with it!*
@remote jacinth
hola
i still prefer pushups more than pullups
2.2 lbs = 1 kg
do the math
around 5 kgs
hey
Yeah we named it Slagsmรฅl
hey coffee
yes
college
yes
cyber security
yes and no
the deeper ive got into it
theirs alot of report writing
i like building things, so software development
๐คฃ
yea, its 50% analysis and 50% report writing
i didnt plan on it being like that
yea man๐ฏ
@lyric pawn dude, don't dox me
@lyric pawn i deleted your message
@rugged tundra i thought you were going to say snow white๐คฃ
bye guys, i gotta leave and get some work done ๐ โค๏ธ
How many people are in the voice chat currently? I'm seeing 8
Just want to make sure I'm synced properly
Yeah, 8 is correct
Yes @rugged root ?
Oh I think I said lame
Ohh
sry for open mic
All good
I heard my name in a strict tone haha
Ah, not this time
How can I verify my voice, sir @rugged root ?
Check out the #voice-verification channel. That'll tell you what you need to know about the voice gate
Okay Thank you sir
!voice
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
But it's having been here for at least 3 days and have 50 messages across three 10 minute blocks
So just hang out, chat with us here, etc.
Okay
Typically if we're in voice chat, we'll be watching this text channel as well, so no one gets left out of the conversations
How will I know that I have 50 messages across three 10 minute blocks?
The 10 minute blocks thing just means having talked for at least half an hour. It's to keep people from just spamming their way to the 50 message count
But with regards to your message count, if you use the search bar in the top right hand corner, you can do from:[your_username_here] and it'll show you your total message count in the server
Note that messages in the #bot-commands channel do not count
So I have to manually count whether I have sent fifty messages or not.
@rugged root do u know how to code a flowchart.
Not sure what you mean
@rustic mantle Yeah, you meet the criteria.
Okay
913964591556481054
Should just have to do the !voiceverify command in #voice-verification
Okay
Finally I was able to do my voice verification, Thank you so much, sir @rugged root.
No problem!
You'd just use the symbols around those sections
oh
what about it?
why
Oh lol.
so do i slap a circle in my code?
oval ^*
wait so do i draw it?
but thats not code...
what.
Yea
that thoing
but how ;-;
thats my question
lmao
if piece_ending == "y":
was_end = input("Was that the end? (y/n)")
if was_end == "y":
print("Go ahead")
elif was_end == "n":
print("Probably not")```
Like that?
oh
huh
wha
ok ill try ily
yea but its not auto for discord
yea i know that
lol
ty
wait
scope what
like fortnite?
oh
okok
if piece_ending == "y":
was_end = input("Was that the end? (y/n)")
if was_end == "y":
print("Go ahead")
elif was_end == "n":
print("Probably not")
elif piece_ending == "n":
about_to_bow = input("Is performer about to bow (y/n): ")
if about_to_bow == "y":
print("go ahead")
elif about_to_bow == "n":
everybody = input("Is everybody else applauding (y/n): ")
if everybody == "y":
print("Go Ahead")
elif everybody == "n":
print("Dont start it.")```
This
my hands hurt
what does index function do?
!e
if piece_ending == "y":
was_end = input("Was that the end? (y/n)")
if was_end == "y":
print("Go ahead")
elif was_end == "n":
print("Probably not")
elif piece_ending == "n":
about_to_bow = input("Is performer about to bow (y/n): ")
if about_to_bow == "y":
print("go ahead")
elif about_to_bow == "n":
everybody = input("Is everybody else applauding (y/n): ")
if everybody == "y":
print("Go Ahead")
elif everybody == "n":
print("Dont start it.")```
@shut hill :x: Your eval job has completed with return code 1.
001 | Do you know how the piece ends? (y/n): Traceback (most recent call last):
002 | File "<string>", line 1, in <module>
003 | EOFError: EOF when reading a line
oop
;-;
what test case.
yes
show me
๐
what that test case do
but for in general
what about, .index function
what it do
do u have an example
is it like
!e
spam = ("ham", "pork", "ham")
print(spam.index("ham"))
@rugged root :white_check_mark: Your eval job has completed with return code 0.
0
Yep. But only the first one it encounters
So because it found that "ham" was in the first spot, it returns the index 0
!e
print(spam.index("pork"))```
@shut hill :white_check_mark: Your eval job has completed with return code 0.
1
ba,
can u help me with the chess one
I dont understand it
its number 6
what
lol.
any monitor recommendations
lol
I want to learn API with Python. I'm a beginner. I did web scraping with Python. Now I just want to work with API. What would be your best suggestion for me?
Could you suggest one?
okay
I think requests is a great place to start when working with api's
!e
import random
ingredients = ("ham", "pork", "ham", "egg", "tuna", "pepperoni", "sushi", "apples", "cake", "dog food")
print(f'Lets make a Pizza, your topping will be auto generated and create a unique eating experience')
print(f'Your Pizza Toppings Are\n{random.sample(ingredients,3)}')
@pallid hazel :white_check_mark: Your eval job has completed with return code 0.
001 | Lets make a Pizza, your topping will be auto generated and create a unique eating experience
002 | Your Pizza Toppings Are
003 | ['egg', 'pepperoni', 'cake']
In this video, I teach you the basics of APIs & how to work with them in Python.
Get access to full VideoLab courses at:
https://www.bit.ly/vl-udemy
https://www.skl.sh/2XcqMYV
Sign up to the VideoLab Digest to get exclusive content & deals:
http://bit.ly/vl-digest
The VideoLab Community gives you a chance to collaborate with other develo...
Try this for now.
Thank you.
Thank you.
letter = position[0]
number = int(position[1])
col = "abcdefgh"
if col.index(letter) % 2 == 0:
if number % 2 == 1:
print("black")
else:
print("white")
else:
if number % 2 == 1:
print("white")
else:
print("black")```
@rugged root
Test it
ok
Only way to know
LETTER = "abcdefgh"
square = input("What square do you want to know the color of: ")
added = LETTER.index(square[0]) + (int(square[1])) - 1
if added % 2:
print("White")
else:
print("Black")
standardized tests and compare your percentiles for verbal and quant
@quasi condor why do you think vue is going to overtake react? would it be worth learning vue over react?
ughhhhhhhhhhhhhhhhhhhhh
this is currently xD
rush rush rush rush
I want one 3 years into the future ๐
Jk, trending would be more relevant, but I just wanna know why Charlie said it, I am looking for insight
I do not think vue will overtake react
im in so rush rn and so much excited that i cant even code the logic fml
I'm just trying to find out why
anyone free join in and help me lmao
i cant code the logic of it
smfh
cuz im excited
working?
wait
yay
what did i miss
what was the question?
should keyboarding be taught in schools
Touch type = 
Anything else = 
i think we did it for like, 1 session a week
in primary school
Touch typing (also called blind typing, or touch keyboarding) is a style of typing. Although the phrase refers to typing without using the sense of sight to find the keysโspecifically, a touch typist will know their location on the keyboard through muscle memoryโthe term is often used to refer to a specific form of touch typing that involves pla...
Home row typing = ๐ด
Anything else = ๐ข
WASD is my resting position ๐
when have you ever typed high wpm?
other than in a test
every single essay I wrote for university
fast brain
more bad essays
if you're ever bored for a few weeks, I'd definitely recommend working through typingclub or something like it
the one Mina linked looks pretty good
I used typingclub - it appealed because it gamified things quite nicely
do you "properly" use right shift when doing left hand capital letters?
grow up
add it to my list of learning more emacs stuff and vim keybinds
grow down
i also don't "properly" type the area of letters around zxc
right shift is the only thing I deviate on I think
and possibly some of the numbers
make me
I never use right shift

I use caps lock every time
(I did whilst learning though)
no
no
Wirde
edriW
must be a English - American translation thing
want to spell check my readme? https://github.com/KJ002/Boids
thank you, make pr now /s
looks pretty good spelling-wise
is chose the past tense of choose
yes?
I had a hard time with that one
choosened
Each object (I shall be referring to them singularly as a 'boid') has a set of rules (cohesion, separation and alignment) which can not been seen individually however when in a group of other boids a flock beings to appear, this is a demonstration of emergence.
Each object (hereby called a 'boid') has a set of rules (cohesion, separation and alignment) which can not been seen individually. However when in a group of other boids a flock beings to appear; this is a demonstration of emergence.
^ this paragraph needs some work maybe
was going to suggest smth like that smh
i think i also write "cannot" instead of "can not"
I don't know how to use semi colons ๐
it's "instead"
you stick them in between 2 sentences that sound like they flow together
kannoot
San Francisco-Oakland-Hayward, CA
@ivory stump remember the issues I was having with modulo, terns out % is remainder instead of modulo in C
:/
ended up creating a MODULO macro #define MODULO(a, n) fmod((a), (n)) + (((a) < 0) * (n))
lol
You are not allowed to use that command.
check out #voice-verification
@rugged root never manage to get into your van lmao
taking you a while to get in there
Does anyone read this chat ?
yes
I thought you were a bot lol

The mainframe offers the reliability and performance needed to ensure Visa's services run uninterrupted, says IBM.
Visa Mainframe Analyst
Bachelor degree in Computer Science or related field and 5 years of Software Development Experience or a Masters with 3 years of Software Development Experience or a PhD with 2 years of experience. Proficiency in COBOL, CICS, DB2, JCL
Experience on application development on Windows and Mainframe.
Relational Database Management System like MySQL, MSSQL, DB2, etc.
So you can work at Visa and Visa
absolutely ridiculous
visa, visa, mastercard, and IBM
pretty much the whole world
com halp if anyone free
@flat sentinel i read u as Kernel
i literally had a panic
ig thats what u call kernel panic
?
I might be a linux kernel
or a windows kernel with linux userland
feels more superior
but then u get bsod
feels bad man
No I will still with the linux
down in @hasty scarab if u are linux kernel
oh nice
i forgot how to do that
basicall code/help
Be prepared with the most accurate 10-day forecast for Springfield, MO with highs, lows, chance of precipitation from The Weather Channel and Weather.com
ttfn
A bank rescue package totalling some ยฃ500 billion (approximately $850 billion) was announced by the British government on 8 October 2008, as a response to the global financial crisis. After two unsteady weeks at the end of September, the first week of October had seen major falls in the stock market and severe worries about the stability of Brit...
๐
ah
hhaha
srry
can I make you a question even if is not about python (from html an image border )?
bo bo bo bo hahaha
https://www.youtube.com/watch?v=If61baWF4GE&t=902s
@quasi condor @amber raptor ... there are oil reserves in Ukraine.. That could a possible incentive...
Get a year of both Nebula and Curiosity Stream for just 14.79 here: https://curiositystream.com/?coupon=reallifelore
Watch the full companion video covering Russia's Invasion of Georgia here: https://bit.ly/3JUslSL
Please Subscribe: http://bit.ly/2dB7VTOโโโ
Select video clips courtesy of Getty Images
Select video clips courtesy of the AP Arc...
well i have to still doing my project see u guys
https://www.youtube.com/watch?v=JrMiSQAGOS4&t=746s
@amber raptor @quasi condor
UnCommon Core: The Causes and Consequences of the Ukraine Crisis
John J. Mearsheimer, the R. Wendell Harrison Distinguished Service Professor in Political Science and Co-director of the Program on International Security Policy at the University of Chicago, assesses the causes of the present Ukraine crisis, the best way to end it, and its conseq...
@somber heath
I disagree with his take. I donโt Russia cares about NATO, itโs excuse like Iraqi WMD
Countries care about this kinda stuff.... If they allow it... It seems weak..
And seizing Crimea and Donetsk because they could.
If Putin allows it... Putin will look weak to people...
yes
Thank you
<@&267628507062992896> can you give us permission to share the screen?
Or <@&831776746206265384> ?
@jolly goblet ?
no, please don't ping anyone for this permission
it's only granted by mods already present in vc if they're willing
Can you join us then?
no, only if mods are already present in vc and willing
become this guy
Touch grass for privacy.
My website: https://lukesmith.xyz
Classical books reprinted by me: https://lindypress.net
Get all my videos off YouTube: https://videos.lukesmith.xyz
or Odysee: https://odysee.com/$/invite/@Luke:7
Please donate: https://donate.lukesmith.xyz
BTC: bc1qw5w6pxsk3aj324tmqrhhpmpfprxcfxe6qhetuv
XMR: 48jewbtxe4jU3MnzJFjTs3gVFW...
@here
Hey all!
hiya chris
hey
Hey!!!!
lmao
.
call_me_man
yo can we be civil
Let's be kind please
im just trying to learn python lol
wtf guys
ahah
religion is all about the power of the sun
logic and reason was passed by some other beings
that were more evolved
don't fight guys
make peace
so cute
you can't ask a question and then not listen to the answer
i'm ready to shut down this conversation at any moment though, forewarning
????
@wary meadowplease read our #code-of-conduct i think that topic is too sensitive
who attacked fox?
i didn't
tagged*
@grizzled zenith
A paleontologist collects as many fossils as possible from a rock or sediment. Once the fossils are prepared by scraping and cleaning, they are sorted by geometry. Fossils with very similar geometry are assumed to belong to a single species. Fossils with somewhat different geometry are assumed to belong to a different species. Usually the fossil...
Visit https://brilliant.org/Veritasium/ to get started learning STEM for free, and the first 200 people will get 20% off their annual premium subscription. Digital computers have served us well for decades, but the rise of artificial intelligence demands a totally new kind of computer: analog.
Thanks to Mike Henry and everyone at Mythic for the...
he talks about how AI was created back in the 70's, pretty interesting!!
yeah they conceptualized the perceptron which is one of the fundamental units of modern neural network architectures but they failed to recognize (or have the hardware to be able to run) multi-layer perceptrons which are what demonstrated the true ability of the idea
yeah mate, also really interesting the application of matrix algebra on the field of image recognition
as soon as i finish my current project, im gonna learn AI i think
beautyful concept
it's the default console.log behavior. just iterate over the array and log it
@tidal shard , if you like to eat I would advise you to go 1 week to the Azores Islands (specially to the Furnas area) to eat this:
and then go to Piรณdรฃo, OPorto and Lisbon, on the other week
const crashHash = "bad1dfbf65112a3598540df06bbfb6fccc2456596d52b57fb1f8333348d306ba";
const salt = "00000000000000000006b3a5a60849712b5f42f5fe3d2b475adea1d7bee9e36f";
function saltHash(hash) {
return crypto.createHmac("sha256", hash).update(salt).digest("hex");
}
function generateHash(seed) {
return crypto.createHash("sha256").update(seed).digest("hex");
}
function divisible(hash, mod) {
// We will read in 4 hex at a time, but the first chunk might be a bit smaller
// So ABCDEFGHIJ should be chunked like AB CDEF GHIJ
var val = 0;
var o = hash.length % 4;
for (var i = o > 0 ? o - 4 : 0; i < hash.length; i += 4) {
val = ((val << 16) + parseInt(hash.substring(i, i + 4), 16)) % mod;
}
return val === 0;
}
function crashPointFromHash(serverSeed) {
const hash = crypto
.createHmac("sha256", serverSeed)
.update(salt)
.digest("hex");
const hs = parseInt(100 / 5);
if (divisible(hash, hs)) {
return 1;
}
const h = parseInt(hash.slice(0, 52 / 4), 16);
const e = Math.pow(2, 52);
return Math.floor((100 * e - h) / (e - h)) / 100.0;
}
function getPreviousGames() {
const previousGames = [];
let gameHash = generateHash(crashHash);
for (var i = 0; i < 1000; i++) {
const gameResult = crashPointFromHash(gameHash);
previousGames.push({ gameHash, gameResult });
gameHash = generateHash(gameHash);
}
return previousGames;
}
function verifyCrash() {
const gameResult = crashPointFromHash(crashHash);
const previousHundredGames = getPreviousGames();
return { gameResult, previousHundredGames };
}
console.log(verifyCrash());
or just stay 3 days in Azores
verifyCrash().gameResult.forEach(console.log)
verifyCrash().previousHundredGames.forEach(game => console.log(game.gameResult))
!voice
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
import threading
# A thread-safe implementation of Singleton pattern
# To be used as mixin or base class
class Singleton(object):
# use special name mangling for private class-level lock
# we don't want a global lock for all the classes that use Singleton
# each class should have its own lock to reduce locking contention
__lock = threading.Lock()
# private class instance may not necessarily need name-mangling
__instance = None
@classmethod
def instance(cls):
if not cls.__instance:
with cls.__lock:
if not cls.__instance:
cls.__instance = cls()
return cls.__instance
@gusty birch https://datagistips.hypotheses.org/530
On Georezo, a French forum, someone asked how to retrieve the streets closest to pipelines. The QGIS expression So, letโs suppose we have one data for pipelines (source) and one for streets (target), here is a QGIS expression that retrieves the street data object index closest to each pipeline. with_variable( 'mean_distances', aggregate( 'street...
Can someone help in Ant colony Algorithm?
Position of a Point with Respect to a Circle
Let us identify the position of a point with the help of a radius.
The part of the plane or the set of points in a plane that lies inside a circle is called the interior of the circle. The part of the plane or the set of points in a plane that lies outside a circle is called the exterior of the circle. The set of points that lies on the circumference of the circle is called on the boundary of the circle.
Consider a circle in a plane, as shown in the figure. Consider any point P on the circle. If the distance from the centre O to the point P is OP, then
(i) OP= radius (If the point P lies on the circle)
(ii) OP< radius (If the point P point lies inside the circle)
(iii) OP> radius (If the point P lies outside the circle)
Therefore, a circle divides the plane into three parts, i.e., the interior of the circle, the exterior of the circle, and the circleโs boundary.
A Discrete Mathematics professor has a class of students. Frustrated with their lack of discipline, the professor decides to cancel class if fewer than some
!voice
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
I don't smoke often at all but when I do I can't stop laughing, for about 2 hours then I fall asleep.
More like edibles for me
Not in Cali lol
No I understand you Andrew when I smoke I turn completely silent
Try edibles
yes very very little
A buddy of mine has a pure THC oil company and he gave me a box. I put a small drop on my tongue and 2 hours later Im having the laughs of my life
I've has shrooms once in my life, it was a micro dose and the sky looks glittery and pretty
had*
share ur profile guys i wanna see how professionals look 
on linkedin
๐ฅฒ sed
umm here is a question , do certificates matter on linkedin ?
not at all
Bye
You gotta type !voice in the #voice verification channel
#sigh.....
def angryProfessor(k, a):
return "YES" if len([e for e in a if e<=0])<k else "NO"
50 non deleted messages is a lot
am i missing something? everyone just chilling here, or watching/doing something that isnt visible to me
hi
true dat
do last night inquisition ended?
if (a[i] < 0) {
min_class++;
}
}
if (min_class >= k) {
cout << "no" << endl;
}
else {
cout << "yes" << endl;
}
}```
If aliens did exist, how would that affect Miss universe?
wait a sec, blender has a python api?
nice
i have a discord bot idea for somone
a bot that changes media.discord.net to cdn.discord.com in peoples links they post.
you know, so they play in discord
"Uwu."
"...You're hired."
are we just posting pictures of beaches now?
If pertinent.
and also my blender crashed after i've been working on it for one hour and i forgot to save
i'm too scared to cancel the process
"Healthy eating is a danger hazard."
And now I keep reading it as "danger lizard"
we did it boys, moderator commands are no more!
it's just, discord wants everyone to migrate to slash commands
"Why is the toilet bowl glowing?"
"Well, you know that rave last night?"
"...ah."
Glowstick shots
Important tip: Do not consume glowsticks. Danger danger.
hydrogen peroxide, mmmmm
delicious
when was this added?
i haven't noticed it till now
Alternatively titled, "Do not handle."
welp, back to devtools
mhm, my blender is still lagging
Too many things open? Too many assets being worked on?
python
oh, stop lagging
idk what was going on i just pressed esc
back to drawing shit animations
Oh, do you guys want to see an absurdly fat robin that my wife saw yesterday?
yes
woah
brrrrrrrr
that isn't a robin, that's a spray painted turkey stuck on a fence
big daddy robin
Wait a sec, i can't listen to this call, my teams meeting, and my playlist all at the same time
Teams meeting is more important
alr, i gotta leave this call then
I know I should be looking at this longer term, like maybe in a year, but I reeeealllllly feel like I'm getting fucked by my mutual fund
There's an Australian version of blockchain.
Blokechain.
Offer also valid in the UK.
I can't see everyone on the VC
This is not the first time on this VC
I'm pretty sure there are more people on VC atm than what I'm able to see
Oh, weird that I see this happen only on this channel
Yup :,
Ohh, thought I was just delusional
Worked
Back in a bit. Have to get some computers connected.
@wind raptor I don't have permission to speak
!voice
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
nice
how's going ?
good
you can call me ali
maybe just A
okkeey
yes it's like our names in turkey related to Arabic
yeah
oh btw
i have a small game project in turtle
but having some problems
its like a trash coming from sky and you have to pick it with a garbage bin
turtle lists
i need to make a list for trash but idk how to remove one of the turtles
like shut it off
its better when its in the list
so i dont have to write 20 turtle
yes
do you know how to do it>
?
no control it
yea kinda
idk when there is a loop the turtle shutdown imidiatly
You like web application project?
its crash not shutdown
do you mean web devolpment?
yea
it has
turtle.mainloop()
nice
why not?
thats cool
Kon'ichiva
what is it about?
Hi 
I will add sign in and sign up. You can create your word list if you want add a word
Hi
hi there
finally finished french, we're talking abt health now tho
where did vincent go?
guess he left
Anyone here did CS50 from havard online ? Im doing it and it's so interesting ๐ That's where i got to know about python
mayo (โฏยฐโกยฐ๏ผโฏ๏ธต โปโโป
I'm not allowed to say "dagggg nabit" (old man voice) when i stub my toe because mom says so
namecheap ?
does not w3school host for free?
does it?
i think so
could i ask about golang in the python server lol
Create a Free Website with W3Schools.com. Use W3Schools Spaces to create your own professional website. Choose a free template, or start from scratch, and add the features you need.
not too shabby for a free website host
considering it's a small project
if ur goal is to create a single website github gives u that , and the url is very short not like blah blah blah . w3schools . io
Hey @shell wharf!
It looks like you tried to attach file type(s) that we do not allow (.rar). We currently allow the following file types: .gif, .jpg, .jpeg, .mov, .mp4, .mpg, .png, .mp3, .wav, .ogg, .webm, .webp, .flac, .m4a, .csv, .json.
Feel free to ask in #community-meta if you think this is a mistake.
hey @wind raptor As someone who uses python and golang, what project requirements do we choose golang for?
Websites for you and your projects, hosted directly from your GitHub repository. Just edit, push, and your changes are live.
i remember checking this once before, forget when tho
lemme just check up on @dense ibex in #756327105389920306
cya
jake sends his regards
well my schedule's screwed
I thought today was tuesday
now i gotta go change my actitivities
Bye Byii
hello
@keen sky can you repeat?
I know just how to print in the java
lmao
I used java before 2.5 years ago to learn OOP
My relationship with java like that
that's my current relationship with java
I hate OOP
I wanna go back to scripting languages 
u can do the same in google meet ๐
But then you are using Google Meet
Can someone help me
Like idk what to do
Or how to start it
I started with an input now idk what i do.
๐คฃ
lol
!voice @whole bear
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
IntelliSense ?
Umm that's how ai works it remember things and slowly learns from it
it's on a very early stage
lmao
hey guys
hi @wind raptor
pretty good so far
im onboarding at a new job so
its like
wtf to do
i hate this part of the job
where you dont have any concrete accomplishments yet
@wind raptor idk if you see chat here
yeah
and figure out projects
but its not at all a concrete thing
just ~drifting~
no
we did talka bout that yesterday
but no im not
i was saying yesterday that even though contractors don't get benefits this can be worth it at higher salaries because you can have better tax situation
showing up is 80% of the job lol
yeah its fine i wasnt clear
im on salary
ill be on voice in a min
@rugged tundra everyones seen forest gump
sometimes i feel like you think people have been living under a rock
@plain rose is john cenas more savage older brother
@rugged tundra coffee seems like the type of person, if he didnt have work commitments, would be up all day/all night, just researching/learning in a state of flow, forgetting to eat alot of times
LocalUnboundError - name "wild" is not defined
Thurgood Marshall
weightest
yes i'm a weightest why do you ask?
is gymnastics considered a sport?
mb
if anyone has watched the show
lol
more like making good predictions and attributing mistakes to the correct past decisions is adaptive
1 assignment done, 2 to go
(still thinking about a conversation i had 4 years ago) yeah I'm up to date and living in the present
what are the mobile data prices per month for you guys and which country are you in?
Here in canada, it's around $60 CAD month for 5 gb of mobile data
30$ a month
for how much
no its 20$ for 55gb
dude
that is
such a good
deal
the prices here are higher than that tesla floating to mars
sorry guys i had to go into a call with @shut hill to help him with his coding homework ๐คฃ
what songs do y'all listen to while working/completing hw?
-_-
that code should run now
when you fix your indentation, good luck tomorrow man
@rugged tundra : Everyone's story is unique and no one is going to sort it for you
My story:
@rugged tundra how can we use this method to be more productive
whats your point man?
@rugged tundra this sounds like meditation?
or some awareness shit lmao
can you put this on youtube man?
can you record yourself doing this?
idk this is starting to seem more and more like a cult initiation
can you go back to reading your history story you wrote
that shit was hilarious๐
i didn't write it
what do you mean?
that was my homework
๐คฃ i thought that was your story you created, that was why i was laughing so hard. I thought you said you wrote this for history class
if you think my homework is funny my guy, go outside, meet other homosapiens and touch some grass
why were you randomly reading it?
i thought you were reading it to people for thoughts?
because no one stopped me
@send_coffees_speech
def our_lives(ego):
ego.end()```
!pastebin
Pasting large amounts of code
If your code is too long to fit in a codeblock in discord, you can paste your code here:
https://paste.pythondiscord.com/
After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.
but i didnt get what you meant by your speech
hey stepbro
๐
anyone here know french?
yep
C'est le Mercredi aujour'dui, me mecs
oui
alr thanks for your consent im about to dm you my french homework
no need to provide your signature, I already have all your details
;)
wait what
btw its aujourd'hui
not the worst typo i've made
at times, i've enter absolutely nothing AND not submitted my assignment, that was a big typo
quite a big typo
react to this message with ๐ for a special surprise
you're going to get it anyway
tanks @rugged tundra
@lyric pawn why don't you speak
send me ur assignment
(Humor has officially left the chat)
it's quite a while since then
๐คฃ
Hi KJ
well why don't you
jmac was voiced verified at some point...
i will in 1 to 2 months though
why so long?
How did he unverified himself?
wait, how do you know i was verified?
you don't have a minute to go and type !verify in the verification channel?
i dont ever remember typing that command in?
can you verify yourself with other methods?
its not so much that
because Maro and I saw that you had been Verified, don't you remember us talking about it?
its more about distractions
I have something im working on right now
and i easily get off course
no he said i wasnt muted
from my memory
which you of course don't get by text chatting
well i have a more guaranteed
like i can control exactly the time im wasting
but when i start talking, i can get alot more distracted
Ill be on soon verboof. Be patient
you better be here by then, i dont want you to miss out
1-2 months isnt that long really man
@rugged tundra ๐คฃ
@rugged tundra a bribe?
Under the table
of course
it's a g e s
its not that long, trust me man
itll role around quicker than you expect
Ilha da Queimada Grande, also known as Snake Island, is an island off the coast of Brazil in the Atlantic Ocean. It is administered as part of the municipality of Itanhaรฉm in the State of Sรฃo Paulo. The island is small in size, only 43 hectares (106 acres), and has a temperate climate. The island's terrain varies considerably, ranging from bare ...
@rugged tundra we could drop @cunning lake off at snake island
๐คฃ
all inclusive
๐คฃ
youll like it there, i promise
@cunning lake would i lie to you?
๐
Bye everyone im going to go watch a movie โค๏ธ ๐
i dont know yet, we will find out
c ya bro
finally finished my art assignment
french*
(still have art)
hey no one is going to comment on how i sound like 13?
why do you think ?
because i'm 13?
so what 
:never_gonna_give_you_up_never_gonna_let_you_down:
well that fialed
failed*
@rose chasm If you're wondering why you can't talk, check out the #voice-verification channel. That'll tell you what you need to know
Only reason I mention it is because you were hopping in and out of call
ok thank you
!paste
Pasting large amounts of code
If your code is too long to fit in a codeblock in discord, you can paste your code here:
https://paste.pythondiscord.com/
After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.
Hey @keen sky!
It looks like you tried to attach file type(s) that we do not allow (.pdf). We currently allow the following file types: .gif, .jpg, .jpeg, .mov, .mp4, .mpg, .png, .mp3, .wav, .ogg, .webm, .webp, .flac, .m4a, .csv, .json.
Feel free to ask in #community-meta if you think this is a mistake.
Instructions:
- Review the requirements given below and complete the required work. Please compress all files
into a zip file and submit it through Canvas.
Objectives (100 points) - The goals of this lab are to review some important OOP concepts
o Inheritance
o Polymorphism
o Abstract classes
Part 1: Inheritance (40 + 10 pts)
- Design the class defined below using the design principles taught in class, it's up to you how you
design the class as long as you are producing the required output. You should use getter and setter
methods to assign values in the class. (40 pts)
Create a Vehicle class that is the base class, this class should have:
โข String make
โข String color
โข int year
โข String model
โข Contains a parameterized constructor with parameters make color, year, and model
โข Public method printDetails(): this method prints the make, color, year and model.
Create another class called Car that inherits from base class Vehicle, this Car class should have the
fields:
โข String bodyStyle
โข int topSpeed
โข int currSpeed
โข Contains parameterized constructor with parameters make, color, year, model, bodyStyle,
topSpeed and currSpeed
Note: You have to call parent class constructor inside this car constructor to set values of
make, color, model and year. Use of super() keyword would be wise here.
โข Public method accelerate(): this method returns int as (currSpeed+topSpeed)
โข Public method carDetails(): this method prints the details of the car that will include that will
be inherited from printDetails method of base class and also include bodyStyle and
accelerate value.
(carDetails method should include the following information: make, model, year, color,
bodyStyle and result returned from accelerate method implemented in Car class)
Create a main method that will be used to print the Car Details by using carDetails() method by
creating parameterized constructor of Car Class.
!voiceverify
!voice
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
void* is the best form of polymorphism
Since i thought today was Monday was Tuesday I accidentally went on my treadmill instead of following my schedule and doing abs, so i gotta go now and make up for that
tl;dr cya
Today weโre excited to announce our support and collaboration on a new Stage 0 proposal to bring optional and erasable type syntax to JavaScript. Because this new syntax wouldnโt change how surrounding code runs, it would effectively act as comments. We think this has the potential to make TypeScript easier and faster to use for development at e...
This example syntax looks a lot like a certain other snake loving language
Really surprising how long it took them to add typehints
python with cars?
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.
so i made program that reads text off your screen and prints it out, anyone wanna give it a spin? py import os import pytesseract as pyt from PIL import Image import pyautogui from time import sleep from datetime import datetime pyautogui.alert('Scraping current screen in 5 seconds...') sleep(5) file = pyautogui.screenshot() name = f'py{str(datetime.now()).rsplit(".")[0].replace("/", ".").replace(":", ".")}.png' file.save(f'./{name}') pyt.pytesseract.tesseract_cmd = r'path_to_tesseract.exe' print(pyt.image_to_string(Image.open(name))) os.remove(name)
what is he talking about?
!Stream 159785588059406338
โ @trail mural can now stream until <t:1646864726:f>.
Soup or computer? You decide!
"Condor Cluster," by connecting together 1,760 Sony PS3s which include 168 separate graphical processing units and 84 coordinating servers in a parallel array capable of performing 500 trillion floating-point operations per second (500 TFLOPS).[3] As built the Condor Cluster was the 33rd largest supercomputer in the world and would be used to analyze high definition satellite imagery
Fast food is cheap but you pay for it later in medical bills
@keen sky Had I the choice, I would push the button to render your family's livelyhood obsolete.
Better for humanity.
3451769357 ? 143694565 = 29819541
find the operator / operation which supports this equation
replace "?" with the operator
Have you tried any?
- , - , / , %, *
those are what i tried
classic simple once
can be gcd, lcm
whatever
idk
There's a few others.
like?
// ** ^ & @
exponential would be high i doubt that would be
so maybe it's the inverse.... ln
I don't disagree.
Can it be any arbitrary "operator"?
it can even be any arbitrary operation : like gcd, lcm, % 2**32 over the whole thing
whatever xD
kinda an obscene thing im reversing
There are a number of functions in the math module.
lol you don't think people should be able to buy insurance?
I think it ought to be unnecessary.
What if I want insurance on my house? Against personal injury? On my car?
Should the government buy me car insurance
Health insurance.
a = range(20)
a[15:None:-1]
[15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0]
Then the government system should lift its game and that should be everyone's concern.
???
so you are saying that I'm not allowed to spend my money on insuring my own health
and whatever the government decides for me
thats what i get
(note that the government will never cover everything, like expensive cancer treatments)
It ought to.
it can't
its impossible to pay for
millions of dollars per cancer patient in the US
Then legislate the costs.
print a[15::-1]
this is absolute brainrot beliefs
You invest in medicine and the development of medical technology.
why?
print a[15::-1]
because you could never start an organization to do so
?
not every organisation cares about money
I work for non profits.
im in the same discord as you
im going to die the same as you
whats different?
It's not supposed to make money. It's an investment in the health of your own citizens, ultimately reducing the increased cost of treating people who become sicker as a result of not having access to proper healthcare under the current systems.
nice assumption based on what evidence