#voice-chat-text-0
1 messages · Page 901 of 1
# First create BedFile for genomic ranges of 1kb upstream promoter region of each transcript
marker_overlaps = []
# ---------------------- Write your code here
marker_overlaps_bed = bed.BedFile(marker_overlaps)
try:
for o in marker_overlaps_bed:
print(o.name, o.chrom, o.chromStart, o.chromEnd)
except Exception as e:
print(e)```
common_peaks_bed = bed.BedFile(common_peaks)
Med skägget i brevlådan
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!e
import dis
def add(a, b):
return a + b
print(dis.dis(add))
@woeful salmon :white_check_mark: Your eval job has completed with return code 0.
001 | 4 0 LOAD_FAST 0 (a)
002 | 2 LOAD_FAST 1 (b)
003 | 4 BINARY_ADD
004 | 6 RETURN_VALUE
005 | None
!e
import dis
def foo():
bar = 2 + 20
return bar
print(dis.dis(foo))
@woeful salmon :white_check_mark: Your eval job has completed with return code 0.
001 | 4 0 LOAD_CONST 1 (22)
002 | 2 STORE_FAST 0 (bar)
003 |
004 | 5 4 LOAD_FAST 0 (bar)
005 | 6 RETURN_VALUE
006 | None
!e ```import dis
def foo():
bar = 20 << 1
return bar
print(dis.dis(foo))```
@untold wraith :white_check_mark: Your eval job has completed with return code 0.
001 | 4 0 LOAD_CONST 1 (40)
002 | 2 STORE_FAST 0 (bar)
003 |
004 | 5 4 LOAD_FAST 0 (bar)
005 | 6 RETURN_VALUE
006 | None
!e ```import dis
def foo():
bar = 20 >> 1
return bar
print(dis.dis(foo))```
@untold wraith :white_check_mark: Your eval job has completed with return code 0.
001 | 4 0 LOAD_CONST 1 (10)
002 | 2 STORE_FAST 0 (bar)
003 |
004 | 5 4 LOAD_FAST 0 (bar)
005 | 6 RETURN_VALUE
006 | None
import dis
dis.dis(dis.dis)```
Yo, dawg.
I heard you like dis.dis, so I put dis.dis inside dis.dis.
Python Techno.
Dis dis dis dis...
!e
from dis import dis as this_dis_dis_isnt_inside_dis_dis
def char_remover(string, char):
return string.replace(char, "")
print(this_dis_dis_isnt_inside_dis_dis(char_remover))
@wind raptor :white_check_mark: Your eval job has completed with return code 0.
001 | 4 0 LOAD_FAST 0 (string)
002 | 2 LOAD_METHOD 0 (replace)
003 | 4 LOAD_FAST 1 (char)
004 | 6 LOAD_CONST 1 ('')
005 | 8 CALL_METHOD 2
006 | 10 RETURN_VALUE
007 | None
!e
import struct
def foo(num: int) -> str:
bytes_object = struct.pack(">l", num)
return "".join(f"{_byte:08b}" for _byte in bytes_object)
res1 = foo(-1)
print(res1[0], res1[1:])
res2 = foo(1)
print(res2[0], res2[1:])
don't judge naming i didn't wanna think
@woeful salmon :white_check_mark: Your eval job has completed with return code 0.
001 | 1 1111111111111111111111111111111
002 | 0 0000000000000000000000000000001
My name is Xander Steenbrugge, and I read a ton of papers on Machine Learning and AI.
But papers can be a bit dry & take a while to read. And we are lazy right?
In this channel I try to summarize my core take-aways from a technical point of view while making them accessible for a bigger audience.
If you love technical breakdowns on ML & AI bu...
Hi
@icy axle if i have to compare the values of two variables and if its not equal then we will slice one value of the string from last and the loop will run until the values of both are equal then it will print the result
how can we do that?
@icy axle
@icy axlehelp
hello
Could you try using a help channel? Check out #❓|how-to-get-help
sure
You need to get voice verified. Check out #voice-verification for more info
Feel free to hang out in the channels for some time, and you'll get there soon
sorry
How do I download the module Bigfloat? I tryed but it gave a long error. https://paste.pythondiscord.com/ofikajitob.sql
Hello?
👀
@icy axle just wishing to say I like this game your making if it is one
Looks quite cool tbh
Thanks 😄
It’s your choice my friend
Well I do hope they are bro
If they aren’t that isn’t good
Is there any problems python has found?
If so I’d check them
It's a logic problem. Not a syntax issue
I need help with some code in voice if anyone can help, its for an assignment and the help text channels arent proving very helpful. Heres assignment details:
Create a program that reads the VacationPackagesExtra.txt file and stores the data in one or more lists. No user entry is needed for this program. The program will count the number of available packages for each country and calculate the average price for selecting one of the package for each country. (The first field in each row of the file contains "1" for available and "0" for not available.) The program output should be a list of countries, sorted by country name, displaying how many packages are available and the average price for those packages.
just @ me if you are willing to help
query = "INSERT INTO users (DiscordID, SteamID) VALUES (%s, %s);"
cursor.execute(query, (discord_id, steam_id))
That will safely do it
what?
near "%": syntax error
:?
query = "INSERT INTO users (DiscordID, SteamID) VALUES (?, ?);"
cursor.execute(query, (discord_id, steam_id))
Ho
[]
INSERT INTO users (DiscordID, SteamID) VALUES (?, ?) RETURNING *;
SQlite doesn't support simulations sessions.
Are we missing a commit(), and the transactions being rolledback?
Yes
I don't think you can do that?
You can't fetch what hasn't been commited?
You can do that
How? Does the fetch run with the transaction's context?
Yeah, that's the cursor iirc
Also only one connection can write at a time, so you know what the context is
hi
.p
@icy axle can you help me with a question?
Feel free to ask in a help channel. Check out #❓|how-to-get-help
@icy axle Thank You!
hows it going @icy axle
what ya doin
Alright, good luck
https://blog.dream11engineering.com/lessons-learned-from-running-graphql-at-scale-2ad60b3cefeb
” To improve the compositionality of our code we had defined a ton of curried functions using Ramda. But every abstraction has a cost associated with it. On profiling, we found out that the curry function was taking up a lot of CPU. Benchmarks show that removing curry from the code makes it up to 100 times faster. Curry function is at the core of Ramda, almost every function is curried.”
hoi.
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
yea, but i have a doubt
?
import pygame
from sys import exit
pygame.init()
screen = pygame.display.set_mode((800,600))
pygame.display.set_caption('zoomerz')
clock = pygame.time.Clock()
background_surface = pygame.image.load("C:/Users/admin/Downloads/graphics/sky.JPG")
background_surface = pygame.Surface((100,200))
while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
exit()
screen.blit(background_surface(0,0))
pygame.display.update()
clock.tick(60)
i jus wanna know whats wrong here
!code
Here's how to format Python code on Discord:
```py
print('Hello world!')
```
These are backticks, not quotes. Check this out if you can't find the backtick key.
ok
Remember to edit your message
import pygame
from sys import exit
pygame.init()
screen = pygame.display.set_mode((800,600))
pygame.display.set_caption('zoomerz')
clock = pygame.time.Clock()
background_surface = pygame.image.load("C:/Users/admin/Downloads/graphics/sky.JPG")
background_surface = pygame.Surface((100,200))
while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
exit()
screen.blit(background_surface(0,0))
pygame.display.update()
clock.tick(60)
wait
sry
1sec
!code
...
shown here btw @ebon fractal
kk
that link will give you the info on finding the key needed
from sys import exit
pygame.init()
screen = pygame.display.set_mode((800,600))
pygame.display.set_caption('zoomerz')
clock = pygame.time.Clock()
background_surface = pygame.image.load("C:/Users/admin/Downloads/graphics/sky.JPG")
background_surface = pygame.Surface((100,200))
while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
exit()
screen.blit(background_surface(0,0))
pygame.display.update()
clock.tick(60)```
ok?
import pygame
from sys import exit
pygame.init()
screen = pygame.display.set_mode((800,600))
pygame.display.set_caption('zoomerz')
clock = pygame.time.Clock()
background_surface = pygame.image.load("C:/Users/admin/Downloads/graphics/sky.JPG")
background_surface = pygame.Surface((100,200))
while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
exit()
screen.blit(background_surface(0,0))
pygame.display.update()
clock.tick(60)
ok
As I see ...
can i know whats wrong
Is there any error shown in the terminal?
yes
Knowing the full stack trace would help
it says - 'pygame.Surface' object is not callable
???
probably because it is not one?
No idea why it is not working, See the official documentation, but I still don't know why ... https://www.pygame.org/docs/index.html
yea acc to me i made no mistake
what version of PyGame do you have?
pygame v2.0.1.dev1
?
Did you install via. pip or some other virtual environment?
If so, see if you can update it that way
@icy axle
''.join(
str(int( CODE ))
for VAR in SEQ
)
sheer confusion, multiple people talking but no one in vc??
@untold wraith are you on mobile or desktop / web?
desktop, i believe Vestergurkan is livestreaming audio from another source?
[Ctrl] + [R] if on desktop
(
int( TEST_1 ) and 0x1
) + (
int( TEST_2 ) and 0x2
)
@primal yacht i got it, thank you for trying to help
^w^ yw
sorry I got distracted as well @ebon fractal
bi bi (bye bye / goodbye)
Who are you?
4. Use English to the best of your ability. Be polite if someone speaks English imperfectly.
How is that related to the conversation in VC?
It's just a compliment, that I did them, it's nothing...
I've just had to deal with too many annoyances in my life.
I'm sorry if I sounded rude.
' hi
No text to speech bot here
Hahahahaha
Hahahahaha excellent sr Burns
hello
don't attribute to malice what can be sufficiently explained by...
language barriers
oh my gosh
bye i dead
Hello 👀
hi LX
Oh interesting
vester were you always a mac user?
Nice 😄 Is this using curses?
Nope
ah but you are converted ? what'd you use before ?
@icy axle What modules uses for it?
🤔
🤔


Yeah I do 😄
try:
while self.running:
self.render()
self.update()
time.sleep(1 / self.fps)
except KeyboardInterrupt:
self.running = False
while self.running:
try:
self.render()
self.update()
time.sleep(1 / self.fps)
except KeyboardInterrupt:
self.running = False
xDDDDD
would anyone know how to increase the bass of a audioloop
@orchid barn how you doin'
Bye VG 👋
Vegetarian Glycerine
Audacity?
pep_number
!pep <pep_number>
Can also use: get_pep, p
Fetches information about a PEP and sends it to the channel.
!p audioloop
Converting to "int" failed for parameter "pep_number".
!pep <pep_number>
Can also use: get_pep, p
Fetches information about a PEP and sends it to the channel.
class discord.FFmpegPCMAudio(source, *, executable='ffmpeg', pipe=False, stderr=None, before_options=None, options=None)```
An audio source from FFmpeg (or AVConv).
This launches a sub-process to a specific input file given.
Warning
You must have the ffmpeg or avconv executable in your path environment variable in order for this to work.
it creates a audio loop
Tbh, I didn't know this was a thing
😭
Jajajaja
👋
Hi @final swift
ofc ofc
danm no help then ok
Calculator
Code up a clone of the windows calculator. It’s great practice for GUIs and basic math operation. And if it helps you solve your algebra homework - all the better! how should i start making this in java?
lol guys
Jajajaja
@pseudo nebula There is a translator called P2J that can convert a subset of Python to Java. My universal-transpiler project was written for the same purpose, but it also translates Python to C #, Java, JavaScript, and other languages.
Hahaha
kute
@strong arch thanks for the tip, worked beautifully
or how java is very old
Why do that? Let your Python code run in Java:
http://www.jython.org/
It is a Python interpreter written in pure Java! Elegant.
xD
Is this any help @whole bear? https://github.com/paarthmadan/bass-boost/blob/master/index.py
https://polyhaven.com/textures @gentle flint
no
Wow, it's really awesome! 😄
hi!
hi
How are you doing?
pretty good 🙂 first day here
I've used a little python for college, but im mostly a webdeveloper
how about you?
@wind raptor hey bro
yea, php and js mostly
@wind raptor so how are you?
Nice, what kind of applications do you build?
im also good
so are you seeing the chat
?
ohhk cause otherwise i had to tag you all ther time
can you tell me one thing
so recently in came into university 1st year
and they have statrted with teaching me c language
*started
and i am finding difficult to cope up with it
hola lucas jaja
thats the reason i am finding difficult because i spend almost all my time on discord
yess
there is so much distratction
because of discord i spend my time talkin to friends
here
ohh thats great
yeah, the pandemic has made me lose focus too easily
so can you suggest me how to make my focus
cause i truly want to get a good placment
ohh forest i know about that app
and do you use vs code
@wind raptor send me the server
send me other servers
thank you
btw can you send me also the servers in which youb are in
only the programming related servers in which you are there
@wind raptor i'll brb in 5mins but please dm me the servers
I work in a hospital, and im building mostly administrative apps, like one that management uses to ask human resources for new personnel, or one they can use to request for fixes with billings
but lately i been making too many new projects lol
outside work
and learning solidity with a friend
yeah, im making a card game in unity, some react tools for a game named axie infinity
and one in python
do you program outside work?
do you think i could get voice chat if i tag mods?
yep, just entered
yeah, its sad that because people spam and scam we cant have nice things XD
brb
well, food arrived guys, nice writing to you 😄
food is good!
Hi
awesome, i admire hospital work. One day maybe will do soft eng. for medical field
what about pharmacy 👀
@grand acorn we can hear you talking
oops
guys can anyone join the voice chats?
we're in here
i mean the call
@errant nova hi!
hey there
what is your pfp btw
I'm a wood rat in the Chinese horoscope.
a hwat
I was born in a rat year.
I'd have a slight giggle if you were a wood horse.
No mention of what kind of metal, I suppose. Iron, I expect, would be the catch-all.
"...Look at my horse, my horse is amazing..."
shush
I took a nap
you been shushed
that's the real question why is sneiv awake
@errant nova early bird or??
I'm never awake too early nor too late
Here's a memorable jingle for that handy new emergency number...
Catch up with The IT Crowd on 4oD: http://www.channel4.com/programmes/the-it-crowd
a few episodes
i liked IT crowd, got a lil much at times but was enjoyable
I watched this this weekend https://www.netflix.com/us/title/81040344?s=i&trkid=13747225&vlang=en&clip=81499052
like battle royale, lord of the flies meets liar game
oh yeah saw trailer
I also watched dp and it's really good but dunno if it's as relatable a watch to non-koreans https://www.netflix.com/title/81280917
pep8
foo = long_function_name(var_one, var_two,
var_three, var_four)
@somber heath Is it okay to resolve a conversation in the PR review if you think its done and nothing needs to said more, or you wait for the reviewer to close the conversation
SyntaxError: invalid syntax
File "C:\Users\anime\AppData\Local\Citra\nightly-mingw\scripting\citrarng.py", line 2, in <module>
File "<stdin>", line 1
File "C:\Users\anime\AppData\Local\Citra\nightly-mingw\scripting\citrarng.py", line 2, in <module>
IndentationError: unexpected indentfrom PySide6.QtWidgets import QApplicationFile "<stdin>", line 1
from PySide6.QtWidgets import QApplication
IndentationError: unexpected indentModuleNotFoundError: No module named 'PySide6'
File "<stdin>", line 1
ModuleNotFoundError: No module named 'PySide6'
^
SyntaxError: invalid syntax
I've never been involved in such. I don't know the protocol. You could ask. "Do you mind if I close this PR at this time, or do you have anything else to add on this point?" Wait...a few days, a week, whatever, I don't know, then close it.
Python 3.9.7 (tags/v3.9.7:1016ef3, Aug 30 2021, 20:19:38) [MSC v.1929 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
pip install pyside6 user
File "<stdin>", line 1
pip install pyside6 user
^
SyntaxError: invalid syntax
pip install PySide6
Requirement already satisfied: pyside6 in c:\users\anime\appdata\local\packages\pythonsoftwarefoundation.python.3.9_qbz5n2kfra8p0\localcache\local-packages\python39\site-packages (6.1.3)
Requirement already satisfied: shiboken6==6.1.3 in c:\users\anime\appdata\local\packages\pythonsoftwarefoundation.python.3.9_qbz5n2kfra8p0\localcache\local-packages\python39\site-packages (from pyside6) (6.1.3)
WARNING: You are using pip version 21.2.3; however, version 21.2.4 is available.
You should consider upgrading via the 'C:\Users\anime\AppData\Local\Microsoft\WindowsApps\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\python.exe -m pip install --upgrade pip' command.
!code
Here's how to format Python code on Discord:
```py
print('Hello world!')
```
These are backticks, not quotes. Check this out if you can't find the backtick key.
Requirement already satisfied: shiboken6==6.1.3 in c:\users\anime\appdata\local\packages\pythonsoftwarefoundation.python.3.9_qbz5n2kfra8p0\localcache\local-packages\python39\site-packages (from pyside6) (6.1.3)
WARNING: You are using pip version 21.2.3; however, version 21.2.4 is available.
You should consider upgrading via the 'C:\Users\anime\AppData\Local\Microsoft\WindowsApps\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\python.exe -m pip install --upgrade pip' command.```
from PySide6.QtWidgets import QApplication
have you guys ever heard the banger song "xue hua piao piao"
or wait its actual name is "Yi jian mei"
lol
its really good
anyways i have class now cya
im need do a homework but i dont know anything about it
the tabulate dont work on my python
im already try the pip intall tabulate on cmd
!pypi tabulate
!pypi PySide6
Are you also running idle 3.9?
ye
??
What happens when you type that.
on cmd ?
Yes.
!e
import sys
print(sys.path)
@errant nova :white_check_mark: Your eval job has completed with return code 0.
['', '/snekbox/user_base/lib/python3.9/site-packages', '/usr/local/lib/python39.zip', '/usr/local/lib/python3.9', '/usr/local/lib/python3.9/lib-dynload']
@silent mortar It's hacky and a workaround and best avoided, but try...
>>>import pip
>>>pip.main(['install', 'tabulate'])```
In IDLE
yes, it works
thanks
You may have installed Python twice and in different locations or something strange.
What you did should have worked.
So it's importing tabulate now?
@somber heath I'm sad 😦
they muted me for 3 days 😦
😦
I was not spamming my mic was just not working 😦
you were literally spamming, pinging admins and so on
they have a log of the messages even if u delete em :p
why are you printing a number you just digit
:D.
hello @wind raptor
😄
How's you coding goin?
You workin on any projects?
Yooo
Seems fun
i'll play itt
You a proo
me here who is learning Python
@shrewd lava Hello
byeeeeeeee
@wind raptor yes
They muted me heheh
for spammin and stuff
Okay bai i gtg not gonna disturb on your project 🙂
only slightly
no clicking
after click cantget relief from bubble hoof
i mean like thats a normal thing
peeling the skin off hoofs is kinda nessecary
btw hoofs are like human hair
so those r just extensions from the limbs
and they r desensitized
LET'S GOO
the length cause more spining which cause more distance travel to slowdown.
Tonguesten.
Except in case when weight is too small
a sten gun for tongues
when you speed up small projectile it get slowed down easy
like, tongue-operated
green tips :D
at least no blacktips
and you cannot egaly use cutoff lead on the bullets.
oh fireworks :D
oh its perfect to fire a faulty fireworks in Kansas and minesota in the fields of wheat. :)
Of wheat that is ready to be collected. :D
Burn the wheat
Burn it! Burn it!
mr hemlock is back
:)
or Iowa
4th of july start some field fires.
In Kansas you'd at least get popcorn from that
its think globally and do things locally.
Ah okay
I couldn't remember
It is a great way to think of things for sure
What's wrong with it?
Course materials are unintuitive
I can teach myself Rust but I can't teach myself grouped distributions
Rust is great though
I wish I was as good in other subject as I am in computer science, i'm like a one trick pony
I can't even bother with my CS subject
I'm honestly just too tired
No amount of sleep can cure mental exhaustion
I'd rather not adopt unhealthy coping mechanisms
I just hang out with friends when im mentally exhausted
Ye, honestly social interaction works really nicely
I have a non-existent friend group
Sports are good as well
I only have my gf
going to have something to do today, so I need to make sure my headset is charged
easyocr
ah [boink!] it
@lethal compass i am from korea/US
i promise i am fluent in english lmao
brain's not awake yet
Urinals...for men.
I have no idea what you're talking about
@flint prairie If you're wondering why you can't talk, check out the #voice-verification channel
New dating platform: Githusb
Sorry?
why
Can you explain what you mean by that?
:incoming_envelope: :ok_hand: applied mute to @flint prairie until <t:1632151241:f> (9 minutes and 59 seconds) (reason: duplicates rule: sent 4 duplicated messages in 10s).
:incoming_envelope: :ok_hand: pardoned infraction mute for @flint prairie.
Just be careful about spamming messages
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
^
so yes or no
The Bangles - Manic Monday @restive geyser
oooo what genre 😮
idk
lol it's ok. i'll have a listen
it's old-ish is all i know
The response was given in the negative. Nothing to delegate. Nothing more to be figured out.

oooooooooo
lol because ny takes all of the monies
both state and city
yes!
"So for a $1000 refund you would get around $2.50 of interest for every month your refund is delayed beyond April 15th. ... Note – there is a long-standing 45-day rule provision which requires the IRS to add interest to refunds on timely-filed refund claims that are issued more than 45 days after the return due date."
i'm not fact checking but 1st google hit
Zonk.
what emacs theme is that? @zenith radish
he made it himself
@whole bear It's my custom thing
I'd rather live in FP land
Do I open source it?
lol pots and pans
https://github.com/gitautas/.doom.d/blob/master/themes/magic-girl-theme.el here's my emacs theme
appreciate that
lol
thanks
see image
this is also specifically for doom
you might need to port it to just emacs
but the colors are there
Literally sounded like a cartoon sound effect 😄
it's based on base16 so should be quite easy
i grab the hexes etc
i was thinking the same thing! lolololol
ahh cool then
yeet
care provider, not me
roll the refund forward. apply as a credit for next year
Ah, don't worry about it.
ah's … donut worries bout dat
*giggle*
Why am I remembering Weird Al's White and Nerdy ?
js is kinda op
Relative imports in Node.js is a lot more flexible
Python's imports are rigid w/o actually being properly rigid
sys.path go brr
And then I recall Weird Al's pardoy of "Radioactive" titled "Inactive"
Python and JavaScript are both useful.
Moreso if you set up something so they can multitask with what each do best.
mb accidentally deleted
I'm interested @zenith radish
median is middle
i get your point
cute anime girls
^
nyyaaaaaaa~~
but tbh would you recommnend python or js to someone who knows nothing about programming?
considering the fact that node is something else
that's a lot
well pip handles things better imo
150$ per year, over 50 years plus 6% interest is 48,926$
I recommend Python myself since a lot of material for JavaScript is extremely outdated.
Read: on* in HTML tags / var / jQuery / etc.
No, not really
you might be right, imo the only thing keeping js relevant are its libraries
next react vue etc are kinda huge
The web is keeping JS alive
web browsers & old websites *
not only web
you ever used tensorflow with js?
how does it compare to TS with python?
Remove JS from web browsers, over 99% of the internet stops working properly.
Tensorflow for JS is a fork of Python's
Tensorflow.js is meh-ish
Last I checked at least
lemme grab link about that
using it with python makes more sense ig
I can't say extensions is Node's strongest suite
Context … https://youtu.be/r428O_CMcpI
Using a brand new algorithm, QLearning, I teach an AI to drive.
Huge thanks to Brilliant for sponsoring this video, check them out at https://brilliant.org/codebullet
Art created by @Dachi.art https://www.instagram.com/dachi.art
Twitter: https://twitter.com/code_bullet
Patreon: https://www.patreon.com/CodeBullet
Discord: https://discord.gg/UZD...
saw that, kinda cracked
*sigh* who is now trying to friend me this time?
xD
At leask ask before you try to friend me
Because Sizzle is more fun
that reminds me of food
Fair
thats pretty cool
T
lol
hi
@alpine path how can i speak
ok
👋
Not the site I was thinking, but a good starting point. https://www.w3.org/WAI/fundamentals/accessibility-intro/
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
o h
lol
breh thanks lol XD
l e m o n
🍋
yeh
I use a drawing tablet and my pc
Huion
thanks ><

Game dev
also I dont think ill be able to speak in chat lol. wtf are these rules?! XD
boi no
i cant change that shit XD
cuz deviant art be dumb
!VOICE
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
that one is my old name
boi I read the verification requirements and i have to have 50 messages XD
T^T
I joined months ago XD
i just havent been active
He only has 25 messages as of [now]
boi im trying to navigate this server but holy fuck what are these channels?! XD
ill comment in a sec. I just wanna see if I can get voice privileges , and im smooth brain XD
f
these rules are dumb XD
oh well
anyway
what were you asking again? >>'
yeh yeh
ye
here
i see
hmm
well you like what you like and I think that fine. but I think that one, and the ones you also sent before are a bit too simple in my opinion.
now this one, i think looks nice. You got a style going there that I think can be pulled off. The Dark blue and deep orange has a striking look to it that I think works. I'll probably look better if you start putting actual info in there, and avoid cluttering it with that much text like you did in the place holder text.
also sorry, im a slow typer XD
hmmm. I see.
anyway that's kinda my opinion. I'm less of a web designer and more of a character artist. so I kinda know what im talking about kinda dont lol XD
C A T


boi the only reason im here is cuz the C# discord server is ded as hell XDD
im in game dev
student
meh i just wanna hang out with programmers cuz I like talking to people that are smarter then me XD
unity
and
just general learning
.
i maketh the joke I know that lol
im still dumb tho

uhhh. i dont know
if i do
i might. or might not.
i confuse myself
because. "I can't decide whether im smart or as dense as a rock~"
Provided to YouTube by Universal Music Group
I Can't Decide · Scissor Sisters
Ta Dah
℗ 2006 Polydor Ltd. (UK)
Released on: 2006-01-01
Producer, Studio Personnel, Co- Mixer: Scissor Sisters
Studio Personnel, Recording Engineer, Associated Performer, Bass Guitar, Keyboards, Additional Vocals: babydaddy
Associated Performer, Piano: J.J ...
breh I havent even bothered to check my IQ lol
yeah?
its always next to me XD
boi I already got college and projects up the ass XD
makes sense XD
omg i use XD too much
but yeah. I kinda just wanna do my own thing rn.
y u p
always XD
idk
maybe just some practice, or some doodle. or maybe I just wanna vibe after being out for 12 hours

yes
outside
the place humans call... society
the land of moose and maple syrup
igloos and lumberjacks
canada
hec
m o i s t
ye
yes
XD
well. mostly game Art.
3D modeling, sculpting, rigging, animation, VFX etc.
yeh there is
boi I just started learning how to use it and I love it already XD
also fuck Maya
it can suck a rock

no
you can script in blender
right?
boi Maya feels jank as fuck
idk. I'd use both really, especially since I can navigate Maya pretty well. But I do prefer blender between the two.
mostly just the way it feels to use it.
idk how to explain it >>'
also I can speak now one sec
Hey guys
class Woman(object):
def __init__(self):
super().__init__()
I didn't notice you joining. Had I, I expect I would have rejoined. People have been complaining of vc membership images being glitchy.
Though I couldn't say if this was that.
People don't see people who are in the chat and maybe see people who aren't, like maybe some kind of cache updating issue or something.
Here are the top 5 results:
Sere
homophones
hire
higher
Hm... on top of the Haleakala Mountain in Hawaii
I have some amazing pictures from there
did you take this?
WOW
so you are a photographer and a coder :).
:).
Opal your voice sounds like one of those british text to speech things
Have you mastered in Python?
Ohh
What's your age? (yeah i'm weird)
@somber heath I guess i have to restart discord
13
YOO
nicee
@somber heath You have a self made up accent :).
opal
do you play any games?
@forest zodiac i know ur nammmeee :)))
@forest zodiac BRO YOUR SPOIFY NAMEE
LMAO
i deleted it
@young garden bro you are not that audible ig
bai
@forest zodiac im from india
lmao
yeah
whaa
no
you are
so where are you from?
pakistan?
nepal>
yoo niceee
indian
i visited nepal lmao
Hi @final swift
hello "the paisa"
freak delete that rn
DELETE
OR YOU WILL BE MUTED
BRO
Lmao wait
click on everyone
lmfao
rippp
afk
How are they?
What were they talking about before?
What do you do for fun?
xDDDD
jajajaja
marks = [['john',80, 90, 76, 82],['katy', 50, 55, 70, 65],['sydney',80,
72, 88, 90]]
marks_c = {}
for i in range(len(marks)):
name = marks[i][0]
l = []
for j in range(2,len(marks[i])):
print(marks[j][i])
print(marks_c)
print(marks_c)
gys this program is not running
Can you guys help me
@somber heath
Let's have a look.
Maybe grab a help channel. #❓|how-to-get-help
How to grab a channel?
heheh
it's humanly not possible
hhehe
lmao you gave up @somber heath
heheh
welp seems like opmanbros likes to irritate opal
.help
EasterFacts
.eggfact
Get easter egg facts.
EasterRiddle
.riddle
Gives a random riddle, then provides 2 hints at certain intervals before revealing the answer.
EggDecorating
.eggdecorate [colours...]
Picks a random egg design and decorates it using the given colours.
EggheadQuiz
.eggquiz
Gives a random quiz question, waits 30 seconds and then outputs the answer.
Emojis
.emoji <emoji>
A group of commands related to emojis.
hehe a lot
@somber heath
hello
🙂
hi hero
does not meet voice requirements
lol
wait
@tight pewter You are from india
hehhe
yea
UwU
ok guess between these (leme type)
in codin
be right back
recursion
if(){function()}
if(){function()}
if(){function()
}
vs
if(){
while(){
if(){
}else if(){
}else{}
nice ig
i'm asking which will take more time
which langs do you know?
1st one will take more time for meh
just basics of few c,cpp,java etc
cpp?
c++
kinda basics
What's your age? (yeah im weird)
21
nice
and i'm learning python
noice
noice
stop with the noice lmao
lol
0
2018
yea not consistent
cool
:3 not sure if verify bot working
idek
@uneven yarrow yea good
😦
tell me something about some of your cool projects
like chances of getting hacked and stuff
what is time complexity?
which one is faster
