#voice-chat-text-0
1 messages · Page 676 of 1
Pangolin digging through the wall.
Pangolins have large, protective keratin scales covering their skin; they are the only known mammals with this feature. They live in hollow trees or burrows, depending on the species. Pangolins are nocturnal, and their diet consists of mainly ants and termites, which they capture using their long tongues.
Subscribe and 🔔 to OFFICIAL BBC YouTube 👉 https://bit.ly/2IXqEIn
Stream original BBC programmes FIRST on BBC iPlayer 👉 https://bbc.in/2J18jYJ
Honey badgers escape from their enclosure using anything from mud balls to rakes.
Record books describe the honey badger as the most fearless animal on the planet. Although barely a foot tall, they have ...
why do I keep losing rights to speak in this vc
how do I get that voice verified role
Check out #voice-verification
/ˌpædʒəˈneɪʃən/
do we just keep writing in here to get name
def foo() -> None:
[print(_) for _ in [_.split() for _ in "mmm cheese burgers"]]```
lol
i need to
get 50 messages
before i can talk
ripzzz
lol thats a rip for me
i dont even know how many messages i have sent in total olz
oh ok srry
aight
@solid atlas i heard it poor u haha
he is a rude man
i like your name lmao
np np
wich languages can u code?
oh damn haha
wich one do u like the most?
or wich one do u code the most in?
ahn k nice
am learning how to code
in python
am like now learning how to use sockets
nono
stream sockets
thats the most interesting for me lolz
i dont rlly work with websites
ohw
lol am dumb srry
but im going to bed its 1:15am
goodnight
yeah
ill talk next time if i have 50messages lmao
Hello everyone
@somber heath Sleep beats it 😄 at last
(define (mean-sq x y)
(define (avgin x y)
(/ (+ x y) 2))
(define (sqin x)
(* x x))
(avgin (sqin x)
(sqin y)))
(write (mean-sq 2.0 3))
uh, this is kinda cool. obviously super basic but i've been coding for coming up to a year and kinda never thought about functions like this
hai
Hello
@whole bear
i dont think this name and picture is allowed in this server
I'll change it soon @candid venture
I'm testing Unicode support on Discord
They updated to remove some annoying characters
So I'm testing its limitations and how to get around
you can test on your own server.
Ok I'll make one
good idea.
I came here cause you guys know more about programming and I was assuming somebody could help
whatever, follow the rules.
Yep
Oh yeah I just realised I broke one of the rules, gimme a sec
@rigid nest It's me Cauchy btw
Now it's better, fixed
I'm good, how's your studying?
I saw some code on like midpoint and distance formulas or something
superb, i'm looking to understand what is meant by ascertaining the fixed point of a function
or "finding the fixed point"
It's when f(a)=a isn't it?
Cauchy I think you were very close to getting starified 😄
makes sense.
You don't want to end up like @candid venture 😄
so the idea is you employ some iteration or recursion to find where f(x) = x?
Yeah, so to find it you keep repeating, with f(x) and then f(f(x))
Yep
You keep doing recursion till you get stuck at that point
It's a big part of the work I did on Collatz conjecture
is there perhaps any chance at all
you have introductory material on the collatz conjecture or
related topics that'll help me understand it in the long run?
You should just read the Wiki article
The Collatz conjecture is simple to understand, but nobody knows how to prove it
ah ha i get it
I watched the most advanced lecture on the topic and even that was child's play level maths (for an advanced topic) which ended up helping a bit in the journey to proving it
this is probably very dumb but is that to say there is no like..
so like when there's no 'mathematical proof' for a conjecture
this notion of proof extends further than simply a function defining it?
So a conjecture is basically a "pattern", and an assumption that the pattern always holds
However, what if at the 10^701 th number the pattern breaks?
Which is why we need to have a proof for a conjecture
so is it the case we can't do this computationally so we need other proof
Even nowadays some important math and physics is based on unproven conjectures, which is why you can win so much money for each proof
Yep, you aren't allowed to do it computationally
interesting
For example, we know pi is irrational, but a computer could only tell us it has decimals going up to however powerful it is
so did you make a recursive implementation of it?
Yeah it always has to be defined by recursion
oh ok so there's plenty online and stuff?
I think I sent the code for the graphical one before, but I have a simple program for Python
Yes there is
I'll just copy my code just a sec
c=3
k=1
def kollac(num):
orbit = 0
while num>1:
if num % 2 == 0:
orbit += 1
print(num//2)
num = num//2
elif num % 2 == 1:
orbit += 1
print(k*num+c)
num = k*num+c
else:
print(num)
print("Orbit of: " + str(orbit))
def getnum():
global num
num = input("Give us a number: ")
try:
num = int(num)
except ValueError:
print("Please enter a number")
getnum()
#def countorbit(): #use the same thing for the coin flip
getnum()
kollac(num)
Kollac is just my name for Collatz but instead of 3n+1 it's kn+c
thank you, i will dwell over this and get confused for a few weeks.
I have kollacp where instead of dividing by 2 you divide by p for every even
It's always fun getting in a rabbit hole on a cool topic
<3
import matplotlib.pyplot as plt
k=3
c=1
p=2
def get_num() -> int:
n = input('Please enter a number: ')
try:
n = int(n)
return n
except ValueError:
return -1
def colez(num: int) -> list:
result = [num]
while num > 1:
if num % 2 == 0:
num //= p
else:
num = k*num+c
result.append(num)
return result
y_values = colez(get_num())
x_values = [i for i in range(len(y_values))]
plt.plot(x_values, y_values)
plt.show()
^If you have matplotlib you can graph it
import matplotlib.pyplot as plt
import numpy as np
num=int(input("Starting number: "))
num2=int(input("Ending number: "))
num1=num
xmin=num
xmax=num2
multiplier=3
stepslist=[]
special=[]
while num1<num2+1:
steps=0
num=num1
while (not num==1) and (steps<9999):
if num % 2 == 0:
num = num//2
elif num % 2 == 1:
num = multiplier*num+1
steps+=1
stepslist.append(steps)
if steps<999:
special.append(num1)
print("For "+str(num1)+", it took "+str(steps)+" steps to get to 1.")
num+=1
num1+=1
#print(special)
dx=1
x = np.arange(xmin, xmax+1, dx)
plt.plot(x,stepslist)
plt.show()
^This one shows the orbit within a period
An orbit is just how many steps it takes to get to 1
The reason steps<999 is implemented is for computational efficiency since if you make multiplier>3 it might never go to a fixed value like 1 for Collatz
Which is why studying "kollac" is also interesting
@rigid nest You might find this poster my friend and I produced interesting
# check devices
c_d = sp.check_output("adb devices", shell=True, universal_newlines=True)
time.sleep(3)
if len(c_d) <= 26:
print(f"Sorry {u}, no devices were found. aborting...")
exit(0)
else:
print("Device was found !\n")
# gets root and opns a shell
os.system('adb root')
time.sleep(1)
pp = Popen(['cmd'], shell=True)
pp('adb shell')
time.sleep(1)
# checks root permissions
# run c_p command on latest adb shell
c_p = pp("whoami", shell=True, universal_newlines=True)
if "root" in c_p:
print('root permissions obtained.\n')
else:
print(f"Sorry {u}, no root permissions was found. aborting...")
exit(0)
time.sleep(3)
# gets app's name and path and pulls it
t = input(f"Thank you {u}, Please enter required application's name: ")
g_n = sp.check_output(f"pm list packages | grep {t}", shell=True, universal_newlines=True)
t_n = g_n.split("package:")
time.sleep(1)
g_p = sp.check_output(f"pm path {t_n[1]}", shell=True, universal_newlines=True)
g_p_e = g_p.split("package:")
time.sleep(1)
os.system(f'adb pull {g_p_e[1]} {path}')
time.sleep(5)
pip is not working for me in cmd
Even though I added python to environment variables
strange
@lethal ingot did you install pip using this link?
https://bootstrap.pypa.io/get-pip.py
(defun average (x y) ; formal params two integers
(/ (+ x y) 2)) ; quotient of the sum of those two integers and 2
(defun square (x) ; formal parameter of an integer
(* x x)) ; return the product of that integer
(defun absolute (x) ; formal param of an integer
(if (< x 0) ; if this condition is true
(- x) ; negate x
x)) ; else, return x
(defun improve (guess x) ; two formal parameters, both integers
(average guess (/ x guess))) ; invoke average on guess and the quotient of x and guess
(defvar tolerance .001) ; alias for precision, or, what is "good enough"
(defun tolerable(guess x) ; formal parameter of two integers
(< (absolute (- (square guess) x)) ; boolean result, such that the absolute value of guess*guess - x is less than tolerance
tolerance))
(defun try (guess x) ; two formal params of integers
(if (tolerable guess x) ; if the result of tolerable on guess & x is true, return guess, else, invoke try on the result of improve & guess and x
guess
(try (improve guess x) x)))
(defun sqroot (x)
(try 1 x))
(write (sqroot 25.0))
@rigid nest I can show u how to calculate sqrt almost on any x86_64 cpu.
In 3 commands.
Wait.
(define (average x y)
(/ (+ x y) 2))
(define (square x)
(* x x))
(define (improve guess x)
(average guess (/ x guess)))
(define (absolute x)
(if (< x 0)
(- x)
x))
(define (good-enough? guess x)
(< (absolute (- (square guess) x))
.001))
(define (try guess x)
(if (good-enough? guess x)
guess
(try (improve guess x) x)))
(define (sqroot x) (try 1 x))
(write (sqroot 25.0))
(define square (lambda (x) (* x x))
(operand operator operator)
^^^
it's just parenthesis
Guys can you tell me what's going on with this error?
RuntimeError: The current Numpy installation ('C:\Users\Tosaboy\PycharmProjects\pythonProject2\venv\lib\site-packages\numpy\init.py') fails to pass a sanity check due to a bug in the windows runtime. See this issue for more information: https://tinyurl.com/y3dm3h86
and how do i solved it??
hahha
i have no idea
i don't know
try some other packages if it gives the same error
I think (just think), it might be related to pip
SQRTPS xmm1, &NUMBER
hahaha
SQRTPS
Its built in in almost every x64 processor.
do you have any idea what's the cause?
wat, can you directly work with processor using this super old language?
null, eq + - list
Yes.
In this context, that mean that this number should be in memory.
It also can be in register.
@rigid nest you changed your profile pic ?
No u cannot.
The voice helped me recognize
I want to speak.
1959 scheme
Or use Microsoft word
I don't have it.
yes the office 365
are you new to the server?
• You have sent less than 50 messages.
simply spam
so what are you doing?
OK.
25
Move it from code to register.
Or from code to memory
mov rax, 25
Move to register
No.
To add 15 for example:
mov rax, 25
add rax, 15
In register rax.
U have number in register.
Wait let me check can I talk.
No I can't.
SQRTPS
I am using dvorak keyboard right now and I still learning to type on it.
SQRTPS has signature like this:
NP 0F 51 /r SQRTPS xmm1, xmm2/m128
Thats mean that we shoud collect the result of this operation in register xmm1, and get the operand from register xmm2 or memory.
movsp xmm2, NUMBER
sqrt xmm1, xmm2
operand operator, operator
operator operand operand
thx
Not a lot. I have my course work.
Even in C language it would be esier to use compiler intrinsics instead of pure assemby.
yeah
Yes. Thats called conditional jumps.
Yes. In GAS u use labels for that. In MASM thare are special key words.
@elfin fractal @turbid oriole i need permison to stream please
help voice channel 2
No.
I'm still working on the code to send message over whatsapp, but somehow the code is incorrect
``import webbrowser
import time
import pyautogui as gui
interval = 4
position = 730,190
numbers = {+61xxxxxxxxx}
message="Hello"
for i in numbers:
url = "https://wa.me/{}?text=()'.format(i,message)"
webbrowser.open(url)
time.sleep(3)
gui.click(position)
time.sleep(3)
gui.press('enter')
time.sleep(interval)
url = 'https://wa.me/xxxxxxxxx?text=Testing'.format(i,message)``
cong.
How did you do it ?
simple stream ?
oh ok
the section of [] is not defining the number correctly
how can I mark it as a string ?
Use {}
this way ? I edited it
url = `"https://wa.me/{i}?text={message}"
numbers = {'+61xxxxxxxxx'}
I have a number
but for privacy of the number i can't share it
So, I have to make it {(+61xxxxxxxx)}
?
aha
so instead of + I use 00
pivot table
@rigid nest 1:47AM
Can't use mic
Couldn't sleep but I can stay on here for a few mins
url ="https://wa.me/{no}?text={m}".format(no=i, m=message)
Ok Imma go sleep
see ya
||good night||
Use no=i
``import webbrowser
import time
import pyautogui as gui
interval = 2
position = 730,190
numbers = {'+61xxxxxxx'}
message="Hello"
for i in numbers:
url ="https://wa.me/{no}?text={m}".format(no=i,m=message)"
webbrowser.open(url)
time.sleep(3)
gui.click(position)
time.sleep(3)
gui.press('enter')
time.sleep(interval)``
@covert hawk Still not working
try using it with a number you know
@tawdry smelt Hi
How can I fix the API error ?
@lethal ingot What you trying to do is very interesting
what do you mean @whole bear ?
What are you making now?
can you paste code here @covert hawk ?
url ="https://wa.me/%7Bno%7D?text=%7Bm%7D%22".format(no=i,m=message)
lol
I found it
``import webbrowser
import time
import pyautogui as gui
interval = 2
position = 730,190
numbers = {'+61401985509'}
message="Hello"
for i in numbers:
url ="https://wa.me/{+61xxxxxxxx}?text={Hello}""
webbrowser.open(url)
time.sleep(3)
gui.click(position)
time.sleep(3)
gui.press('enter')
time.sleep(interval)``
It worked with this code
@lethal ingot ok now the position of x,y coordinates is correct?
right position
not too bad
webbrower is outdated
you can use pyautogui.write()
I wish I can talk
don't wish
@severe elm I work on cybersecurity side of a small company
@tawdry smelt your method of teaching and helping is like go teach yourself I won't waste my time
i already did install it
Off topic...Saiki K is a good show
I install it in pycharm
@tawdry smelt lol
@tawdry smelt Absolutely i agree with you
some problems we can solve by ourself
yeah
i agree
Because I'm not computer engineering student
I learned python by myself
Ok Sir
As you order
@tawdry smelt Also it's a skill because the more you solve problems by yourself. In future it will help you to solve big problems you know what i mean like wassup whats good
But I found that learning with others is the best way
I have a book called "Python for dummies"
thats how you build a man in the body@lethal ingot
@potent urchin Don't worry numpy have one of the best documentation
yeah it's fine now that i install ther older version
oh ok
||good night||
@tawdry smelt people use linux because linux provide them a nice environment which they can feel the power of os that how powerful a single laptop can be.
window is just a window that push us to the world of marketing
@still silo that website is not secure
yeah - i didn't know about it until it was just mentioned
Its an incovenient truth 😛
I am checking out https://dvc.org/ this morning - an interesting project to keep datasets tracked in git w/out checking in large blobs
Yes - the guys who developed it are doing machine-learning but it can be used for other purposes
An older somewhat related project would be Git-LFS (Large File Storage)
Hi I want to write a code that checks whether directory exists or not. ex( C:/folder5 )
Can someone one help
os.path.exists(path)
right: os.path.isdir(path)
because exists could be symlink, file, etc. -
Thanks
hello
I think a histogram in excel is punishment (reparations) enough 🙂
i am not voice verified yet... been off server for a while and just came the other day
anybody __
@stoic ore yeah u can use that its a pretty good tool thats focused on web dev
Yeah 😄
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.
!source source
Display information and a GitHub link to the source code of a command, tag, or cog.
@rugged root
Disjoint Force-Directed Graph When using D3’s force layout with a disjoint graph, you typically want the positioning forces (d3.forceX and d3.forceY) instead of the centering force (d3.forceCenter). The positioning forces, unlike the centering force, prevent detached subgraphs from escaping the viewport.
simulation (-> js/d3
(.forceSimulation nodes)
(.force "link" (-> js/d3
(.forceLink links)
(.id #(.-id %))))
(.force "charge" (.forceManyBody js/d3))
(.force "x" (.forceX js/d3))
(.force "y" (.forceY js/d3)))
You don't want to end up like
@Olivia Newton-John😄
@stuck furnace
WOW DO I SEE TARGERTTING!
i will get hemlock
@white drum http://pythontutor.com/visualize.html#mode=edit
@white drum https://repl.it/languages/python3
@magic orchid try #voice-verify
that's strange, I've done this before -.-
@GoogleColonizer @torybruno @torybruno Please see https://t.co/dJpoqyxsKQ for what a "hopper" is: more efficient than rovers or penetrators for dual-use LIBS prospecting and VLBI astronomy, even if followed up by more penetrators and rovers for follow-on prospecting and post-prospecting mining, respectively
Demo of Parrot's Jumping Sumo robot at official release event in New York City. Learn more: http://spectrum.ieee.org/automaton/robotics/home-robots/parrot-minidrones-rolling-spider-jumping-sumo
This is annoying... I used to be able to talk in this channel 😦
50 msgs in any channel?
hm, alright - thanks!
I thought the biggest hurdle was being active for three 10-minute periods
This is annoying, I don't want to be a douche and spam the server either
Why not answer people's Python questions for a while, @magic orchid?
I am :)
Join the challenge or watch the game here.
Login to your Chess.com account, and start enjoying all the chess games, videos, and puzzles that are waiting for you! If you have any issues while logging into your account, do not worry. You can recover your password, or drop us a message and we will gladly help.
I have
dose anyone know vbs script?
@somber heath you're being recorded on youtube
Support the stream: https://streamlabs.com/rupeshbhandari
huh? recorded on yt?
@fiery hearth Are you still streaming?
A short film for THTR 1020. (Speaking begins at 1:17)
For clarification: Many words spoken in the video are actual English words. When put together, however, the sentences make little to no sense. While many non-English speakers can pick out words they recognize, they still often fail to make sense of an entire statement.
@whole bear Лол
@whole bear
брух само умукни волим Русију
Not Russian lol
ik
serbian
Do you speak Serbian?
yes
How are there so many British Serbs I meet on Discord?
im not serb thank you
i just learnt it because i wanted to
Ah ok
cauchy did a pizdec
@whole bear everyone muted you for singing annoyingly
just saying
I would talk but I am not voice vrified
yeah I know
I just joined a couple hours ago
like probably 12 hours ago
uni is very usefull
I'm doing either pre medical or doing computr science
What country are you from?
fun debugging
Wait are you doing A levels or what system?
Is it like IB?
its basically O-levels
You go to international school right?
Where are you planning to study?
idk yet
UK?
He is
Are you getting good scores? Cause the top UK unis are really hard to get into
The minimum requirement to just apply is being in the top 99.95% of students in my state
holy fuck
Yeah but that's Oxford
Yeah, i know...i tried applying to imperial as well. Same same.
Some kid from my school made it to MIT a couple years back
But he's a national rower
And a top student
I'm probably going to apply to cambridge or smhtn
Yes. And it's wayy harder as an international.
If you can
What end of year exams do you do where you live?
I hate it that they have such a huge focus on grades.
Like IB?
Lol, i was applying for my masters.
My school's median student ranking is top 95% in our end exams
Ah ok
@whole bear is attacking everyone lmfao
My physics teacher has a Cambridge PhD
I would apply for master's internationally if I could
https://youtu.be/8HZ4DnVfWYQ
Worth the watch if you haven't
#cyberpunk #russia #robots #birchpunk
They say that Russia is a technically backward country, there are no roads, robotics do not develop, rockets do not fly, and mail goes too long. It’s a bullshit.
Говорят, что Россия – технически отсталая страна, нет дорог, роботехника не развивается, ракеты не летают, а почта идет слишком долго. It’s a bu...
WHAT!?
Cause I can't afford university without some financial stuff
And my local uni is in the top 50 anyways
(2 of them)
putin?????????????????!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Join the challenge or watch the game here.
An American expat tries to sell off his highly profitable marijuana empire in London, triggering plots, schemes, bribery and blackmail in an attempt to steal his domain out from under him.
Director: Guy Ritchie
Writers: Guy Ritchie (story), Ivan Atkinson (story)
Stars: Matthew McConaughey, Charlie Hunnam, Michelle Dockery
Thank you for this awe...
@coral frigate What degree was it for btw?
my local uni is in the top 10000000000000000000000000000000000000000000000000000000000000000000000
Artificial intelligence.
Canada has McMaster or whatever
Oh yeah can I ask you about AI in DM's?
I'm just from canada
I wanna get into it but I won't have much time so I need to optimise it
Sure :D Anytime!
@somber heath why do you sound like my english teacher? lol
Is he Aussie?
@candid venture שלום
שלום
nah jk
@olive echo Best to not. 🙂
@olive echo How about not calling people that thanks?
Regardless
@candid venture Русский тоже?
@olive echo I understand you don't mean anything perjoritive by it in this instance.
will be more weary of what I say next time
uh oh
loooooooooooooooooooooooooooool
I have to wait 2 days to get verified now
what did he sayyyyyyyyyyyyyyyyyyy
Join the challenge or watch the game here.
ᓭ𝙹 ⎓⚍リリ||
↸╎ᒷ ╎リ ᔑ ⍑𝙹ꖎᒷ
YES
my economics class starts in like half an hour...: (
Jachnun
BTW how can I get voice verified?
anyone wanna play chess
ℸ ̣ ⍑ᔑℸ ̣ ᓭℸ ̣ ⚍⎓⎓ ℸ ̣ ᔑᓭℸ ̣ ᒷ ꖎ╎ꖌᒷ ᓭ⍑╎ℸ ̣
@olive echo Best not. 🙂
I went to my Yemeni friend's house and woke up to his dad's fresh Jachnun.
OMFG
I have never had a better breakfeast
@olive echo Spamming extended ascii characters is probably not going to result in a favourable outcome for you.
its not spamming
Draughts
im having a conversation in minecraft enchantment table
@olive echo You can argue with me, or you can take it for the friendly advice that it is.
!¡ꖎᒷᔑᓭᒷ ∷ᒷᓭ!¡ᒷᓵℸ ̣ ᒲ|| ꖎᔑリ⊣⚍ᔑ⊣ᒷ
is this hebrew?
lol
its minecraft enchantment table
lmao ok
I came in mid convo. so got confused XD
Bro fuck this vc cool down
bro fuck the 3 day wait
I wanna talk
bruh
I wanna play chess anyone wanna go against me
.
.
?
Join the challenge or watch the game here.
That is how it works
whats israel?
You get 2 weeks free
You can get citizenship automatically
and you can get a free trip
FUCKTARDs
guys what is israel?
@candid venture
The illegitamate country that currently occupies the West Bank and Gaza strip illegally
oh you mean the country that stole palestine
Also runs the Chinese, American, and Russian governments
k
same
I have so much to say
-_-
Murica FUCK YEAH
Hey @candid venture How about you stay in lockdown for more than three fuckin days
$10 bet he had Corona
Israel is real.
we were under lockdown for 2 month
Per capita cases in Israel are like 5 times US lol
are you sure about that
@candid venture Israelis are incapable of obeying BB for more than 30 seconds
only 2 fucking months
ive been in lockdown since moarch...
BB riots everyday
israel isreal.
The name says it
They did
yes @whole bear
Only started in 1300
cuz I have them
To all you crazy conspiracy theorist out there: You can stop now. It's been proven...
Huge thank you to Justin Chon for coming through! Check out his channel:
http://www.youtube.com/justinchon
Check out my 2nd Channel for bloopers/behind-the-scenes and vlogs:
http://www.youtube.com/higatv
New #TEEHEE app here: iPhone: http://goo.gl/KXLz9j A...
lolololol
but the bottom line is that it wasnt your land
I can't tell who is serious and who isn't
and you fought and stole it
Are you guys playing chess?
yes
Yeah @hidden cove
and having political debates
Who's playing who?
You should get out the chips again @hidden cove
Join the challenge or watch the game here.
Lol it's triscuits tonight @whole bear
someone play against me in chess
Better make sure mic's on when it's time to eat it, it's a tradition
Join the challenge or watch the game here.
But I'm probably done eating sadly 😦
Again, does anyone know whether you can use Tensor for gpus with IDEs other than Visual Studio?
Bc fuck visual studio
Are you in high school @candid venture ?
@unreal swallow python modules don't depend on your IDE
Well he said he hasn't been in the military yet.
He is the supreme leader of Russia bruhhh 🙄
Yeah, I know but I'm humoring his Israeli larping @coral frigate
@whole bear https://lichess.org/I9krIyKO
Join the challenge or watch the game here.
local news website has an extremely unflattering picture of trump
What is a larping? Sorry i am a boomer
@coral frigate https://en.wikipedia.org/wiki/Live_action_role-playing_game
A live action role-playing game (LARP) is a form of role-playing game where the participants physically portray their characters. The players pursue goals within a fictional setting represented by the real world while interacting with each other in character. The outcome of player actions may be mediated by game rules or determined by consensus ...
Live Action Role-Playing @coral frigate
What do I have to do to install tensor for gpus and use it in Python?
@candid venture Can you do cybersec?
I did
Austraila is big on cybersec
"Posing" might be an older term.
But after running my program it still said "ignore if not using GPU...blah blah blah"
At my cadet training we learned about cybersec
Mosad go brrrrrr
Use colab
😅whats dat?
ITS YOUR MOVE
What do you guys think about "ethical hacking"
NOT MINE
It's useful for penetration testing.
I did a bit of it a couple of years back cause I thought hacking was cool but it turned out nothing like the movies...
Google colaboratory. Its a jupyter notebook style which uses google GPU/TPU automatically in the backend. It has pre installed all the deep learning libraries
O
I don't really care for hacking much but I understand its value @whole bear
I WANNA TALK SO BAD RN
I was just wondering if I could se it with PyCharm bc that is my go-to
@coral frigate
Someone is destroying their keyboard.
My team in cadets got like 5th in the country this year the in the cybersec comp, probably cause none of them knew how to use Linux
I left cadets before they had the comp cause I thought it'd be cancelled
Then you should install it. Make a virtual environment and install what you need. Tell me if you have any issues.
Big funding for the comp, free tickets to the capital city.
It's a really easy comp though, half of it is just "sudo apt-get update"
And other things that improve security
omfg
Privyet! Is this real?
Yeah
pretty quiet now
If you are Jewish it's free
Um, yeah, sudo apt-get update is like the first command you learn on Linux
Most people donate though
@whole bear did you leave the game or smthn
and some big benefactors donate for multiple trips of kids
yea
Yeah lol, and nobody knew how to search through files or anything in Linux. I cried when my ex-teammates told me how they went...
I am an atheist. Hope they don't hate on me🥺🙄
i'd cry too
⊣𝙹 ⎓⚍ᓵꖌ ||𝙹⚍∷ᓭᒷꖎ⎓
first one I learned was su
Welcome to the club.
thanks @whole bear
we are good programmers
Indians are the best at everything lol..comes with the huge population.
They don't, it's not based on your religion. I'm an atheist but I was born there. You should read about the requirements if you are actually interested.
even phone scamming
@coral frigate Is there a different import statement for gpu?
Um, black athletes have joined the chat
blacks
I am undefeated
uh
what?
literally
Ummm what??
Black people dominate sports
WHAT!/
K guys I gtg, it was fun
¯_(ツ)_/¯
Yeah lol of course there is. And that is correct. You might have had issues with install CUDA, perhaps
Appropriate conversational choices, folks.
Don't get me started. I got covid tested as I have symptoms and that shit is evil!
Muting whom?
@whole bear
yes
later
lmfaoooooooooooooooooooo
dont @mention me
I got class
lol @ opal
unless it is sirous
¯_(ツ)_/¯
@unreal swallow dm me if you got any problems.
quiet again
@whole bear Why have you been changing your handle so much?
Bruh FBI has your IP
I'm coming for you, oh, I'm coming for you
little do they know im using 500 difrent vpns
What's your ping?
6128
he has bad pingue
I'd bet
noot noot
(mother fucker)
that's 6 seconds
doubt
wth
Pingu. Noot noot.
How do pingu's brains not get scrambled doing that?
he's an alternative woodpecker
lol
Pingu. Noo*dies*
idfk how to spell pingu
Pingu
ty
pls dont
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.
@hidden cove lichess
Join the challenge or watch the game here.
Who's playing who?
(define lat?
(lambda (l)
(cond
((null? l) #t)
((atom? (car l)) (lat? (cdr l)))
(else #f))))
isn't this function beautiful? little schemer page 16
Yo @sick cloud
@stuck furnace sup
Sup, how's it going?
gud, and u ?
Yep good thanks 
why aren't u speaking ?
Erm, I usually don't speak on mic.
One of these days I will 😄
Hey man @digital jackal
Gone to the other channel 😄
@stuck furnace do u wanna see the discord bot i was making for my friends etc ?
Yeah sure!
it can do stuff like:
- play a number guessing game with the user
- find the time it would take u watch a entire youtube playlist
- keep track of all the messages sent
- delete <number> messages
Oh nice!
The second one is very specific, but actually something I've needed in the past 😄
Have you got it up and running?
Hey @digital jackal
@digital jackal what do u wanna talk about ?
Talk in #code-help-voice-text ?
@digital jackal i can't, but i'm having luch now
@sick cloud - you mean kill <process_id> right? There is also pkill where you can use a regular expression to select certain processes (use pgrep to test what is selected)
I mean: ```
User: $kill @JagTheFriend
Bot: @JagTheFriend died !!
reason: <a reason bot would pick>
lolz.. ah gotcha
@still silo my friends fell in love that command though
The trick w/ pgrep and pkill is for anything more than matching a simple command, -f is needed to grep against the full command line argument for the process - then I add -l on pgrep to list back the full command line argument I am matching
e.g. pgrep -fl -- "command1.*--option=foobar" then pkill -f -- "command1.*--option=foobar"
man I am still try to contemplate this story about a pizza bar worker lying about how they got covid-19 and locking down 1.7 million people in Australia... I live in the US and this is just unbelievable - we could have people dropping dead outside in the streets and they will just close the bars 30 minutes early at night to be safe lolz
Artificial neural network
What is KNN? K Nearest Neighbour is a simple algorithm that stores all the available cases and classifies the new data or case based on a similarity measure. It is mostly used to classifies a data point based on how its neighbours are classified.
We have used KNN to analyze genetic samples taking their variants (which are the letters A,C,T,G at a chromosome/position) and then classify them into ethnic groups
e.g.
Do you have a code example?
hello @neon sleet
hello @somber heath
my friend gave it to me
its my roblox user name
do u play roblox ?
will u ever
play it ?
have have u not heard of roblox ?
nah
F for u
haha
its a online gaming platform
where people make games
and u play it
online
most of the games are for free
hmmm...
i said most games are free cuz u sometimes need robux
to play it
@somber heath welcome back
u just left for a moment
do u wanna see the bot i've made for discord ?
yep
it could:
+ be used as a calculator
+ find the time it would take u to watch a entire youtube playlist
+ and more stuff
@night tiger have a look:
how do u not know what is roblox
imagine making a bot which shows what u had deleted
don't judge me for using light mode
or am i ?
@stoic ore hello
what ?
10 hours later
reasons
idk the question though
just type it pls
@somber heath < Do u Wanna speak ?
he was here befor-
you never know
@stoic ore which country do u belong to ?
he didn't speak much
turkey he said?
hmm okay ıt could be my mıcrophone let me check,
not ur microphones falut @stoic ore
yeah, its fine
yes, just speak a bit slower
nvm
i like the way u said SoFtwArE engineer
@stoic ore
hello ?
why is it so quiet ?
hmm... I coding something atm
in atom ?
vs code
atm = at the moment
emacs ftw! 😉
what about
cat <<EOF
type your code here
EOF
@neon sleet u can write python in cmd
atleat in windows
go to cmd, type in python
it opens up the interpreter
yeah, but you can't write scripts that way
but you could code ther-
I just use it for dir or help commands
btw you can just write a script in cmd using vim
yep
what about the default notepad ?
have u every tried to code in default notepad ?
@neon sleet
try it
i dare u
umm, something more complex
like factorial of a number
def g(x):
return 1 if x == 0 else g(x-1) * x
```try that
wait, there is a person in help channel, let me see what he needs help with
what we are doing though @olive night
Hey @lethal ingot!
It looks like you tried to attach file type(s) that we do not allow (). We currently allow the following file types: .3gp, .3g2, .avi, .bmp, .gif, .h264, .jpg, .jpeg, .mkv, .mov, .mp4, .mpeg, .mpg, .png, .tiff, .wmv, .svg, .psd, .ai, .aep, .xcf, .mp3, .wav, .ogg, .webm, .webp, .flac, .afdesign, .m4a, .csv.
Feel free to ask in #community-meta if you think this is a mistake.
so is everything silent or I can't hear anything
everything is silent
yep
@pseudo sun any help needed?
fact = lambda n: [1,0][n>1] or fact(n-1)*n
# test it ...
print(fact(53))
``` @neon sleet use this for the factorial thing
!e
fact = lambda n: [1,0][n>1] or fact(n-1)*n
# test it ...
print(fact(53))
@neon sleet :white_check_mark: Your eval job has completed with return code 0.
4274883284060025564298013753389399649690343788366813724672000000000000
cool
do u like to work with lambdas ?
hmm... I don't hate them either
if required
how often do u use them ?
you have a pet ?
Discord (software)
Screenshot of a newly-created Discord server in 2018
Preview release 67064 / September 15, 2020
Written in JavaScript React Elixir Rust
Operating system Windows macOS Linux iOS Android Web browsers
Available in 27 languages
wat is dis
Hi
is there anyone who can help that I text I need explanation cause i dont know how it work. thanks in advance
yeah booiii
@gusty siren XDDDDD
welcome back @somber heath
how r u ?
@whole bear can u stop ?
but i do wonder what song he was playing
what's the time ?
@somber heath
what's time now @somber heath ?
why i can't speak
@gusty siren Check the verification channel. 🙂