#voice-chat-text-0

1 messages · Page 676 of 1

graceful grail
#

@viscid reef name violate rules

rugged root
gilded rivet
meager lichen
#

why do I keep losing rights to speak in this vc

#

how do I get that voice verified role

hollow haven
faint ermine
#

/ˌpædʒəˈneɪʃən/

compact crown
#

do we just keep writing in here to get name

solid atlas
#

def foo() -> None:

faint ermine
solid atlas
#
[print(_) for _ in [_.split() for _ in "mmm cheese burgers"]]```
slim surge
#

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

whole bear
#

Hello everyone

stoic ore
#

@somber heath Sleep beats it 😄 at last

rigid nest
#
(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

unique lodge
#

hai

whole bear
#

Hello

candid venture
#

@whole bear
i dont think this name and picture is allowed in this server

whole bear
#

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

rigid nest
#

you can test on your own server.

whole bear
#

Ok I'll make one

rigid nest
#

good idea.

whole bear
#

I came here cause you guys know more about programming and I was assuming somebody could help

rigid nest
#

whatever, follow the rules.

whole bear
#

Yep

#

Oh yeah I just realised I broke one of the rules, gimme a sec

#

@rigid nest It's me Cauchy btw

rigid nest
#

hey Cauchy.

#

how art thou?

whole bear
#

Now it's better, fixed

#

I'm good, how's your studying?

#

I saw some code on like midpoint and distance formulas or something

rigid nest
#

superb, i'm looking to understand what is meant by ascertaining the fixed point of a function

#

or "finding the fixed point"

whole bear
#

It's when f(a)=a isn't it?

stuck furnace
#

Cauchy I think you were very close to getting starified 😄

rigid nest
#

makes sense.

stuck furnace
#

You don't want to end up like @candid venture 😄

rigid nest
#

so the idea is you employ some iteration or recursion to find where f(x) = x?

whole bear
#

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

rigid nest
#

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?

whole bear
#

You should just read the Wiki article

#

The Collatz conjecture is simple to understand, but nobody knows how to prove it

rigid nest
#

ah ha i get it

whole bear
#

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

rigid nest
#

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?

whole bear
#

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

rigid nest
#

so is it the case we can't do this computationally so we need other proof

whole bear
#

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

rigid nest
#

interesting

stuck furnace
whole bear
#

For example, we know pi is irrational, but a computer could only tell us it has decimals going up to however powerful it is

whole bear
#

I love xkcd

rigid nest
#

so did you make a recursive implementation of it?

whole bear
#

Yeah it always has to be defined by recursion

rigid nest
#

oh ok so there's plenty online and stuff?

whole bear
#

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

rigid nest
#

thx, can you re-write it in assembly

#

or ALGOL

whole bear
#

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

rigid nest
#

thank you, i will dwell over this and get confused for a few weeks.

whole bear
#

I have kollacp where instead of dividing by 2 you divide by p for every even

whole bear
rigid nest
#

<3

whole bear
#
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

rigid nest
#

ooo nice.

#

i'll install jupyter notebook now

whole bear
#
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

pastel lance
#
# 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)
lethal ingot
#

pip is not working for me in cmd

#

Even though I added python to environment variables

neon sleet
#

strange

lethal ingot
#

yeah it worked now

#

I found the solution

#

thanks

rigid nest
#
(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))
tawdry smelt
#

@rigid nest I can show u how to calculate sqrt almost on any x86_64 cpu.

#

In 3 commands.

#

Wait.

rigid nest
#
(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)

#

^^^

pliant atlas
#

it's just parenthesis

potent urchin
#

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

neon sleet
#

try some other packages if it gives the same error

#

I think (just think), it might be related to pip

potent urchin
#

okay

#

fk this numpy

tawdry smelt
#
SQRTPS xmm1, &NUMBER 
potent urchin
#

hahaha

tawdry smelt
#

@rigid nest

#

I just looking for proper mnemonic.

rigid nest
#

SQRTPS

tawdry smelt
#

Its built in in almost every x64 processor.

potent urchin
#

do you have any idea what's the cause?

tawdry smelt
#

Its assembly.

neon sleet
#

wat, can you directly work with processor using this super old language?

rigid nest
#

null, eq + - list

tawdry smelt
#

Yes.

#

In this context, that mean that this number should be in memory.

#

It also can be in register.

lethal ingot
#

@rigid nest you changed your profile pic ?

tawdry smelt
#

No u cannot.

rigid nest
#

*NUMBER

#

&NUMBER?

tawdry smelt
#

No.

#

Fuck I tired of typing.

lethal ingot
#

The voice helped me recognize

tawdry smelt
#

I want to speak.

rigid nest
#

1959 scheme

lethal ingot
#

Or use Microsoft word

tawdry smelt
#

I don't have it.

lethal ingot
#

yes the office 365

neon sleet
#

are you new to the server?

tawdry smelt
lethal ingot
#

they don't

#

they are too strict

tawdry smelt
#

• You have sent less than 50 messages.

neon sleet
#

simply spam

lethal ingot
#

be aware of spamming

#

noooooooo

#

I got banned

#

because of spamming

neon sleet
#

woooo

#

didn't know that

tawdry smelt
#

No way!

#

I thougth I typed a lot.

neon sleet
#

so what are you doing?

tawdry smelt
#

OK.

rigid nest
#

25

tawdry smelt
#

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
rigid nest
#

mov rax, 25

#

sqrt

tawdry smelt
#

In register rax.

#

U have number in register.

#

Wait let me check can I talk.

#

No I can't.

rigid nest
#

SQRTPS

tawdry smelt
#

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
rigid nest
#

operand operator, operator

tawdry smelt
#
operator operand operand
rigid nest
#

thx

tawdry smelt
#

Not a lot. I have my course work.

digital jackal
#

@grand acorn can you please give me the permisson to stream

#

or @mental flume

tawdry smelt
#

Even in C language it would be esier to use compiler intrinsics instead of pure assemby.

lethal ingot
#

do you need permission for streaming

#

?

digital jackal
#

yeah

tawdry smelt
#

Yes. Thats called conditional jumps.

#

Yes. In GAS u use labels for that. In MASM thare are special key words.

digital jackal
#

@elfin fractal @turbid oriole i need permison to stream please

#

help voice channel 2

tawdry smelt
#

No.

lethal ingot
#

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 ?

covert hawk
#

Use {}

lethal ingot
#

this way ? I edited it

rigid nest
#
url = `"https://wa.me/{i}?text={message}"
tawdry smelt
#
numbers = {'+61xxxxxxxxx'}
lethal ingot
#

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

severe elm
#

hey is someone good with excel here?

#

i need help for my homework

rigid nest
#

pivot table

whole bear
#

@rigid nest 1:47AM

#

Can't use mic

#

Couldn't sleep but I can stay on here for a few mins

lethal ingot
severe elm
covert hawk
lethal ingot
#

you missed " in the end @covert hawk

#

I will try it

#

maybe no=numbers

#

with s

whole bear
#

Ok Imma go sleep

neon sleet
#

see ya

lethal ingot
#

||good night||

rigid nest
covert hawk
lethal ingot
#

``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

whole bear
#

@tawdry smelt Hi

lethal ingot
#

How can I fix the API error ?

whole bear
#

@lethal ingot What you trying to do is very interesting

lethal ingot
#

what do you mean @whole bear ?

whole bear
#

What are you making now?

lethal ingot
#

lol

#

I got it

#

But I'm suffering from some error

whole bear
#

yeah

#

the more you suffer the more you learn

#

whatsapp using rfid?

covert hawk
#

url line

lethal ingot
#

can you paste code here @covert hawk ?

covert hawk
#

Ok

whole bear
#
url ="https://wa.me/%7Bno%7D?text=%7Bm%7D%22".format(no=i,m=message)
lethal ingot
#

I found it

#

lol

whole bear
#

lol

lethal ingot
#

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

whole bear
#

@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()

lethal ingot
#

I wish I can talk

whole bear
#

don't wish

whole bear
#

do it

#

hahaha

#

lets see

lethal ingot
#

This GIF is for @severe elm

#

lol

#

I will figure this out later

#

the code

whole bear
#

@severe elm I have dark hair , my name is elliot alderson

#

me

lethal ingot
#

Kimchi he's memes developer

#

We need more jobs like memes engineers

whole bear
#

@severe elm I work on cybersecurity side of a small company

potent urchin
#

anybody can help me with this error?

lethal ingot
#

@tawdry smelt your method of teaching and helping is like go teach yourself I won't waste my time

potent urchin
#

I can't import numpy at all

whole bear
#

you need to install

#

pip install numpy

potent urchin
#

i already did install it

lethal ingot
#

No bullying here

#

We are all learners

potent urchin
coral frigate
#

Off topic...Saiki K is a good show

potent urchin
#

I install it in pycharm

coral frigate
#

Make a different environment for it

#

If so then run it on pycharm itself

whole bear
#

I will fight him

lethal ingot
#

@tawdry smelt lol

potent urchin
whole bear
#

@tawdry smelt Absolutely i agree with you

#

some problems we can solve by ourself

#

yeah

#

i agree

lethal ingot
#

Because I'm not computer engineering student

#

I learned python by myself

#

Ok Sir

#

As you order

whole bear
#

@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

lethal ingot
#

But I found that learning with others is the best way

#

I have a book called "Python for dummies"

whole bear
#

thats how you build a man in the body@lethal ingot

#

@potent urchin Don't worry numpy have one of the best documentation

potent urchin
#

yeah it's fine now that i install ther older version

lethal ingot
#

Imma head to sleep

#

It's 2:26 a.m.

whole bear
#

oh ok

lethal ingot
#

||good night||

whole bear
#

@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
#

Bring back OS/2 😉

whole bear
#

@still silo that website is not secure

still silo
#

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)

covert hawk
#

Hi I want to write a code that checks whether directory exists or not. ex( C:/folder5 )

#

Can someone one help

still silo
#

os.path.exists(path)

#

right: os.path.isdir(path)

#

because exists could be symlink, file, etc. -

covert hawk
#

Thanks

still silo
#

I still have to practice w/ pathlib - so used to the old-school way 🙂

#

wtf?

sick cloud
#

hello

still silo
#

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

whole bear
#

@uneven yarrow

#

hey

#

nm

#

yea sure

#

what os?

stoic ore
#

anybody __

whole bear
#

@stoic ore yeah u can use that its a pretty good tool thats focused on web dev

stoic ore
#

Yeah 😄

whole bear
#

but i would recommend go with vscode

#

its much better

wise cargoBOT
#

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.

idle crater
#

!source source

wise cargoBOT
#
Command: source

Display information and a GitHub link to the source code of a command, tag, or cog.

Source Code
whole bear
#

@rugged root

wraith ridge
#
                                     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)))

candid venture
#

You don't want to end up like @Olivia Newton-John 😄
@stuck furnace
WOW DO I SEE TARGERTTING!

#

i will get hemlock

hallow warren
#

@magic orchid try #voice-verify

magic orchid
#

that's strange, I've done this before -.-

hallow warren
magic orchid
#

This is annoying... I used to be able to talk in this channel 😦

#

50 msgs in any channel?

#

hm, alright - thanks!

hallow warren
#

I thought the biggest hurdle was being active for three 10-minute periods

magic orchid
#

This is annoying, I don't want to be a douche and spam the server either

hallow warren
#

Why not answer people's Python questions for a while, @magic orchid?

magic orchid
#

I am :)

fiery hearth
fiery hearth
pure path
#

I have

whole bear
#

dose anyone know vbs script?

fiery hearth
fiery hearth
wraith ridge
#

@somber heath you're being recorded on youtube

cerulean moth
#

huh? recorded on yt?

whole bear
#

@fiery hearth Are you still streaming?

whole bear
#

@whole bear Ti ponimayesh russki yesli ya pishu s angliskomi bukvami?

#

Ya ponimayu

somber heath
whole bear
#

@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

gentle flint
#

cauchy did a pizdec

#

@whole bear everyone muted you for singing annoyingly

#

just saying

whole bear
#

scientism

olive echo
#

I would talk but I am not voice vrified

olive echo
#

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

whole bear
#

What country are you from?

gentle flint
olive echo
#

Canada

#

but I live in the UAE

whole bear
#

Wait are you doing A levels or what system?

olive echo
#

im doing my igcse right now

#

no

#

I live in the uae

whole bear
#

Is it like IB?

olive echo
whole bear
#

You go to international school right?

olive echo
#

you dont get any money just for being candian

#

you get money for differetn things

whole bear
#

Where are you planning to study?

olive echo
#

idk yet

whole bear
#

UK?

olive echo
#

maybe canada or uk

#

@whole bear arent you 16

whole bear
#

He is

olive echo
#

arent you still in highschool then

#

wdym "used to"

whole bear
#

Are you getting good scores? Cause the top UK unis are really hard to get into

olive echo
#

yeah

#

my avg is 94.5

whole bear
#

The minimum requirement to just apply is being in the top 99.95% of students in my state

olive echo
#

holy fuck

whole bear
#

Yeah but that's Oxford

olive echo
#

what of course

#

I wanted to apply there...

coral frigate
whole bear
#

Some kid from my school made it to MIT a couple years back

#

But he's a national rower

#

And a top student

olive echo
#

I'm probably going to apply to cambridge or smhtn

whole bear
#

That's good

#

@coral frigate As international student?

gentle flint
#

lol

#

not inaccessible for me

coral frigate
whole bear
gentle flint
#

done

#

is sent

olive echo
#

cyka blyat

#

bahahahhahahaha

whole bear
coral frigate
#

I hate it that they have such a huge focus on grades.

whole bear
#

Like IB?

coral frigate
#

Lol, i was applying for my masters.

whole bear
#

Ah ok

olive echo
#

@whole bear is attacking everyone lmfao

whole bear
#

My physics teacher has a Cambridge PhD

#

I would apply for master's internationally if I could

coral frigate
#

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...

▶ Play video
olive echo
#

WHAT!?

gentle flint
#

@candid venture

whole bear
#

Cause I can't afford university without some financial stuff

#

And my local uni is in the top 50 anyways

#

(2 of them)

olive echo
#

putin?????????????????!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

whole bear
candid venture
whole bear
#

@coral frigate What degree was it for btw?

olive echo
#

my local uni is in the top 10000000000000000000000000000000000000000000000000000000000000000000000

coral frigate
whole bear
#

Canada has McMaster or whatever

olive echo
#

im in uae...

#

not canada

whole bear
olive echo
#

I'm just from canada

whole bear
#

I wanna get into it but I won't have much time so I need to optimise it

coral frigate
#

Sure :D Anytime!

olive echo
#

@somber heath why do you sound like my english teacher? lol

whole bear
#

Is he Aussie?

olive echo
#

ahh makes sense good day!

#

he cant be

whole bear
#

@candid venture שלום

candid venture
#

שלום

olive echo
#

nah jk

somber heath
#

@olive echo Best to not. 🙂

fallen plinth
#

@olive echo How about not calling people that thanks?

olive echo
#

lmfao ye sorry dont mean to offend

#

was jk

fallen plinth
#

Regardless

whole bear
#

@candid venture Русский тоже?

somber heath
#

@olive echo I understand you don't mean anything perjoritive by it in this instance.

olive echo
#

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

candid venture
olive echo
#

ᓭ𝙹 ⎓⚍リリ||

whole bear
#

"minecraft enchanting table"

olive echo
#

↸╎ᒷ ╎リ ᔑ ⍑𝙹ꖎᒷ

whole bear
#

YES

olive echo
#

my economics class starts in like half an hour...: (

unreal swallow
#

THANK YOU

#

FUCK SHACKSHUKA

candid venture
#

Jachnun

unreal swallow
#

BTW how can I get voice verified?

whole bear
#

anyone wanna play chess

olive echo
#

ℸ ̣ ⍑ᔑℸ ̣ ᓭℸ ̣ ⚍⎓⎓ ℸ ̣ ᔑᓭℸ ̣ ᒷ ꖎ╎ꖌᒷ ᓭ⍑╎ℸ ̣

somber heath
#

@olive echo Best not. 🙂

unreal swallow
#

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
#

I understand before

somber heath
#

@olive echo Spamming extended ascii characters is probably not going to result in a favourable outcome for you.

olive echo
#

its not spamming

candid venture
#

Draughts

olive echo
#

im having a conversation in minecraft enchantment table

somber heath
#

@olive echo You can argue with me, or you can take it for the friendly advice that it is.

olive echo
#

!¡ꖎᒷᔑᓭᒷ ∷ᒷᓭ!¡ᒷᓵℸ ̣ ᒲ|| ꖎᔑリ⊣⚍ᔑ⊣ᒷ

coral frigate
#

is this hebrew?

unreal swallow
#

lol

olive echo
#

its minecraft enchantment table

coral frigate
#

lmao ok

coral frigate
#

I came in mid convo. so got confused XD

olive echo
#

lol

#

yes

#

I do

#

I also have a fx-991EX

#

classwiz

unreal swallow
#

Bro fuck this vc cool down

olive echo
#

bro fuck the 3 day wait

#

I wanna talk

#

bruh

#

I wanna play chess anyone wanna go against me

#

.

#

.

#

?

whole bear
unreal swallow
#

That is how it works

olive echo
#

whats israel?

unreal swallow
#

You get 2 weeks free

#

You can get citizenship automatically

#

and you can get a free trip

#

FUCKTARDs

olive echo
#

guys what is israel?

unreal swallow
#

YOU CAN GET A FREE TRIP

#

BIRTHRIGHT

whole bear
#

@candid venture

olive echo
#

GUYS

#

what is israel?

unreal swallow
whole bear
#

^

#

true

olive echo
#

oh you mean the country that stole palestine

unreal swallow
#

Also runs the Chinese, American, and Russian governments

olive echo
#

k

unreal swallow
#

I wish I could talk so bad rn

#

Holy shit

olive echo
#

same

unreal swallow
#

I have so much to say

whole bear
#

Get to 50 msgs

#

We should have a channel without VC permission stuff

unreal swallow
#

30% XD

#

50% bitch

olive echo
#

-_-

unreal swallow
#

Murica FUCK YEAH

olive echo
#

its 43 or smthn in canada

#

we onyl have 5 in the UAE tho

unreal swallow
#

Hey @candid venture How about you stay in lockdown for more than three fuckin days

#

$10 bet he had Corona

coral frigate
#

Israel is real.

candid venture
unreal swallow
#

Per capita cases in Israel are like 5 times US lol

olive echo
unreal swallow
#

@candid venture Israelis are incapable of obeying BB for more than 30 seconds

olive echo
#

ive been in lockdown since moarch...

unreal swallow
#

BB riots everyday

coral frigate
unreal swallow
#

They did

olive echo
#

yes @whole bear

unreal swallow
#

Stole it

#

🙂

olive echo
#

STEALERS

#

you stole it

#

want to pull up the graphs

unreal swallow
#

Only started in 1300

olive echo
#

cuz I have them

unreal swallow
#

Its exile

#

Ye

coral frigate
# olive echo are you sure about that

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...

▶ Play video
unreal swallow
#

lolololol

olive echo
#

but the bottom line is that it wasnt your land

unreal swallow
#

I can't tell who is serious and who isn't

olive echo
#

and you fought and stole it

hidden cove
#

Are you guys playing chess?

olive echo
#

yes

whole bear
#

Yeah @hidden cove

olive echo
#

and having political debates

whole bear
hidden cove
#

Who's playing who?

whole bear
#

You should get out the chips again @hidden cove

hidden cove
#

Lol it's triscuits tonight @whole bear

olive echo
#

someone play against me in chess

whole bear
#

Better make sure mic's on when it's time to eat it, it's a tradition

olive echo
#

k

#

@whole bear wanna play?

fiery hearth
hidden cove
#

But I'm probably done eating sadly 😦

unreal swallow
#

Again, does anyone know whether you can use Tensor for gpus with IDEs other than Visual Studio?

#

Bc fuck visual studio

hidden cove
#

Are you in high school @candid venture ?

unreal swallow
#

Its after high school

#

Its 3 years for men after high school

gentle flint
#

@unreal swallow python modules don't depend on your IDE

hidden cove
#

Well he said he hasn't been in the military yet.

coral frigate
hidden cove
#

Yeah, I know but I'm humoring his Israeli larping @coral frigate

olive echo
gentle flint
coral frigate
#

What is a larping? Sorry i am a boomer

gentle flint
#

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 ...

hidden cove
#

Live Action Role-Playing @coral frigate

unreal swallow
gentle flint
#

pip install it

#

same as you did for vscode

whole bear
#

@candid venture Can you do cybersec?

unreal swallow
#

I did

whole bear
#

Austraila is big on cybersec

hidden cove
#

"Posing" might be an older term.

unreal swallow
#

But after running my program it still said "ignore if not using GPU...blah blah blah"

whole bear
#

At my cadet training we learned about cybersec

olive echo
#

@whole bear

#

make your move

unreal swallow
#

Mosad go brrrrrr

unreal swallow
#

😅whats dat?

olive echo
#

ITS YOUR MOVE

whole bear
#

What do you guys think about "ethical hacking"

olive echo
#

NOT MINE

hidden cove
whole bear
#

@olive echo i left

#

lemme finish this game

#

first

whole bear
coral frigate
# unreal swallow 😅whats dat?

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

unreal swallow
#

O

hidden cove
#

I don't really care for hacking much but I understand its value @whole bear

olive echo
#

I WANNA TALK SO BAD RN

unreal swallow
#

I was just wondering if I could se it with PyCharm bc that is my go-to

#

@coral frigate

hidden cove
#

Someone is destroying their keyboard.

whole bear
#

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

olive echo
#

MAKE YOUR MOVE PLS

#

ITS BEEN AN HOUR

hidden cove
#

lol didn't know how to use Linux and got 5th is pretty good!

#

unless 5th is last...

coral frigate
whole bear
#

Big funding for the comp, free tickets to the capital city.

whole bear
#

And other things that improve security

hidden cove
#

omfg

coral frigate
whole bear
olive echo
#

pretty quiet now

whole bear
#

If you are Jewish it's free

hidden cove
#

Um, yeah, sudo apt-get update is like the first command you learn on Linux

unreal swallow
#

Most people donate though

olive echo
#

@whole bear did you leave the game or smthn

unreal swallow
#

and some big benefactors donate for multiple trips of kids

whole bear
#

yea

olive echo
#

bruh

#

ive been WAITING

whole bear
coral frigate
hidden cove
#

i'd cry too

olive echo
#

⊣𝙹 ⎓⚍ᓵꖌ ||𝙹⚍∷ᓭᒷꖎ⎓

gentle flint
hidden cove
olive echo
#

thanks @whole bear

gentle flint
#

actually it was ls

#

but w/e

olive echo
#

we are good programmers

coral frigate
#

Indians are the best at everything lol..comes with the huge population.

whole bear
unreal swallow
#

@coral frigate Is there a different import statement for gpu?

hidden cove
whole bear
#

blacks

olive echo
#

I am undefeated

gentle flint
olive echo
#

literally

hidden cove
#

Black people dominate sports

olive echo
#

WHAT!/

unreal swallow
#

Like something other than import tensorflow?

#

because I'm getting the same error

whole bear
#

K guys I gtg, it was fun

olive echo
#

¯_(ツ)_/¯

coral frigate
olive echo
#

WHAT ABOUT GAG REFLEXES?

#

you need to chill broskee]

somber heath
#

Appropriate conversational choices, folks.

coral frigate
olive echo
#

istg

#

ok im muting this kid

coral frigate
#

Muting whom?

olive echo
#

@whole bear

whole bear
#

yes

hidden cove
#

later

olive echo
#

lmfaoooooooooooooooooooo

whole bear
#

dont @mention me

olive echo
#

I got class

hidden cove
#

lol @ opal

whole bear
#

unless it is sirous

olive echo
#

¯_(ツ)_/¯

coral frigate
#

@unreal swallow dm me if you got any problems.

olive echo
#

quiet again

hidden cove
#

@whole bear Why have you been changing your handle so much?

whole bear
#

idk

#

to get the fbi confuzed

hidden cove
#

Bruh FBI has your IP

gentle flint
#

I'm coming for you, oh, I'm coming for you

whole bear
#

little do they know im using 500 difrent vpns

hidden cove
#

What's your ping?

whole bear
#

6128

gentle flint
#

he has bad pingue

hidden cove
#

I'd bet

somber heath
#

noot noot

hidden cove
#

(mother fucker)

gentle flint
whole bear
#

ok

#

holy fuck

gentle flint
#

wth

somber heath
#

Pingu. Noot noot.

hidden cove
#

How do pingu's brains not get scrambled doing that?

gentle flint
#

he's an alternative woodpecker

hidden cove
#

lol

whole bear
#

Pingu. Noo*dies*

candid venture
hidden cove
#

idfk how to spell pingu

whole bear
#

Pingu

hidden cove
#

ty

whole bear
#

u do know

#

u spelt it write

hidden cove
#

tanks

#

What chess website are you guys using?

olive echo
#

pls dont

whole bear
gentle flint
#

@hidden cove lichess

hidden cove
#

Ah

#

what game mode?

#

Is someone streaming this?

whole bear
hidden cove
#

Who's playing who?

whole bear
rigid nest
#
(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

stuck furnace
#

Yo @sick cloud

sick cloud
#

@stuck furnace sup

stuck furnace
#

Sup, how's it going?

sick cloud
#

gud, and u ?

stuck furnace
#

Yep good thanks lemon_pleased

sick cloud
#

why aren't u speaking ?

stuck furnace
#

Erm, I usually don't speak on mic.

#

One of these days I will 😄

#

Hey man @digital jackal

sick cloud
#

did he just leave ?

#

nvm him

stuck furnace
#

Gone to the other channel 😄

sick cloud
#

@stuck furnace do u wanna see the discord bot i was making for my friends etc ?

stuck furnace
#

Yeah sure!

sick cloud
#

go there:

stuck furnace
#

The link's having a hard time loading...

#

What does it do?

sick cloud
#

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
stuck furnace
#

Oh nice!

#

The second one is very specific, but actually something I've needed in the past 😄

#

Have you got it up and running?

sick cloud
#

yep, it running perfectly

#

no errors

stuck furnace
#

Very nice

#

The kill command seems a bit violent 😄

sick cloud
#

i mean, my friends use that the most

#

$kill <user> <user>

stuck furnace
#

Hey @digital jackal

sick cloud
#

@digital jackal what do u wanna talk about ?

digital jackal
#

i need help

#

with my code

stuck furnace
sick cloud
#

@digital jackal i can't, but i'm having luch now

still silo
#

@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)

sick cloud
still silo
#

lolz.. ah gotcha

sick cloud
#

@still silo my friends fell in love that command though

still silo
#

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"

lethal ingot
#

👋

#

yes

#

we can

sick cloud
#

nvm

#

i was speaking to my friend

#

xD

still silo
#

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

vivid igloo
#

ANN

#

Algorithm Neighboor Nearest

craggy zephyr
#

Artificial neural network

vivid igloo
#

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.

still silo
#

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

vivid igloo
#

Do you have a code example?

sick cloud
#

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 ?

neon sleet
#

what is roblox?

#

some game?

sick cloud
#

have have u not heard of roblox ?

neon sleet
#

nah

sick cloud
#

F for u

neon sleet
#

haha

sick cloud
#

its a online gaming platform

#

where people make games

#

and u play it

#

online

#

most of the games are for free

neon sleet
#

hmmm...

sick cloud
#

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:

pliant atlas
neon sleet
#

because I don't know it?

#

have heard of it for sure, but never looked it up

sick cloud
#

don't judge me for using light mode

neon sleet
#

we will indeed!

#

you are not allowed to do it!

sick cloud
#

@stoic ore hello

#

what ?

#

10 hours later

#

reasons

#

idk the question though

#

just type it pls

stoic ore
#

@somber heath < Do u Wanna speak ?

sick cloud
#

he was here befor-

neon sleet
#

he might have just left

#

there is no need of reason to leave I believe?

sick cloud
#

@stoic ore which country do u belong to ?

neon sleet
#

he didn't speak much

sick cloud
#

just type it pls

#

i got the worst speaker

#

@stoic ore

neon sleet
#

turkey he said?

stoic ore
#

hmm okay ıt could be my mıcrophone let me check,

sick cloud
#

not ur microphones falut @stoic ore

neon sleet
#

yeah, its fine

sick cloud
#

yes, just speak a bit slower

#

nvm

#

i like the way u said SoFtwArE engineer

#

@stoic ore

#

hello ?

#

why is it so quiet ?

neon sleet
#

hmm... I coding something atm

sick cloud
#

in atom ?

neon sleet
#

vs code

sick cloud
#

what other editor do u use ?

#

and ?

still silo
#

atm = at the moment

sick cloud
#

@neon sleet what about notepad ++ ?

still silo
#

emacs ftw! 😉

sick cloud
#

@neon sleet what about IDLE ?

#

@neon sleet what about cmd ?

#

cmd = command propmt

still silo
#

what about

cat <<EOF
type your code here
EOF
sick cloud
#

@neon sleet u can write python in cmd

#

atleat in windows

#

go to cmd, type in python

#

it opens up the interpreter

neon sleet
#

yeah, but you can't write scripts that way

sick cloud
#

but you could code ther-

neon sleet
#

I just use it for dir or help commands

#

btw you can just write a script in cmd using vim

sick cloud
#

i've never used vim tbh

#

have you ?

neon sleet
#

yep

sick cloud
#

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
neon sleet
#

wait, there is a person in help channel, let me see what he needs help with

olive night
#

wrong channel

#

sorry

sick cloud
#

what we are doing though @olive night

wise cargoBOT
#

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.

neon sleet
#

so is everything silent or I can't hear anything

whole bear
#

everything is silent

sick cloud
#

yep

whole bear
#

@pseudo sun any help needed?

sick cloud
#
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
neon sleet
#

!e

fact = lambda n: [1,0][n>1] or fact(n-1)*n
# test it ...
print(fact(53))
wise cargoBOT
#

@neon sleet :white_check_mark: Your eval job has completed with return code 0.

4274883284060025564298013753389399649690343788366813724672000000000000
neon sleet
#

cool

sick cloud
#

do u like to work with lambdas ?

neon sleet
#

hmm... I don't hate them either

sick cloud
#

do u often use them ?

#

or

neon sleet
#

if required

sick cloud
#

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
neon sleet
#

wat is dis

sick cloud
#

lang discord was wrttien in

#

bye

whole bear
#

Hi

pseudo sun
#

is there anyone who can help that I text I need explanation cause i dont know how it work. thanks in advance

whole bear
#

yeet

#

bruh

gusty siren
#

yeah booiii

whole bear
#

@gusty siren XDDDDD

sick cloud
#

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 ?

gusty siren
#

why i can't speak

somber heath
#

@gusty siren Check the verification channel. 🙂