#voice-chat-text-0
1 messages Β· Page 652 of 1
!tempban 749403256333271071 5d Spamming our users and staff is not acceptable. Re-read our Rules and Code of Conduct. If this happens again when you return the ban will be permanent
:ok_hand: applied ban to @wet quail until 2020-10-24 17:05 (4 days and 23 hours).
No permission to talk?
Look at the pins
See voice verification channel
How do you check how many messages you have sent?
just to !voiceverify or look up your old message count.
@lyric dragon See the #βο½how-to-get-help channel. That'll help you get started
You search like this
However, in the verification, we only count messages sent after August 25th
whats the best way to get 50 messages
those are some big words @somber heath
I like words.
I just need some help with python programming lol and not having access to the mic does not help
haha
lol
They're fun to play with. Like Lego.
@desert citrus Do you have a specific question?
People seem to think so.
What's your question @desert citrus
You shouldn't ask just to ask
man I been on the server since last year but I still don't have 50 messages lol
50 messages is a lot
'bout a normal conversation's worth
yeah
I think most of my messages were prior to april tho lol
I've been working with java and c++ so I have no reason to come here lol
just go in ot channels and just talk
yeah
ik im jk
Looking up things for my game. I only opened them. I didn't read them yet.
wish there were more servers liek this one
I've been trying to search one for like c++, java, and javascript and they are all so tiny
This one is just so well made
Looking up things for my game. I only opened them. I didn't read them yet.
It's a lot
this one started out just as tiny as any server
there's only one way to change that
like they don't try to get bigger like this one probably did
doing events and stuff
i'm sure they would appreciate some ideas
The Where-to-be-born index (previously called the quality-of-life index, abbreviated QLI) by the Economist Intelligence Unit attempts to measure which country will provide the best opportunities for a healthy, safe and prosperous life in the years ahead. It is based on a metho...
anyone wanna game
@fierce summit Okay so I MAY have read the name of the spell and thought it was to cause a fart
is web development worth getting into for jobs?
seems like an oversaturated market
It's where most things are going
Web apps instead of desktop applications are really hot for businesses right now
Oh, Aurora. Feel free to friend me so we can toss ideas to each other as they come to us
I looked up those 31 spells and in the end there were only 13 useable.
Yeah I would figure that most of them aren't combat suitable
Turn on English auto captioning and watch what it makes of Yeltsin speaking in Russian. https://youtu.be/mv7M0xmq6i0
(1 Sep 2003) USA: PRESIDENT CLINTON AND BORIS YELTSIN PRESS CONFERENCE - LAUGH ATTACK
You can license this story through AP Archive: http://www.aparchive.com/metadata/youtube/bd276c0564b0f3e84910cfd8fa1eb480
Find out more about AP Archive: http://www.aparchive.com/HowWe...
is there any active data science community?
yes
i was working on Spinneker and kubernetes in GCP and it was soo exhausting to comprehend , do you guys know something any article or so
Dedicated server from β¬8.00 excl. VAT/month. Intel processor - 100 Mbps bandwidth - 500 GB to 1 TB hard disk - 2 to 16 GB RAM
Dog
why am i muted
@amber raptor https://www.youtube.com/watch?v=S27pHKBEp30
Leo Dirac (@leopd) talks about how LSTM models for Natural Language Processing (NLP) have been practically replaced by transformer-based models. Basic background on NLP, and a brief history of supervised learning techniques on documents, from bag of words, through vanilla RNN...
@amber raptor,
Sorry, you broke off. Could you repeat what you said?
Ok, thx.
Guys, what do u think about cybertruck from Tesla?
Meh
I did something today other than be on the pc! Wire managed my cabling because it was annoying me
relevant? pizza hut hersheys cookie
We don't discriminate when we are saving the environment
that picture gives me a stomach ache just to look at
this picture made me hungry
if (image := request.files.get('img')) is not None:
image_url = upload_img(image, f"{therapist_id}_pfp")
profile['img_uri'] = image_url
return update_manifest(profile), 200
probably have to download the correct extension
import sqlite3 as sql
con = sql.connect('SUBSCRIBERS.db')
cur = con.cursor()
try: #Create if it doesn't exist
cur.execute("CREATE TABLE SUBSCRIBERS (id, teir)")
except:
pass
def getTeir(id):
cur.execute(f"SELECT (teir) FROM SUBSCRIBERS where id = {id}")
return j[0][0] if (j := cur.fetchall()) else False
def removeID(id):
cur.execute(f"DELETE FROM SUBSCRIBERS where id = {id}")
def addSubscriber(id, teir):
cur.execute(f"INSERT INTO SUBSCRIBERS (id, teir) VALUES ({id}, {teir})")
print(getTeir(123))
addSubscriber(123, 3456)
print(getTeir(123))
removeID(123)
print(getTeir(123))
I'd recommend excepting the appropriate error
Where?
try: #Create if it doesn't exist
cur.execute("CREATE TABLE SUBSCRIBERS (id, teir)")
except:
pass
here^
except TheErrorOrWhatever
import sqlite3 as sql
cur = sql.connect('SUBSCRIBERS.db').cursor()
try: #Create if it doesn't exist
cur.execute("CREATE TABLE SUBSCRIBERS (id, teir)")
except sql.OperationalError as e:
pass
def getTeir(id):
cur.execute(f"SELECT (teir) FROM SUBSCRIBERS where id = {id}")
return j[0][0] if (j := cur.fetchall()) else False
def removeID(id):
cur.execute(f"DELETE FROM SUBSCRIBERS where id = {id}")
def addSubscriber(id, teir):
cur.execute(f"INSERT INTO SUBSCRIBERS (id, teir) VALUES ({id}, {teir})")
print(getTeir(123))
addSubscriber(123, 3456)
print(getTeir(123))
removeID(123)
print(getTeir(123))
except:
pass
this is also highly not recommended, since yo are silencing error and not doing anything
but idr much ab- ah alright
Do you have any issue with the code?
or do you just want a review?
well i did some more testing and it's not actually saving it to the file
lemme fix that
I didn't quite catch the conversation right before you posted it properly
claiming a help channel is what I'd do(#βο½how-to-get-help)
but if yoy feel you need voice support, use one of the voice channels below this
well i did some more testing and it's not actually saving it to the file
@ruby wind i think you have to COMMIT
to the database
yea im looking at that atm
pog it works now
import sqlite3 as sql
con = sql.connect('SUBSCRIBERS.db')
cur = con.cursor()
try: #Create if it doesn't exist
cur.execute("CREATE TABLE SUBSCRIBERS (id, teir)")
except sql.OperationalError as e:
pass
def getTeir(id):
cur.execute(f"SELECT (teir) FROM SUBSCRIBERS where id = {id}")
return j[0][0] if (j := cur.fetchall()) else False
def removeID(id):
cur.execute(f"DELETE FROM SUBSCRIBERS where id = {id}")
con.commit()
def addSubscriber(id, teir):
cur.execute(f"INSERT INTO SUBSCRIBERS (id, teir) VALUES ({id}, {teir})")
con.commit()
addSubscriber(12345, 5)
print(getTeir(123))
addSubscriber(123, 3456)
print(getTeir(123))
removeID(123)
print(getTeir(123))
print(getTeir(12345))
addSubscriber(123, 5)
we good now
cheap
ill be back, watching a vid real fast
LMAO, I reference this everytime I order pizza. I can't believe it's 13 years old
https://twitter.com/davideastUK/status/1318104488213942273
sure
voice or text?
claim a help channel and ping me there
do you know how?
this channel has some details on how to claim
not sure, did i get a ping?
type the @ symbol and then my nick in the help channel you claimed
@junior shadow like this π
Pinged you in the channel you claimed
ping me there @hollow haven
(I did.... I hope)
hey guys, do you how i can find out for how much one can sell a website?
i was thinking about a maybe 10 page business website, with a simple contact form for example
could I get feed back on the look of this for my website?
The binary is actually a quote from LoTR
the font color and font border color don't really match well I don't think.
i would change the font color to a yellow green or a yellow-orange.
Hey π
o/
@junior shadow sorted(set(_dict.values())) should get you started.
Yeah. Assuming you discard duplicates.
I'm not sure if that's appropriate.
If you keep the duplicates, don't use set
Okay. dict.values. Understood or not?
set?
Yes, but I lost it.
Hey @somber heath
OpalMist is a legend
dude thats a givin
that's just his personality
ye
dude, I'm kinda fed up with this whole voice verification thing
ya we all are
ya to reduce spam
I feel like I've sent a lot more that 50 messages by now, but nope!
so, I just need a long conversation with someone untill I can voice verify
I'm pimp chimpin
are ya simping again?
Tell Opal that I miss him so and I love his Python art
wow, what a response
that's fine whatever *cries*
feels bad man
what do you code in mainly?
python right now but trying to lean toward js and c++
dang, same
but not really
I'm trash at Python, I'm great at JS, and I'm interested in C++
ya c++ is faster but harder good tradoff of you ask me
I actaully just had a couple hour tutoring less (for free because I'm cool) with a guy teaching him JS
fun, how did he do
what do you mean? It's not like he took a test or something lol
he said he had fun, so there's that
good enough for me π
do you know any JS?
yes im coding in it right now acualy
how long have you been coding in JS?
oh, the guy I was helping out started like 2 days ago lol
yeah, I've been working on JS for over a year now
oh opal just left
@frozen jacinth Sorry, I was concentrating on helping someone else with a problem. I was coding.
oh it's fine
@frozen jacinth I love that you enjoy my art. π
System design questions have become a standard part of the software engineering interview process. Performance in these interviews reflects upon your ability to work with complex systems and translates into the position and salary the interviewing company offers you. Most engi...
anything new noobs
:incoming_envelope: :ok_hand: applied mute to @radiant marten until 2020-10-20 05:42 (9 minutes and 59 seconds) (reason: duplicates rule: sent 4 duplicated messages in 10s).
F
All the resources you need to give yourself a world class computer science education
how was your day?
horrible
because, you wouldn't get it
my dad drank too much
everything is hunky dory?
apple juice
lol
fine
3-4 months
AmErIcA
im from knowhere
I mostly do JS and web dev
it's been over a year or so, but I suck
in ethical hacking?
no JS
oooh, epic
yeah
dang, that's epic
what's socket?
import socket
any mods here
check it out
I'm no Python dev
ohh okay
dude
sdsfssd
Socket programming is a way of connecting two nodes on a network to communicate with each other. ...
<.< stop spamming
still didn't have 50 messages
dang
Do this somewhere else please
yeah
don't spam man
fsfsfe
@radiant marten go somewhere else!
I want 50 messages
do it the right way, bruh.
yeah, do this in another channel
ok
yeah
or just do it the right way
so @frozen jacinth what's in js?
that
game dev?
good
or web
JS is a lot of things. Mostly web
which
yeha
I know litbit of js
yeah socket, I've worked with it in Node.js once
reply
yeah
@radiant marten please type in not one word per message, it's very spammy.
I know some part of react js
not much but just litbit
@radiant marten please type in not one word per message, it's very spammy.
@sly jolt ok
I don't like react, it has too many draw backs
I'm all vinilla
lol
sorry
@green peak what's with the weird name?
@frozen jacinth my username?
yes
That has become a habbit
its all bout internet of things
!voicetempban 757923719824801853 2d How about instead of communicating in a spammy way to acquire message points, work on contributing more to the conversation.
Mr. Mod sir... I just wanted to thank you for the time and energy that you put into dealing with annoying situations. for the great or good
pls make e voice verified
whoops wrong command
!tempvoiceban 757923719824801853 2d How about instead of communicating in a spammy way to acquire message points, work on contributing more to the conversation.
:incoming_envelope: :ok_hand: applied voice ban to @radiant marten until 2020-10-22 06:09 (1 day and 23 hours).
F
I have my other acc hear
now he threats lol
great.
yeah
@frozen jacinth thank you for the appreciation, I appreciate it.
#blessed
no problem. I've been mod in a couple servers in my time. I know what it's like );
It really do be like that sometimes
it do
oh what
pls give me verification
No. You have to earn it.
I need help
please go back and read the rules for voice verification...
if you need help, please claim a help channel
dude, who cares about your other account? lol
@stark otter is my other acc
is that so?
yes
wait, it might not be and he's just being 300 IQ troll
wait, it might not be and he's just being 300 IQ troll
@frozen jacinth what no
That''s mine
I have no proof
aw yes, I thought so
oof.
thanks alec, I knew we could count on you
How interesting
what
I was trying to fool u guys saying that I stole my name
Can you kick my old acc and invite again
Either way, I've extended your voice tempban to 5 days since you really do need to earn it. Voice is a privilege, and it should be taken seriously.
maybe it might work
No, I still have no proof that it's your account
rip.
If you need this server, then take our rules seriously.
For informing this I created this acc
I feel informed
then consider alternatives to asking for help. you don't necessarily need voice chat.
No in that acc I can't acccess the server
Can't even access the server
That is my og acc
was "your" account locked or something?
I can give a proof if needed
That @stark otter I know is a lot less annoying
I've chatted with them just last night
was "your" account locked or something?
@sly jolt idk I am niot able to access the server
I can give a proof if needed
I have a nutella as the profile pic
and used to have myself licking a car
I don't see how that gives any amount of proof
No, that's not your account.
What programming course were you searching for back in September? You wanted something out of it.
Here's a better question
I thought you were talking abt this one
Who were speaking in voice last night?
Opalmist
and?
There were many people
Right, and what exactly did you say to OpalMist?
I don't wanna talk abt it bcs it was bit embarrasing
it was 'normal'
Is that enough proof
pls help me
Did they just randomly ban people from voice chat?
You have to verify
I could talk in voice chat 2 days ago
Look at the pins
pins where?
This channel
@swift valley can you help me now
So I have to give up my real identity to talk in voice chat?
How do I do that anyway?
@sly jolt I think I have given enough proof
No? You just type !voiceverify
@radiant marten I guess this is enough proof for me not to remove you for impersonation, but it's not enough to convince me to kick "your" alt account. You're keeping your temporary voice ban. If you want to get help, I recommend the #βο½how-to-get-help system.
Itβs just like the server verification
@radiant marten I guess this is enough proof for me not to remove you for impersonation, but it's not enough to convince me to kick "your" alt account. You're keeping your temporary voice ban. If you want to get help, I recommend the #βο½how-to-get-help system.
@sly jolt I need to get my other acc back into the server
What happens when you try to access this server?
How do I 'verify'?
It couldn't access the server
@sly jolt
@hidden cove #voice-verification
@radiant marten you need to be more specific. What happens when you click on the icon in the server tray? Does it crash Discord? Can you not type messages?
What happens when you try to access this server?
@sly jolt It just shows a blank screen possibly a bug
@sly jolt that scared the crap out of me. all is good now.
I can access other servers
@hidden cove ye np, voice gating is necessary because of recent events.
i DON'T NEED VOICE HERE IF i HAVE THE OTHER ACC
calm down
@sly jolt I totally agree. It gets abused (or got) abused a lot.
hold on, if you're able to access your other account, why don't you just take a screenshot of what the server looks like?
I don't think we do have any plans
if you have any suggestions, feel free to bring it up in #community-meta
Nope. Not that Iβm aware of either
hey idk my mic is suppressed from the off-topic and code-help channels
We have a new verification system. Follow the instructions in #voice-verification to get access
ohk
@hidden cove you must try lays maxx it has a really good crunch
if you guys wanna work with web dev i guess reactjs will be a good option
yeah @somber heath but thats how they engage more people
for (let i = 0; i < bodies.length; i++ ) {
for ( let j = 0; j < bodies.length; j++ ) {
if ( i !== j ) {
polarW = Math.sqrt( ( bodies[i].mesh.position.x - bodies[j].mesh.position.x ) ** 2 +
( bodies[i].mesh.position.y - bodies[j].mesh.position.y ) ** 2 );
polarR = Math.sqrt( ( bodies[i].mesh.position.x - bodies[j].mesh.position.x ) ** 2 +
( bodies[i].mesh.position.y - bodies[j].mesh.position.y ) ** 2 +
( bodies[i].mesh.position.z - bodies[j].mesh.position.z ) ** 2 );
arcTangent = Math.atan( ( bodies[i].mesh.position.y - bodies[j].mesh.position.y ) /
( bodies[i].mesh.position.x - bodies[j].mesh.position.x ) );
phi = Math.atan( ( bodies[i].mesh.position.z - bodies[j].mesh.position.z ) / polarW );
if ( arcTangent > 0 && bodies[i].mesh.position.x - bodies[j].mesh.position.x < 0 ) {
polarTheta = arcTangent + Math.PI;
}
else if ( arcTangent < 0 && bodies[i].mesh.position.x - bodies[j].mesh.position.x < 0 ) {
polarTheta = arcTangent + Math.PI;
}
else if ( arcTangent === 0 && bodies[i].mesh.position.x - bodies[j].mesh.position.x < 0 ) {
polarTheta = arcTangent + Math.PI;
}
else {
polarTheta = arcTangent;
}
if ( i !== 0 && j === 0 ) {
rToSun = polarR.toFixed(2);
thetaToSun = polarTheta * 180 / Math.PI;
}
// calculate x and y components of incremental velocity change
if ( bodies[i].mesh.position.x - bodies[j].mesh.position.x !== 0 ) {
bodies[i].v_x -= ( bodies[j].mass * g / ( polarR ** 2 ) ) * Math.cos(polarTheta) * Math.abs( Math.cos(phi) );
}
if ( bodies[i].mesh.position.y - bodies[j].mesh.position.y !== 0 ) {
bodies[i].v_y -= ( bodies[j].mass * g / ( polarR ** 2 ) ) * Math.sin(polarTheta) * Math.abs( Math.cos(phi) );
}
bodies[i].v_z -= ( bodies[j].mass * g / ( polarR ** 2) ) * Math.sin(phi);
}
}
π³
@green peak i did a hackathon 2 weeks ago
When I see OpalMist using compact mode, I just assume it's the real one
(very bad idea)
ahh ok cool
yo that looks cool @hidden cove
what do you do for cp
@torn vessel not really
@hidden cove you can also use the p5 library
that way you can make this project 3d to
Everyone is actually already dead. Their hearts are beating and they walk around among the rubbish and try to fight their demons, but actually they are already dead. It just takes some people longer and more suffering to get there. To the only guaranteed route out of Livezilor...
I'm participating in a competition.
I need to come up with some innovative ideas to make a safe college campus during this period of covid19
can i get unmuted?
@hushed elm beautiful
no ur mom
:incoming_envelope: :ok_hand: applied mute to @whole bear until 2020-10-20 08:34 (9 minutes and 58 seconds) (reason: newlines rule: sent 182 newlines in 10s).
O_O
Hello big boy
!unmute 758005312363167784
:incoming_envelope: :ok_hand: pardoned infraction mute for @whole bear.
!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.pydis.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.
lol
wtf
you had wayyyy too many newlines in there
ok i aplgise
What happened eivl
ERROR: Could not find a version that satisfies the requirement pyqt5-tools (from versions: none)
ERROR: No matching distribution found for pyqt5-tools
WARNING: You are using pip version 20.2.3; however, version 20.2.4 is available.
You should consider upgrading via the 'C:\Users\bruh\AppData\Local\Programs\Python\Python39\python.exe -m pip install --upgrade pip' command.```
I am getting this error while installing pyqt5-tools
@whole bear
no answer
your not muted, but you might not have gone trough voice verification jet @ashen island
#voice-verification have some details
so once you have been verified, you will be able to talk in the voice channels
okay, thank you
no worries.
can i get unmuted
!tempmute 757923719824801853 3d Please don't spam messages on our server
:incoming_envelope: :ok_hand: applied mute to @radiant marten until 2020-10-23 09:51 (2 days and 23 hours).
Voice verification was introduced a few days ago
yep
Ohh okay
May be
I will just let anyone here know that we won't appreciate anyone trying to bypass it by spamming in the channels. It's easy enough to get past it by naturally participating in conversation
I've got admin permissions, so I don't strictly need verification, but I'll verify myself anyway
Lol
howdy do
Howdy howdy.
Is there a library to send a broadcast message to a google home ?
I was going to have it where when someone comes home (phone connects to wifi) it will broadcast there name
"blank is home"
A funny thing to name someone.
I install but said it couldnt find any devices
when i ran a test script
and would say "available devices []"
after showing the error
Through what protocol does googlehomecast operate?
Its own, or something more standardised?
this is what neweggs says
but i think its just saying it can work with such devices
https://developers.google.com/assistant/smarthome/reference/local/enums/smarthome.constants.protocol
looking now
looks like it uses java
node.js
Could i right the network scanner in python and when it see the devices
exe the java script
wait a min
I could install home assistant and just send commands to that
ez
why am i server muted`?
you need to verify
yoink
so i need to talk in chat 50 times?
50 messages and being server verified for over 3 days
Text conversation party!
but i have probably talked 5000 sentences in vc
thats dumb software desing not taking in to account older members
it's easier to implement
theres a way to get the text channel history of a discord member in discord.py
You'll be sorted in no time. π
do you know what a bogosort is?
Not off the top of my head.
it looks at message history
bogosort sees if a list is sorted or not and after that if it is sorted: good else: randomize again
That sounds horrific.
what's the O notation of bogo?
"Fuck you"
1 in 16 million chance of sorting
When I was a teenager, I wrote some terrible code. Here's why. β’ Sponsored by Dashlane β for free on your first device @ https://www.dashlane.com/tomscott
MORE BASICS: https://www.youtube.com/playlist?list=PL96C35uN7xGLLeET0dOWaKHkAlPsrkcha
Written with Sean Elliott https...
thats poggers
fk
16.06 pm
modmail
What does it do
sorted()
def bogosort(lst):
while True:
if sorted(lst):
break
else:
random.shuffle(lst)
return lst
type 50 times here
shitttt
i am not varified yer @somber heath
sorry
also i lefted the server last day so my developer role should be three days old
yeah
i am so dum
so
i am not a big fan of these rules
so yeah
yeah
i understand that
Exclusive crime heat map and statistics for neighborhoods within Springfield, MO. Crime forecast reports available by address.
Evening folks
Yo
Not that I can think of
@whole bear There are NTP servers.
@crystal fox #voice-verification
@rugged root ```haskell
module Lexer where
-- Author: Jeremy Gluck
data BF_Token = Increment |
Decrement |
Shift_Left |
Shift_Right |
Output |
Input |
Open_Loop |
Close_Loop
deriving Show
-- Assert that source will only contain 1 character tokens or whitespace or any other character as comment
lex_char :: Char -> BF_Token
lex_char '+' = Increment
lex_char '-' = Decrement
lex_char '>' = Shift_Left
lex_char '<' = Shift_Right
lex_char '.' = Output
lex_char ',' = Input
lex_char '[' = Open_Loop
lex_char ']' = Close_Loop
lex_char _ = undefined
isBF :: Char -> Bool
isBF '+' = True
isBF '-' = True
isBF '>' = True
isBF '<' = True
isBF '.' = True
isBF ',' = True
isBF '[' = True
isBF ']' = True
isBF _ = False
filter_comments = filter (not . isBF)
lexer :: String -> [BF_Token]
lexer = map lex_char . filter_comments
yikes
not really big lol
fix error and lak are much more knowledgable about it tho haha
This was painful to write
"I don't even know how he used the lighter." https://youtu.be/on9vqL4W6Hc
http://www.milkmatters.co.uk A new Cravendale Milk advert which poses the question : "What if cats had thumbs?"
Love it!
Instruction93 is Instruction Int32, so it's actually a Monad Transformer stack
type Instruction a = StateT (Machine a) (ExceptT (MachineFail a) IO)
anyhow
from nlab
hi is there a new rule that making me surpressed to talk
Check the voice verification channel.
hi
hi
hey
@dusky chasm Check out #voice-verification
@dusky chasm don't spam to hit the 50 message limit
Joseph Kosinski
π’
https://www.udemy.com/course/python-3-for-beginners-online-learning-course/?couponCode=PYTHONOCTFB
https://www.udemy.com/course/python-and-flask-and-django-course-for-beginners/?couponCode=1B84729392512AABCC6F
that's kinda hot
Learn the Python Django framework with this free full course. Django is an extremely popular and fully featured server-side web framework, written in Python. Django allows you to quickly create web apps.
π»Code: https://github.com/codingforentrepreneurs/Try-Django
βοΈCourse Co...
Flask is a micro web framework written in Python. It is classified as a microframework because it does not require particular tools or libraries. Learn how to use it in this crash course tutorial.
π»Code: https://github.com/jakerieger/FlaskIntroduction
Tutorial from Jake Rieg...
so microsoft naming sys?
weird image to dump into a voice chat text channel when you're not in voice chat
Lol
which way do you even rotate
is it a math joke?
@fiery hearth Don't drop random crappy memes in here. Or anywhere on the server, honestly
I mean JSON is fine if you use it for what it's for
Β―_(γ)_/Β―
not sure, but long
Can you click the right arrow so you can see more details?
Introduction
This tutorial will cover using SQLite in combination with Python's sqlite3
[https://docs.python.org/3/library/sqlite3.html#module-sqlite3] interface.
SQLite is a single file relational database bundled with most standard Python
installs. SQLite is often the techn...
no
You don't load the entire DB
you don't load the entire DB into memory at once
Yeah, but I don't think it's only just about memory space.
phew it isnt stuck at 5 now
is there a way to load specific chunks of the json instead of the whole file?
nile
oooh
but if you know where the data is?
name of customer
address of customer
phone number
email address
customer_ID
but, for public applications isnt postgres better?
yeah
anyone know any good tutorials for html, css and js, like a bit of frontend basically
w3schools
f12
ah ok i will see thanks
@rugged root
doing the hackerfest boiii
Pretty
also, does the hacktober tshirts get imported from foriegn, like people said they take about 4 months to reach
i dont know actually
yes i agree with that one
sigh, people eating animals still pains me
I can bet that I can live for 20 years without ever tasting bacon
i will die if i do
Well I'm three years away from it
Understandable. I'm at peace with it, so long as everything is humane.
I remember a few months back there was this Mukbang YouTuber that got flak for her videos, given the fact that she's torturing seafood alive before eating it
...
Mukbang is trash anyways
isn't she still doing it?
ahh can someone help me with this
disable your fireware
it is disabled
or try changing the currently used proxy settings
The US is responsible for the fucked up state of the whole of South America due to the fact it destabilised the entire region
/s
@bleak mica i tried changing every proxy, doesnt work
you have a vpn on?
idk, how do i check that?
π€·
maybe it's trying to run on a blocked proxy
wait
idrk what im saying I just read the error
i didnt set any proxy
i mean
i tried toggling between options on the menu on right, idk anything else to do here
hElP
does this look like a mountain range?
@tidal salmon got any coffee recommendations im running low
I just saw bacon on top, now I am interested
@bleak mica coffee will make it worse
no I need my beans :(
it will give an energy boost at first but then it would get you tired even more
no I need my beans :(
well at least try natural energy rouces. Fruits like apple orange, and some other ones
its your health, not mine. π€·ββοΈ
I've got 2 labs, 2 assignments, a midterm and a test in the next couple days
I don't think fruit is gonna allow me stay up for 48 hrs
No copyright infringement intended. | Watch Money, my new Nebula Original series, when you join CuriosityStream for only $2.99/month: https://curiositystream.com/tomscott
WRITTEN BY: Tom Scott
SCRIPT ASSISTANT: Andrea Marks
CAMERA: Jamie Drew
CAMERA: Joe Stone
AUDIO MIX: Grah...
@bleak mica I get all my coffee from my workplace because they give it to me for free, but I would encourage you to check out local roasters. Those businesses need our support these days.
I already have, the 1 close to me is kinda bad
im all for supporting them but not if bad
ah. well don't give them your business if they're pushing out a bad product.
tastes like mcdonalds
there's a local roaster in walking distance of my place and they just have roasted beans sitting out
in the open air
Subscribe and π to OFFICIAL BBC YouTube π https://bit.ly/2IXqEIn
Stream original BBC programmes FIRST on BBC iPlayer π https://bbc.in/2J18jYJ
http://www.bbc.co.uk/bbcfourcollections 4'33" by John Cage performed by The BBC Symphony Orchestra conducted by Lawrence Foster live a...
and you scoop them into a bag. Scooping them into a bag is nice but the containers should be behind the counter in airtight containers.
I mean if they're freshly roasted it shouldn't be too much of a issue
can't say I see the point to that tho
nice
*Rigged random
@lilac wind Small correction, it was Korean
Gotta hop off, will be back in a few
@ornate elbow If you're wondering why you're unable to unmute yourself, you might want to look in #voice-verification
1000 feet for 43 USD Unshielded
1000 feet for 55 USB Shielded
1000 feet for 111.35 Outside use
If you're wondering why you're unable to unmute yourself, you might want to look in #voice-verification
@short badge
1000ft (304.8 m) for USD 102.99
1000ft (304.8 m) for USD 229.99
why am i not able to speak in here
need help in Code/Help 1, if anyone is available π
For anyone interested, I went through some old JavaScript and commented its functionality at each step of the way. The code animates a gravitational simulation that was rendered into a web browser and was discussed in voice chat last night. I will paste the code momentarily.
I used to have this trash for the longest time
hey whats that @hidden cove ?
hi
hey
yeah
in a pastebin?
I guess that might be better
yeah
I was just trying to paste in chat, but it's probably too lengthy
yep
yo boys how do i get voice certified
50 messages, verified for 3 days, and no ongoing voice mutes
I think it says in the voice verification channel right?
oh shit thanks
Here's the pastebin link for anyone interested:
https://pastebin.com/03uX6fvq
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
What program do you guys use?
what kind of program?
For writing python
I use emacs with elpy-mode
pycharm is easy to use
For beginner, itβs overwhelming big
Thank you very much
This yearβs ranking of the worldβs top 1,000 universities sees relatively little movement at the very top. Massachusetts Institute of Technology (MIT), Stanford University and Harvard University are an unchanged top three, while the University of Oxford continues to be the bes...
sending random friend requests is not the way to start
Oh, I'm sorry
how long have you studied programming @sudden venture ?
Nice! keep reading and practicing and learning
Thank you
Hey is voice verification a new thing
I've been a server member for a while but haven't sent many messages, and just realized today i can't unmute.
spam not, thanks
News, analysis and comment from the Financial Times, the worldΚΌs leading global business publication
@glad canyon Have over 50 messages in the server (deleting messages lowers this count)
!tempvoiceban 265587537572003840 3d Instead of spamming messages, how about you try to construct messages that contribute to the community in a more meaningful way.
:incoming_envelope: :ok_hand: applied voice ban to @frank falcon until 2020-10-23 20:58 (2 days and 23 hours).
In Denmark we pay a lot of taxes, that includes school, hospital, some cases with the dentist and cash assistance
As a induvial you don't have to pay these things, because the society already paid it
Even education is free
@amber raptor I think that's a bit far there
Please tone it down, especially with our policy against conversations that go like this
what was too much?
What?
Bats called something out as too much from Rabbit
"You are ok with.. people dying"
that's what this guy literally just said though
That line of speech is not appropriate here
But it is true
but - it's a discussion of healthcare, that's a position someone can acceptably hold in the US
Regardless, if that's where the conversation is going the conversation shouldnt be here
um why?
No
he went over the line a bit, and wasn't lookign at chat
What is the reason for the mute?
I'm unable to enter the voice approrpiately, so the mute is to draw attention
Iβm on mobile and itβs in background
Yeah the mute is wack
Lol this is to prevent to talk about political stuff
Oh
What a communism server
Our CoC mentions polarizing discussions
Huh
And we prefer to have a welcoming environment
lol communism
While its OK to discuss things like politics, statements on "You're ok letting people die if you hold opinion X" are unwelcoming and not welcome
That's where the conversation crosses the line into polarizing and unwelcoming, and where we generally step in to moderate
Wish I knew too
Yes, there's some signifcant differences
you cant join group dms as a bot, for example
lol he is just ignoring you