#voice-chat-text-0
1 messages Β· Page 841 of 1
damn bro
God also created cancer
wtf
What
I am not agressive
you're literally the ones recommending genocide?!
ΨΉΨ΅ΩΨ± ΨΉΨ¨ΩΨ―
HOW
CAN
I BE MORE AGRESSIVE than that???
...
you're arguing for genocide
ye
s
No
I am muted
I can...
where are you from?
@true patio I think he is manually muted
server mute
Fisher
I was muted
is corona muted?
this is what I mean
!mute 314127529625780225 2d I am seeing a lot of inappropriate and aggressive language from you right now. You have been voice banned due to this trolly behavior before. Please take some time to reread our rules before talking here again.
:incoming_envelope: :ok_hand: applied mute to @sweet wraith until 2021-05-31 22:02 (1 day and 23 hours).
Appreciated lol
why do u ask
oh my name is not arabian
@true patio wtf English broπ₯²
wdym?
so good
Yeah lol, just watch a lot of movies and you'll get better lol
raise InvalidArgument('Invalid permissions given to keyword arguments.')
discord.errors.InvalidArgument: Invalid permissions given to keyword arguments.
The above exception was the direct cause of the following exception:
@client.command(description="Gives given user Server Helper role.")
@commands.has_permissions(administrator=True)
async def sh(ctx, member: discord.Member):
guild = ctx.guild
serverhelperRole = discord.utils.get(guild.roles, name='Server Helper')
if not serverhelperRole:
serverhelperRole = await guild.create_role(name='Server Helper')
for channel in guild.channels:
await channel.set_permissions(serverhelperRole, speak=True, send_messages=True, read_message_history=True,
manage_channels=True, create_invite=True, read_messages=True,
view_channels=True, view_audit_log=True, change_nickname=True,
add_reactions=True, use_external_emoji=True, manage_messages=True,
connect=True,
video=True, use_voice_activity=True)
await member.add_roles(serverhelperRole)
await ctx.send(f"I've given {member.mention} Server Helper.")
await member.send(f"You were given Server Helper in {guild.name} do good with it or else.")```
@whole bear Can you send me on which line it said the error was
@sweet lantern Man we can hear our echo on your side, would appreciate if you mute until then lol
my dad wanna know why this @
its used to measure kg of cows
here
its not trolling
"arrouba do boi~
The at sign, @, is normally read aloud as "at"; it is also commonly called the at symbol, commercial at or address sign. It is used as an accounting and invoice abbreviation meaning "at a rate of" (e.g. 7 widgets @ Β£2 per widget = Β£14), but it is now seen more widely in email addresses and social media platform handles.
The absence of a single E...
In computing, floating-point arithmetic (FP) is arithmetic using formulaic representation of real numbers as an approximation to support a trade-off between range and precision. For this reason, floating-point computation is often used in systems with very small and very large real numbers that require fast processing times. In general, a floati...
Procreating Pro Creating
π
hello @whole bear
Ello
@whole bear Stop "procrastinating" and go do your project
lol, beyond my abilities
@paper tendon its possible that cpython notices what you're doing and optimizes it out, walking pointers (in python) might be slower then cypthon doing it in C
class Solution:
def solve(self, s):
c, e = 0, len(s)-1
while c<len(s)//2:
if not s[c] == s[e]:
return False
c+=1
e-=1
return True
idk the internals though, it seems like a silly thing to optimize though
this is faster?
ok thats what i thought
optimizing python code for speed
oh neat its also n*(n+1)/2
oh wait no slightly different
is it just n^2?
2n*n/2 = n^2 
wow thats really cool!
@whole bear I know you from the math discord!
:D
lurking in vc bc I can't speak yet .-.
I joined awhile ago with friends for operation rick (drawing rick all over #828316147657080835)
ah i see π
bye π
Baiihee
k
Hey!
Yes
Yes
Lol
@gentle flint are you eating?
Its raining here. Lol
bri'ish
Lmfao
Yes
Lmfao
Lmfao
WaR tHUndEr
Exactly
PTW game
DUDE
JUST
Play sim battles
Best way to get silver lions
Wot
Didnt saw
....
kden
Saw
That
this dude needs to hurry up
https://github.com/python-pillow/Pillow/pull/5515
random smoke
it's probably a volcano about to erupt
Hm
LMFAO
I have seen an adult man
Almost drown
Yep
Lol
kemal forms the macedonian underwater special forces
F
Lunch
l a u n c h
Yes lol
Spams pull requests
saw
The what?@flat sentinel
OH
Wait
What
Send it
Hmmmmm
Hmmmm
..
How
Does an IT teacher
Not know how to print
Wtf
yes, cursed.
When kemal has a stroke
Yep...
Bru
....
Ehehem
we dont talk bout that
Lmfao
Yes
Exactly
Tf
didnt saw
Saw that time lol
Yes
Yep
That happened
...
How can a rock bleed?
Wtf lmfao
that's called a waterfall
......
glue intensifies
Yes, ph proceeds to sniff
this stuff isn't actually sniffable
Hm
Snortable?
not like superglue
Even licking it would be a challenge
this stuff is thicker than honey
hmm
saw
damn it
Bre
Saw
wat
.
Saw
Both
Bruh
kden
Ima go watch yt cids
Vids
CIDs
SHURKAOCNKWLKALXPWLA
Central Investigation Departments
ti
how to voice verify?
Voice verification
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@whole bear
ty
@jaunty pendant come back
π
for thing in range(50):
subprocess.call(["adb shell click pos x, y"])
Voice verification
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Backgammon is one of the oldest known board games. Its history can be traced back nearly 5,000 years to archaeological discoveries in Mesopotamia, modern-day Iraq. It is a two-player game where each player has fifteen pieces (checkers or men) that move between twenty-four triangles (points) according to the roll of two dice. The objective of the...
@flat sentinel vc?
o, u plae minecraft
class Solution:
def solve(self, root, val):
if not root or root.val==val:
return root
if root.val < val:
return self.solve(root.right, val)
else:
return self.solve(root.left, val)
Traceback (most recent call last):
File "/box/main.py", line 163, in <module>
sys.stdout.write(json.dumps(result, allow_nan=False))
File "/usr/local/python-3.9.0/lib/python3.9/json/init.py", line 234, in dumps
return cls(
File "/usr/local/python-3.9.0/lib/python3.9/json/encoder.py", line 199, in encode
chunks = self.iterencode(o, _one_shot=True)
File "/usr/local/python-3.9.0/lib/python3.9/json/encoder.py", line 257, in iterencode
return _iterencode(o, 0)
File "/usr/local/python-3.9.0/lib/python3.9/json/encoder.py", line 179, in default
raise TypeError(f'Object of type {o.class.name} '
TypeError: Object of type Tree is not JSON serializable
Yo
@somber heath hello
Hello.
how you doing?
Good.
do wanna play chess?
(x
The pvp func is down until beginning next week. You can play against one of the AI's
that will help my research
Alr
make sure to register first, the data (results of the game) are more relevant if you have an account
x)
btw, do you play chess?
would you like to play a game?
Yes, let me send you a link to play
Join the challenge or watch the game here.
alr
lol
@paper galesame, been a while since i played chess tbh
5 moves
I mean
LOL
Is the chess game finished?
nah
F
what does F mean ?
u can resign if u want to
respect/rip/fu*k
What is your rating? @sick cloud
Wow.
maybe a lil higher
1601
xD.
Easy. Lets play!
i lost 3 times in a row
Join the challenge or watch the game here.
Dmitry represents me on aib.jorisg.be
i coded his intelligence
so hes basically me
try him xd
GG
GG ; (
or just make a chat dedicated to chess
Yes.
wanna play another one?
Sure.
Join the challenge or watch the game here.
im gonna watch
Join the challenge or watch the game here.
nope
Nope π₯΄
btw i beat one of the people in the vc 3 times in row ;)
we had a tie maybe
good 4 u
wanna rematch?
lol
and no fun playing a game whose result is already forecasted
ββββββββββββββββββββββ
βββββββββββββββββββββ
ββββββββββββββββββββββ
ββββββββββββββββββββββ
damn
u never know the result tho
helo
hmmm, what else is there? 
tik tac toe?
i did make an exact minecraft clone wih js, which took me about the whole year
wa- u made a minecraft clone
i think and dont think that it was worth it as i made it private because the code got stolen
i think thats impressive
but idk if that really is
um okay, hats
yea and exact minecraft clone
you have every single mincrafe feature or gamplay experience or whatever its called
it feels exactly like minceraft
the minecraft creators stole it?
thats sad
i would have sued them if they do so, but no some random person on github did that
o, worse
i feel sorry for u
its okay friend
but this statement will kill you, i made it with JS, and bundled it with electron which uses chromium. after running npm run it was freaking 1.7gb for some reason
haah, debian gang online
Hey @modest willow!
It looks like you tried to attach file type(s) that we do not allow (.zip). We currently allow the following file types: .gif, .jpg, .jpeg, .mov, .mp4, .mpg, .png, .mp3, .wav, .ogg, .webm, .webp, .flac, .m4a.
Feel free to ask in #community-meta if you think this is a mistake.
you sound like a nice tutor @hallow warren i like your voice
what lol
you spectating Jag ?
damn
what has this chat become
things which would probably never happen to me
hmmm'
4d game...
we dont even know whether 4d exists
damn
woow
that would break my pc apart
guido might wish to patent it even if you invented itπ while giving you no credits
my pc is very powerful tho extreme vr capable, but 4d is jus too much, its like number / 0
dammnn,
btw i have a question for u
what is 0 to the power of 0?
some big words
syllogistic forms
been a while since i watched that movie tbh
@buoyant topaz nah, this server was primarily made for coding
but u can ask the @rapid crown
by dming it
python3 -m venv myproject-env
waiting for python6.9 to appear
omw
@jovial meadowwhich one?
do u have
@paper tendon pretending to study
and you?
thx
@gentle flint how did you get the video role?
mhm
python27 -m venv myproject-env
Hello Oof π
bro what does linking the linking the daklfjskldajflwkeajfae
@faint ermine extension pack has been installed
yes, but it can obviously only be viewed in 3d
oh cool
now restart it, there should be a python interpreter selection when you open a python file
you can select your python version now
i would like to make a new folder for it with a new file
right, then create a folder in your explorer, right click and open vs code here
that is done
right, you can add files in vscode now, and start coding
igh
!e
def x():
return "hi"
print("with parentheses:")
print(x())
print("without parentheses:")
print(x)
@gentle flint :white_check_mark: Your eval job has completed with return code 0.
001 | with parentheses:
002 | hi
003 | without parentheses:
004 | <function x at 0x7fc5e1df58b0>
@terse needle
time to search for tutorials of how to make a discord bot
bru
well, i do know the basic stuff
@flat sentinel why do you have numbers in your function names
A tutorial on how to use discord.py to create your own Discord bot in Python, written to fix the flaws of many other popular tutorials.
async def get_quote():
response = requests.get("https://zenquotes.io/api/random")
json_data = json.loads(response.text)
quote = json_data[0]["q"] + "-" + json_data[0]["a"]
return(get_quote())
@do_twice
def say_whee():
print("Whee!")
is the same as
def say_whee():
print("Whee!")
say_whee = do_twice(say_whee)
where the first one uses decorator syntax
if message.content.startswith('$inspire'):
quote = get_quote()
await message.channel.send(quote)
Live Share
await coro(*args, **kwargs)
RuntimeWarning: Enable tracemalloc to get the object allocation traceback```
async def get_quote():
await (get_quote())
response = requests.get("https://zenquotes.io/api/random")
json_data = json.loads(response.text)
quote = json_data[0]["q"] + "-" + json_data[0]["a"]
return(get_quote())
if message.content.startswith('$inspire'):
quote = get_quote()
await message.channel.send(quote)
Enable tracemalloc to get the object allocation traceback
how do you stop being muted
Voice verification
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
ok thanks
now filip stay up till 3 am learning about discord.py
k
lol
Learn how to code a Discord bot using Python and host it for free in the cloud using Repl.it. Along the way, you will learn to use Repl.it's built-in database and create a Discord bot that uses webhooks to connect with GitHub.
Need help with this tutorial? You can ask questions here: https://forum.freecodecamp.org/
This course was developed by...
this and
In this video, we go over how to setup a discord bot in python using discord.py v1.0.1 (rewrite).
If you have any suggestions for future videos, leave it in the comments below.
GITHUB: https://github.com/Rapptz/discord.py
DOCUMENTATION: https://discordpy.readthedocs.io/en/latest/
OFFICIAL DISCORD.PY SERVER: https://discord.gg/r3sSKJJ
JOIN MY ...
How to host your discord bot for free using heroku. This tutorial shows you how to host your python bot for free using heroku services. We simply need to setup a few things to heroku, upload our code and turn the bot on!
Text-Based Tutorial: http://techwithtim.net/tutorials/discord-py/hosting-a-discord-bot-for-free
Heroku: https://heroku.com
...
just dont do the last one
i want to die after that
i did not make it
just don't do hosting in general yet
and you wont
get it working on your pc
okae
i see
heroku is kinda bad tbf
g
Alr
300 sarmi
Aha
I see
Right
!e
name = 'Tushar'
age = 23
print(f"Hello, My name is {name} and I'm {age} years old.")
@gentle flint :white_check_mark: Your eval job has completed with return code 0.
Hello, My name is Tushar and I'm 23 years old.
quote = f"{json_data[0]['q']} \n\n {json_data[0]['a']}"
!e
print(f"two plus two can be written as 2+2 which is {2+2}")
@gentle flint :white_check_mark: Your eval job has completed with return code 0.
two plus two can be written as 2+2 which is 4
quote=(embed = Embed(color=0x4a3d9a)
embed.add_field(name="Qouete", quote=(f"{json_data[0]['q']} \n\n **{json_data[0]['a']}**"), inline=False))```
Traceback (most recent call last):
File "C:\Users\kemal\AppData\Roaming\Python\Python38\site-packages\discord\client.py", line 343, in _run_event
await coro(*args, **kwargs)
File "c:\Users\kemal\Documents\vs code pytohn\discord bot your mom\botcode.py", line 103, in on_message
quote = await get_quote_embed()
File "c:\Users\kemal\Documents\vs code pytohn\discord bot your mom\botcode.py", line 32, in get_quote_embed
embed.add_field(name="Quote", quote=(f"{json_data[0]['q']} \n\n {json_data[0]['a']}"))
TypeError: add_field() got an unexpected keyword argument 'quote'```
<discord.embeds.Embed object at 0x0000028BF8F9C550>```
if message.content.startswith('$fucu'):
quote = await get_quote_embed()
await message.channel.send(quote)
funny enough its 1, but the thing is that if you keep multiplying 0 bt infinite 0s its 0. so why 0 power 0 is 1 , it must be 0 ad the same must happen to other numbers i think
Zero to the power of zero, denoted by 00, is a mathematical expression with no agreed-upon value. The most common possibilities are 1 or leaving the expression undefined, with justifications existing for each, depending on context.
In algebra and combinatorics, the generally agreed upon value is 00 = 1, whereas in mathematical analysis, the expr...
it's actually a good question
but 3 to the power of 0 is 1
....
haha, thanks
i know but the same stupid answer from me, you are not even multiplying 3 by itself once
so how it can be 1
u divide 3 by itself
Β―_(γ)_/Β―
so let's take 3 as an example
3 = 3^1 right
thats dumb
ye
so if you divide 3^1 by 3^1 you get 1
(3^1)/(3^1) = 1
(3^1)/(3^1) can be rewritten as (3^1) * (3^-1)
because 1/(a^b) is a^(-b)
so (3^1) * (3^(-1)) = 1
x^a * x*b = x^(a+b)
so (3^1) * (3^(-1)) can be rewritten as 3^(1-1)
hence 3^(1-1) = 1
1-1 is 0
so 3^0 = 1
comprende?
that's why at least any non-zero number to the power of zero is one
in short:
for any non-zero number x, x^0 = 1 because
(x^1)/(x^1) = 1
x^(1-1) = 1
x^0 = 1
@whole bear
imma write that down
sure
okay i already exploded
the only problem is with 0^0
'cuz then you get
0/0
which is a zero division
that's why some people say that 0^0 is undefined
like my calculator
well now you know why
this should not be too complicated
for any non-zero number x, x^0 = 1 because
(x^1)/(x^1) = 1
x^(1-1) = 1
x^0 = 1
Damnnn, we have the exact same calculator
lol
i have a better one btw, my computer
the calculator i prefer to use:
probably true
6 * 9 + 6 + 9 = 9 * 6 + 9 + 6
lol
i dont want to do any maths rn
btw 6 * 9 + 6 + 9 = 69
you're wrong its syxti nyne
you forgot ti
π ))
hello @plain flicker
i do like your tag number
im a beginner so need some help lmao
ask it
gimme 2 mins ill brb
alr
@paper gale soo, do you want a rematch?
same, i didn't get a good night sleep ngl
Join the challenge or watch the game here.
I went sleep around 5 am.
lol i went to sleep around 00:00
abc
def
wtf.
@fickle heathtf

yo
yo Jag





kinda busy
oh aight lol
Yeah I'm getting shit on right now.
@paper tendonhalo
Be right back I have to go.
yes
nvm
Rip to the people who have school
I have summer holidays.
3 months no school.
That was a good match @sick cloud
i have an exam tmr
Goodluck.
thx
helo
@gentle flintbtw, i made custom status for my self ;)
oh nice
light theme
but tbf, all it can do is give me a cool status
that's kinda beside the point
I'm breaking into your house but all I want to do is use the toilet
That's kinda besides the point
π
\π

the question is,
why would you sign commits?
some gh repos only allow you to commit signed commits
hmm π
so I got into the habit of doing it
for me it boils down to adding the -S flag on all my commits
so it's not really extra work
git commit -S -am instead of git commit -am
normally, i use like built in ui in vscode or smth
I dislike builtin uis
but i do use the gui sometimes
they work beautifully until they don't
and then you end up having to use to command line anyway
ye the command line is pog
LOL
quote_embed
notepad
YO
notpade ++
-die
press ctrl+c
ctrl + c
then close the cmd
ah ok, thanks
The Gerousia (Ξ³Ξ΅ΟΞΏΟ ΟΞ―Ξ±) was the Spartan council of elders, which was made up of men over the age of sixty. It was created by the Spartan lawgiver Lycurgus in the seventh century BC, in his Great Rhetra ("Great Pronouncement"). According to Lycurgus' biographer Plutarch, the creation of the Gerousia was the first significant constitutional innova...
async def get_quote_embed():
response = requests.get("https://zenquotes.io/api/random")
json_data = json.loads(response.text)
quote_embed= (f"{json_data[0]['q']} {json_data[0]['a']}")
print (quote_embed)
embed = quote_embed(color=0x4a3d9a)
embed.add_field(name="Quote", value = f"{json_data[0]['q']} {json_data[0]['a']}")
print(quote_embed)
return(embed)
if message.content.startswith('$comad'):
quote = await get_quote_embed()
await message.channel.send(quote)
"we ran into a problem, reconnecting" @flat sentinel
english only please.
it's transliterated english
lol its voice related
Thank you for correcting me.
Yes, they don't.
I have Russian classes in school.
As I live near Russia.
e
for the past 20 mins
f
A parody of 'You Give Love a Bad Name' - about hypermedia APIs. No, really.
Voice verification
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!voiceverify
hi
System.out.println("Hello Meow");
mo
@uneven yarrow https://en.wikipedia.org/wiki/Jacob_ben_Asher
also known as the Tur
brb
@gentle flint it still no workkkkkkkkk
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
if you put
import logging
logging.basicConfig(level=logging.INFO)
at the top of your code it'll print the errors which discord.py gets
oke
WARNING:discord.client:PyNaCl is not installed, voice will NOT be supported
INFO:discord.client:logging in using static token
INFO:discord.gateway:Shard ID None has sent the IDENTIFY payload.
INFO:discord.gateway:Shard ID None has connected to Gateway: ["gateway-prd-main-xsdt",{"micros":64486,"calls":["discord-sessions-green-prd-2-9",{"micros":61787,"calls":["start_session",{"micros":59984,"calls":["api-prd-main-v1rc",{"micros":56969,"calls":["get_user",{"micros":3397},"add_authorized_ip",{"micros":2965},"get_guilds",{"micros":7429},"coros_wait",{"micros":0}]}]},"guilds_connect",{"micros":2,"calls":[]},"presence_connect",{"micros":1013,"calls":[]}]}]}] (Session ID: 07030551a42ad612e69cf0f52f928b36).
anything else?
nope
try running a command
it, doesnt, want, to, print, when, a, user, joins, or, leaves.
i
d i d
@client.event
async def on_member_join(member):
print(f"{member} has joined a server.")
@client.event
async def on_member_remove(member):
print(f"{member} has left a server.")
wait
there
can I see all your code
import logging
logging.basicConfig(level=logging.INFO)
import discord, os
from discord.ext import commands
from discord.flags import Intents
Intents = discord.Intents.default()
Intents.members = True
client = commands.Bot(command_prefix = "!")
@client.event
async def on_ready():
print("Im ready!")
@client.event
async def on_message(message):
print("A message has been sent!")
@client.event
async def on_member_join(member):
print(f"{member} has joined a server.")
@client.event
async def on_member_remove(member):
print(f"{member} has left a server.")
client.run(os.getenv("TOKEN"))
you didn't pass in your intents
I frickin told you
H o w
intents=your_intents_variable_name_whatever_the_hecc_it_is)
this is very useful ^
waew=vgsfdbhdrg
idk
what to put
after the =
your intents variable name
...
intents.members?
do not overwrite your module name
oh my god
zawsexdfvgbhntrdvtfbgyu
get in a vc with me
a vc alone
oh
they're all gonna go mad if we do this here
π
@sonic hatch like burn 6k cal from just.. thinking of the best chess moves?
impressive ig
Anyone wanna join me for a match of four in a row? https://c4arena.com/arenavester
Classic Four-in-a-Row game. Play online or local game against your friends or AI.
never played it, will try nopw
Python dependency management and packaging made easy.
i mean, lowkey, its a baritone asmr over here π
@frigid panther So what are the advantages of Pipenv over virtualenv?
is it faster?
ah ok
ohk cool
yep venv
pip freeze > requirements.txt
Wanna play a match against me? https://c4arena.com/arenavester
Classic Four-in-a-Row game. Play online or local game against your friends or AI.
what is this... ??
A 'Connect-4' kinda game i guess
Four in a row! A fun little game
how do u play it ... i just joined so i don't know much..
@cerulean ridge
The first to get 4 in a row (horizontally, vertically and diagonally)
π
@frigid panther https://c4arena.com/vesterice
Classic Four-in-a-Row game. Play online or local game against your friends or AI.
in
Nice
no idea how the game works but will still play, lol nvm
Hahah, I think you'll get the hand of it
AHaha gg
Oink
(STMP01) pra105@bracewell-login:/flush5/pra105/STMP01> neofetch
If 'neofetch' is not a typo you can use command-not-found to lookup the package that contains it, like this:
cnf neofetch
(STMP01) pra105@bracewell-login:/flush5/pra105/STMP01> apt
If 'apt' is not a typo you can use command-not-found to lookup the package that contains it, like this:
cnf apt
(STMP01) pra105@bracewell-login:/flush5/pra105/STMP01> pacman
If 'pacman' is not a typo you can use command-not-found to lookup the package that contains it, like this:
cnf pacman
(STMP01) pra105@bracewell-login:/flush5/pra105/STMP01> cat /etc/*-release
Cluster Manager v8.1
slave
NAME="SLES"
VERSION="12-SP4"
VERSION_ID="12.4"
PRETTY_NAME="SUSE Linux Enterprise Server 12 SP4"
ID="sles"
ANSI_COLOR="0;32"
CPE_NAME="cpe:/o:suse:sles:12:sp4"
SUSE Linux Enterprise Server 12 (x86_64)
VERSION = 12
PATCHLEVEL = 4
# This file is deprecated and will be removed in a future service pack or release.
# Please check /etc/os-release for details about this release.
SUSE Linux Enterprise Server 12 (x86_64)
VERSION = 12
PATCHLEVEL = 4
# This file is deprecated and will be removed in a future service pack or release.
# Please check /etc/os-release for details about this release.
(STMP01) pra105@bracewell-login:/flush5/pra105/STMP01>
lol r u all in universities..?
Nope
(STMP01) pra105@bracewell-login:/flush5/pra105/STMP01> module list
Currently Loaded Modulefiles:
1) SC 2) slurm/current 3) cuda-driver/current 4) intel-cc/16.0.4.258 5) intel-fc/16.0.4.258 6) intel-mkl/2017.2.174 7) python/3.7.2
(STMP01) pra105@bracewell-login:/flush5/pra105/STMP01> python
Python 3.7.2 (default, Jan 2 2019, 19:00:59)
[GCC Intel(R) C++ gcc 4.8 mode] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()
(STMP01) pra105@bracewell-login:/flush5/pra105/STMP01>
lol i'm feeling so dumb listening to u all...
module load python/3.7.2
ur not in uni?
no bro ... just in 11th grade
ah I see
cat /etc/*-release
here
there's YaST for OpenSUSE, when i googled π€·π½ββοΈ
@cerulean ridge for it to be installed on a compute node, shouldn't that have a Administor access?
u could talk with the IT admin
lol ...
IT admins are always a pain in the ass, urgh
lol
https://c4arena.com/vesterice @icy axle
Classic Four-in-a-Row game. Play online or local game against your friends or AI.
I'm in
count me in for the next match..
@cerulean ridge Yeah, its Connect 4
lol
well, if ya'll really bored, we could play something which could include more ppl lol
okay... u got any...
@cerulean ridge bro i didn't catch what u were saying..
ah its okay then lol hahaha
byee....
hahaha yeah .. but right now i just can't sry for that..
i still havent reached the 50 messages mark yet. cant talk yet lol
well, i'm done with my masters'. but kinda debating what i'd do with my life lol
i dont think so, i should have dropped out long ago, but still went with it. I'm looking for a career change now. Beginning with data analytics π€·π½ββοΈ
i started just few day's ago..
ooh cool!
ohh
Nah, focussing more on programming level analytics. SQL and Python.
@cerulean ridge bro what r u studying..
ohh... and what source did u start from..?
i've always attended bootcamps and workshops, but getting in to ML headson is kinda too much for me.
i will gradually get into ML
thats my goal actually
ooh, yeah, Andrew Ng!
ohh ... and for me it was from hardvard.edx
Datacamp currently, introductory level
abbreviation
ML - Machine Learning, he meant
@cerulean ridge not just, ML per se, getting into AI. I dunno, i was always fascinated bout analytics, so gave it a go first. and till now, i'm feeling good
andrew ng
3blue 1brown
and where r u'all from..
I'm from india
ohh and i'm from Nepal
wait, isnt it too late for a 11th grader to be awake now, lol
hahaha .. i think it's only 12:19 here..
welp, midnight π
i usually sleep at 1 or 2 and wake up at 10 - 11
haah, fine then
okay then i gtg mom's here...
lol, me too
bye @cerulean ridge
cya
@zealous wavehello
CΘiuc Δ hichii
βοΈ
lol
Top lol
!charinfo π€
\U0001f919: CALL ME HAND - π€
Hello @tiny socket
98195144192331776
297045071457681409
@dense ibex, stop pinging me. its rude
@uncut meteor Sorry what'd you say?
Evening
Hello
Hey π
do you guys get a static sound from my mic?
@uncut meteor can i ping you π₯Ί
yes, very loud
haha very funi jok
It's Alec Season
π’

Sic' em
@uncut meteor Hey


because i have the power of yeethon at my fingertips
Sic' em @tiny socket
and im not afraid to use it
It's Not a real language until its supported in Discord Codeblocks...
