#voice-chat-text-0

1 messages · Page 614 of 1

fringe turret
#

file_p=input("enter file path ")

#

Traceback (most recent call last):
File "C:\Users\nadav\Desktop\פייתון\hangman game.py", line 48, in <module>
main()
File "C:\Users\nadav\Desktop\פייתון\hangman game.py", line 45, in main
secret_word=choose_word(file_p,input("enter index "))
File "C:\Users\nadav\Desktop\פייתון\hangman game.py", line 6, in choose_word
text2=open(file_path,'r')
PermissionError: [Errno 13] Permission denied: 'C:\Users\nadav\Desktop'

whole bear
granite field
#
while True:
    i = 0
    for _ in range(10):
        chosenProxy = getProxy()
        print(f'[INSTANCE {i} OPENED] with proxy {chosenProxy}')
        future = executor.submit(methodToRun, i, chosenProxy)
        executor.submit(threadTimeout, future)
        time.sleep(1)
        i += 1
    print('Sleeping for 5 and a half mins')
    time.sleep(330)```
#
def threadTimeout(thread):
    thread.result(timeout = 300)```
jovial meadow
gentle flint
somber heath
#

@pearl ocean imagemagick

wise cargoBOT
#

Hey @pearl ocean!

Uh-oh! It looks like your message got zapped by our spam filter. We currently don't allow .txt attachments, so here are some tips to help you travel safely:

• If you attempted to send a message longer than 2000 characters, try shortening your message to fit within the character limit or use a pasting service (see below)

• If you tried to show someone your code, you can use codeblocks
(run !code-blocks in #bot-commands for more information) or use a pasting service like:

https://paste.pythondiscord.com

pearl ocean
gentle flint
gentle flint
gentle flint
frozen oasis
#

hey

gentle flint
#

uk keyboard

#

us keyboard

#

ij

somber heath
#

§d 😏

gentle flint
#

gentle flint
somber heath
#

_dict = {(x,y):'' for x in range(3) for y in range(3)}

wind cobalt
#

_dict = {(x,y):'' for x in range(3) for y in range(3)}
@somber heath understood

#

thanks

gentle flint
wind cobalt
#

Pain is bread

gentle flint
#

pain is you

wind cobalt
#

why is pain?

gentle flint
#

french is pain

#

for you

#

c'est du pain

pearl ocean
gentle flint
whole knot
gentle flint
crisp rune
#

NumPy

plush plover
#

MatPlotLib

crisp rune
whole bear
#

best course?

whole bear
#

hi

#

hi again

severe elm
#

cologn

#

it's a city in germany

whole bear
rigid nest
#

Comfy or not comfy desktop?

plush plover
#

^^ Comfy

rigid nest
#

<3

pastel sedge
whole bear
#
import requests
import threading
from socks import GeneralProxyError


proxies = open('proxies.txt', 'r').readlines()
proto = 'socks4'
threads = 10
list = []

def main():

    r = requests.Session()
    for proxy in proxies:
        try:
            response = r.get('https://azenv.net/', proxies={'https':'socks4://' + proxy}, timeout=5)
            if response:
                if response.status_code == 200:
                    print(f'[+] Working {proxy}')
                else:
                    print(f'[-] Not working {proxy}')
            else:
                print(f'[-] No response {proxy}')

        except requests.exceptions.ConnectTimeout:
            print(f'[-] Not working {proxy}')
        except GeneralProxyError:
            print(f'[-] Not working {proxy}')
        except requests.exceptions.ConnectionError:
            print(f'[-] Not working {proxy}')
        except requests.exceptions.ChunkedEncodingError:
            print(f'[-] Not working {proxy}')
        except requests.RequestException:
            print(f'[-] Not working {proxy}')

for _ in range(threads):
    t = threading.Thread(target=main, args=())
    list.append(t)
    t.start()
pastel sedge
whole bear
#

print("hello world")

rigid nest
#
print("hello world")
#

enter after backtickspython

#

then code, then enter, then backticks

pastel sedge
#
$ python -c 'import this'
twilit lagoon
#
    l = len(arr)
    if l <= 1:
        return arr
    med = arr[l//2]
    lower, mid, upper = [], [], []
    for num in arr:
        if num <= med:
            if num != med:
                lower.append(num)
            else:
                mid.append(num)
        else:
            upper.append(num)
    return quicksort(lower)+mid+quicksort(upper)```
coarse tiger
#
## Scrape item details from rolimons
def load_item_details():
    resp = requests.get(
        url="https://www.rolimons.com/itemtable",
        headers={"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36"})
    item_details_json = re.search('item_details = (.+?);\r?\n', resp.text).group(1).strip()
    item_details = json.loads(item_details_json)

    item_details = {
        k: {
            "projected": v[19]==1,
            "rare": v[21]==1,
            "value": v[-1]
        }
        for k,v in list(item_details.items())
    }
    return item_details

item_details = load_item_details()

Im getting a json decode error from the requests library

crimson light
#

\s

#

\\s

#

\\\\

#
class StringBuilder:
    def __init__(self, start=""):
        self.string = start

    def add(self, string):
        self.string += string
        return self

    def add_not_string(self, obj):
        self.string += str(obj)
        return self

    def build(self):
        return self.string

cheese_and_2_chips = StringBuilder("cheese").add(" and ").add_not_string(2).add(" chips").build()
crimson light
stuck furnace
#

yo

crimson light
#

hi

stuck furnace
#

just read the letters out

#

yep

#

ok

#

got it

#

one sec

#

I'm slow at reading code

#

so it works?

crimson light
#
>>> print("""This is
... a python console
... example!""")
This is
a python console
example!
>>>
stuck furnace
#

did you try doing a recursive quicksort implementation first?

#

ah

#

hold on, I need to consult CLRS

#

classic algorithms book

#

just LX

crimson light
#

ell ecks enn enn

stuck furnace
#

erm, your implementation of the partition part of the algorithm is different

#

so it's too slow?

#

is it slow for certain kinds of input?

#

because quicksort is technically O(n^2) in the worst case

#

hmm

granite field
#
SHOW FULL PROCESSLIST;```
stuck furnace
#

maybe you could try profiling the code?

#

erm, running your code with cprofile

#

import cProfile

#

then do cProfile.run('your code here')

#

should come with cpython

#

it gives you a breakdown of the runtime

#

I've never found a good way to profile memory with python

#

oh yeah that's probably the easier way to do it

#

I looked it up: python -m cProfile [-o output_file] [-s sort_order] (-m module | myscript.py)

#

I thought it might give some insight

#

whey

#

any useful info?

#

haha

#
ncalls
for the number of calls.

tottime
for the total time spent in the given function (and excluding time made in calls to sub-functions)

percall
is the quotient of tottime divided by ncalls

cumtime
is the cumulative time spent in this and all subfunctions (from invocation till exit). This figure is accurate even for recursive functions.

percall
is the quotient of cumtime divided by primitive calls
#

go ahead

#

you using ssh?

#

millibytes haha

#

hey @twilit lagoon I tried running some other in-place quicksort implementations I found on the net, and my own based on CLRS, and they all had pretty terrible performance

#

so it might not be your code

frosty lodge
stuck furnace
#

still working on LightVading's problem

#

but he's gone

jovial meadow
#

[1,2,3,2,1,2,3,4,3,2,1]
^ ^
peaks

[1,2,3,2,1,2,3,4,3,2,1]
^
valley

granite field
#

[1,2,3,4,3,1,2,1]

jovial meadow
#

[1,2,3,4,3,1,2,1]
^ ^

[1,2,3,4,3,1,2,1]
^

granite field
#

Waiting for table metadata lock

jovial meadow
granite field
granite field
jovial meadow
#

A van Emde Boas tree (Dutch pronunciation: [vɑn 'ɛmdə 'boːɑs]), also known as a vEB tree or van Emde Boas priority queue, is a tree data structure which implements an associative array with m-bit integer keys. It performs all operations in O(log m) time, or equivalently in O(l...

distant hamlet
#

intresting

jovial meadow
gentle flint
#

@jovial meadow what is your latency

#

click on the voice connected thing

#

bottom left corner

#

it says it

#

gfever - 150
opalmist - 328
hovercraft - 11

#

it's on an eu server

#

@somber heath

somber heath
wind cobalt
#
     if type(x) == list:
        x.append("hello")
     if type(x) == str:
        x = x + "hello"
#
     if type(x) == list:
        x.append("hello")
     if type(x) == str:
        x = x + "hello"

@wind cobalt is this polymorphism?

green needle
#

C:\Users\Artur\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Python 3.8

gentle flint
#
mydict = {
"firstkey":"firstvalue",
"secondkey":"secondvalue"
}
#

mydict["firstkey"]
returns
"firstvalue"

wind cobalt
#

Why bacon.index('cat') return only the first position?

#

accidently downloaded pimp instead of pip

gentle flint
#

you mean
why does it only return the position of the first occurence of "cat" instead of the position of both occurences

wind cobalt
#

you mean
why does it only return the position of the first occurence of "cat" instead of the position of both occurences
@gentle flint yes, mi spik inglish bad

gentle flint
#

spreek dan nederlands

wind cobalt
#

but thank you for reiterating my question

gentle flint
#

it's literally in the definition on w3schools

#

Note: The index() method only returns the first occurrence of the value.

wind cobalt
#

thanks

gentle flint
#

np

whole bear
#
while superlist:
    for _ in range(threads):
        t = threading.Thread(target=main, args=())
        time.sleep(0.23)
        t.start()
else:
    print('No proxies left!')```
wind cobalt
#
threads = list()
for _ in range(10):
  t = threading.Thread(target=do_something)
  threads.append(t)
for t in threads:
  t.start()
#DO STUFF HERE
for t in threads:
  t.join()
whole bear
#

chromedriver = 'chromedriver.exe'

whole bear
#
while superlist:
    for _ in range(threads):
        t = threading.Thread(target=main, args=())
        time.sleep(0.23)
        t.start()
else:
    print('No proxies left!')```
#
import requests
import threading
from socks import GeneralProxyError
from queue import Queue
import time

proto = 'socks4'
threads = 50
superlist = []
proxy = open('proxies.txt', 'r').read().splitlines()
amtproxies = len(proxy)
for e in proxy:
    superlist.append(e)
print(f'Loaded {amtproxies} proxies.')

def main():
    r = requests.Session()
    try:
        response = r.get('https://azenv.net/', proxies={'https':'socks4://' + superlist[0]}, timeout=10)
        if response:
            if response.status_code == 200:
                print(f'[+] Working {superlist[0]}')
            else:
                print(f'[-] Not working {superlist[0]}')
        else:
            print(f'[-] No response {superlist[0]}')

    except requests.exceptions.ConnectTimeout:
        print(f'[-] Not working {superlist[0]}')
    except GeneralProxyError:
        print(f'[-] Not working {superlist[0]}')
    except requests.exceptions.ConnectionError:
        print(f'[-] Not working {superlist[0]}')
    except requests.exceptions.ChunkedEncodingError:
        print(f'[-] Not working {superlist[0]}')
    except requests.RequestException:
        print(f'[-] Not working {superlist[0]}')
    superlist.pop(0)


while superlist:
    for _ in range(threads):
        t = threading.Thread(target=main, args=())
        time.sleep(0.23)
        t.start()
else:
    print('No proxies left!')
#
while superlist:
    for _ in range(threads):
        proxy = superlist.pop(0)
        t = threading.Thread(target=main, args=(proxy,))
        time.sleep(0.23)
        t.start()
else:
    print('No proxies left!')```
dim wagon
#

threadgroup python

wind cobalt
wind cobalt
dapper meteor
#

rock

whole bear
#

paper

dapper meteor
#

no

whole bear
#

rock

wind cobalt
#

scissors

dapper meteor
#

rock

whole bear
#

rock

wind cobalt
#

paper

dapper meteor
#

paper

#

i will breath into my mic

#

@wind cobalt i am elon musk. do you believe

#

yeah im just a fragment of your imagination. an illusion

#

poop

#

shit poop

#

i have to keep it pg

whole bear
dapper meteor
#

sorry

#

that was annoying

#

whos going to leave first

#

my mic work?

#

welp

vital scaffold
#

Boys

#

I am desperate as hell

#

can i ask you for hep

#

My employer has told me out of nowhere I need to accomplish these things.. or else.. I don't actually know how to use Python, but am obviously motivated to learn. I'm not looking to get this done for me, but I would love a place to even start. I'm not even sure what kind of tutorials/processes/applications I need - and Im told I need this done in about a week

Connect to any REST API (source)
Query any of the available endpoints to retrieve data
Modify the data in any way you wish
Save the modified data in a DB of your choice (destination)
Log your actions for later debugging
Based on the above task/results
How do you know if the ‘sync” (ETL) was successful?
Can you write a ‘test’ for it? *

#

my copy pasta

candid venture
gentle flint
candid venture
#
response = requests.get("http://api.open-notify.org/iss-pass")
whole bear
#

@candid venture your youtube

supple marsh
granite field
#
from flask import Flask
app = Flask(__name__)


@app.route('/')
def hello():
    return "Hello World!"

if __name__ == '__main__':
    app.run()```
#

@fast drift

dapper meteor
#

oops i was talking in ot

#

sorry for the scare

somber heath
#

python -m pip install *modulename*

gusty lodge
whole bear
#

^

gusty lodge
#

Just a beginner just asking btw

whole bear
#

Itd just be pip install discord
im pretty sure but yea

main mirage
#

alright cool I'm a beginner looking to code a personal bot just looking for a little bit of help

gusty lodge
#

update pip?

main mirage
#

I'm using python 3.7.4

gusty lodge
#

I guess you need to go into your python directory and then update the pip

#

or try pip3 ig

main mirage
#

I having problems just trying to start the bot

stuck furnace
#

hey

gusty lodge
#

hwey

#

hey

somber heath
ruby wind
#

<@&267628507062992896> Can someone enable screenshare for at least one the VC's? It's hard to have someone debug your stuff when you can't show them easily

scarlet plume
#

we might be thinking about having VC's where people can screenshare, but only limited to 2-3 people

#

but currently, we can't moderate that very well with open VC's

ruby wind
#

i mean just like say it doesn't really have moderation

scarlet plume
#

it does, we get plenty of reports about VC already, even with screenshare off

ruby wind
#

i mean

#

unless they send an mp3 or something

scarlet plume
#

well, they can't anyway

#

mp3s aren't on our file whitelist

#

i think

ruby wind
#

i just think you should add a screenshare channel or two and say that they are pretty much unmoderated

scarlet plume
#

that's a horrible idea

#

to be quite frank

ruby wind
#

i mean

#

why

scarlet plume
#

that'd be shoving the channel in the corner and letting people do whatever they want in there

ruby wind
#

ye

scarlet plume
#

we're not trying to lose our partner status

ruby wind
#

oh yea

scarlet plume
#

that's one thing

ruby wind
#

yeah thats the reason im not planning on partnering my server ever, i would have to delete nsfw channels and stuff

scarlet plume
#

and we do not want anything inappropriate on this server

ruby wind
#

i mean like

#

you can say that yall try your best but people acting bad in vc/video is hard to moderate

#

so like be warned on entering or something

scarlet plume
#

be warned on entering?

ruby wind
#

like have a thing in the rules or something that says that the voice channels are hard to moderate effectivly and that theres a possiblity of something bad in there

scarlet plume
#

there's a possiblility of something bad anywhere

#

i have seen things in text channels that i should've never seen in my entire life lol

#

you should just report it and we'll take care of it the best we can

ruby wind
#

i mean

#

if that's the case im still not seeing why screenshare is a leap from voice-chat

scarlet plume
#

because there is no evidence afterwards

ruby wind
#

i mean

#

how do you ban people saying the n word in VC then

#

same deal

scarlet plume
#

because one of us is in the VC or we get multiple witnesses

#

either way, we're not turning on screenshare

ruby wind
#

same case with screenshares

scarlet plume
#

this has been discussed millions of times before

ruby wind
#

fine, but just saying like 95% of all programming discord's have screenshare on without a problem

scarlet plume
#

we are on the front page of discord discovery

ruby wind
#

i mean a lot of those are verified

scarlet plume
#

that doesn't really mean much

#

we literally get about a thousand people joining per day, which means there are lots of trolls as well

ruby wind
#

i mean a lot of game servers with more members have screenshare enabled as well

scarlet plume
#

sure

ruby wind
#

idk man, just it would improve the learning experience of many with the ability to show others what they are currently doing

scarlet plume
#

i see your point there yes, that's why we're thinking of VC's with screenshare enabled, but limited to 2-3 members

ruby wind
#

alright

static storm
#

what about a system to only allow screenshare with staff supervision

somber heath
#

There needs to be an accountability. A trusted closed circle of people who need to have it, only, I feel would be the most appropriate. So, as it is.

#

But I'd be open to having my mind changed.

#

If it was a more private server of just friends, whatever. Given this server's prominence and position, however...

#

You wouldn't give people open access to one of the display screens in Time(s?) Square.

#

It'd be dicks galore within the first ten minutes.

#

Supervised could work.

#

If people really need to screenshare, they can do it in dms or group dms or in their own servers.

#

So less the server administration's responsibility to police.

#

I can understand people's surprise and frustration when they find out they can't, given they can elsewhere, but that doesn't confer entitlement.

wind cobalt
#

a tutor system perhaps?

#

the tutor picks up the question and streams the answer

whole bear
#

hi

#

@olive sentinel can i sellout my other channel

#

in discord

#

???

balmy nymph
#

@errant helm why am I seeing gooses on the stream preview haha

errant helm
#

it's a duck!

quasi condor
#

there's no such thing as gooses anyway

#

the correct plural is goosi

wind cobalt
#

geese?

strong spire
#

lmao

gentle flint
#

gosse

sly jolt
#

@whole bear Do you mean sellout your other server? If so, no.

#

@errant helm Greetings, my dude.

#

I have no idea what's occuring except I'm guessing 1.16.1 ports are out.

#

I mean it is 5am for me

#

@swift valley 👋

#

How goes it, fellow moderator?

swift valley
#

Just gonna watch the stream while I do my English assignment lol

sly jolt
#

I have a full understanding of what's currently occuring

swift valley
#

Really should get into a JVM language some time

sly jolt
#

@dim wagon If everyone gets it, then it may become spammy.

#

there's always github links/screenshots

#

@errant helm I believe in you.

#

moderator != modification

swift valley
#

mod obviously stands for modulo smh

sly jolt
#

I do modify people's existance throughout the server.

swift valley
#

static is a very weird keyword in C

sly jolt
#

I do need to learn how to program in C

#

so I can make sick and cool stuff for arch

#

I mean it's either that or Rust

#

both are good

swift valley
sly jolt
#

bruh moment

#

at least you have diversity in your languages

swift valley
#

I'm actually quite surprised 30% of it is Haskell

sly jolt
#

I'm pretty sure I haven't written in java

#

if anything it's like

#

a couple lines

#

maybe packages are built in java and I shoved them in repos

#

tbh I should have a large amount of C++ in there

#

bruh I have no fukin clue I've been a mod for like a month

#

@errant helm

swift valley
#

Same

#

I need to do spellcheck on my assignment before I turn it in cavedude

sly jolt
#

lmAO

#

@swift valley I can do it for u

#

lel

dim wagon
#

@sly jolt how can someone became a mod in this discord?

sly jolt
#

You don't directly become a mod. There's a nomination process and you have to become a helper first.

swift valley
#

Turned it in, time to go back to writing a LISP

sly jolt
#

have fun in neovim

#

@whole bear can you not

whole bear
#

sorry

sly jolt
#

@errant helm @swift valley Imma head out, have a good one.

swift valley
#

👋

#

@rare tinsel It's fairly easy to display data with it I guess

rare tinsel
#

can anyone unmute me?

#

@swift valley thanks!

whole bear
#

@whole bear Do you mean sellout your other server? If so, no.
@sly jolt YES I WAS meanin other searver ok

errant helm
#

if anyone was watching and is curious on progress

#

close enough!

potent quest
#

yea close enough lol

whole bear
#

ya

soft blade
#

good job dude

wind cobalt
obtuse tide
#

hi

mystic marlin
#

Anyone in voice chat?

soft blade
#

@wind cobalt but your code work right?

wind cobalt
#

yeah

#

it works fine

soft blade
#

yeah its ok, the point is just to know how to get it working I don't think he meant the same as the pic, also if you want it the same you can change the order of the stuff dict .

wind cobalt
#

alright

#

thanks

stuck furnace
#

hi

#

hello!

#

how are you?

#

which countries are you guys from?

#

your audio is cutting out @mystic marlin

#

have you ever heard of approval voting?

#

fix your political system with this one weird trick

whole bear
#

@mystic marlin

stuck furnace
#

check your input sensitivity settings

whole bear
#

x = x + 1

stuck furnace
#

that's a common misunderstanding about the different meaning

#

of that expression in mathematics

green needle
#

0 = 0+1

stuck furnace
#

and imperative programing

#

yeah, so we use the symbol = for variable assignment in programming

#

but it's a bit of an abuse of notation

#

we should use something like <-

#

like a leftwards arrow

#

In mathematics x = x + 1 is just an unsatisfiable equation

#

i.e, there is no value of x that will make the equation true

#

at least not in standard arithmetic

#

In programming, it's saying compute the value on the RHS and update the computer's memory to assign the result to the variable on the LHS

#

is there a minimum word-count?

#

this seems like one of these things where they have their own terminology that is specific to the course

#

erm, what dodgy websites are you vitising?

#

I don't think this is server-appropriate

visual crow
#

hey

#

hi gershom

#

whats up man

#

im a simp

#

oh you are

stuck furnace
#

So they just want you to list PC, games console, etc?

visual crow
#

f me

stuck furnace
#

Myst

#

90s

#

It's like a slideshow, and you click to move around

#

I think I played it when it originally came out

#

but I was like 8 so I had no idea what I was doing

#

oh wait nvm, 1993, that's before my time

#

I bought it in a steam sale last year, and replayed it. It's actually pretty fun.

#

Very atmospheric.

#

Lincoln?

#

I've heard it's a nice city

whole bear
#

full of druggies

visual crow
#

who?

whole bear
#

???

visual crow
#

wtf

stuck furnace
#

I've seen that guy's videos

#

two minute papers

visual crow
#

who is recording?

#

i see

#

okay i was like WT....f

whole bear
#

whos

visual crow
#

two minute papers

stuck furnace
#

yep

#

mostly AI

#

what do you do? @whole bear

visual crow
stuck furnace
#

so you're a sandwich artist?

#

a pandas artist?

#

Are there any companies that have offices in both Brazil and the UK? @plucky estuary

#

The current government has not been particularly pro-immigration

#

Do you just want to work here temporarily, or move permanently?

visual crow
#

I've heard that moving to canada provides better leverage to get into US. But mexico is another story

stuck furnace
#

You shouldn't have any problems in the UK with hostile people, at least not in larger cities like London.

#

Maybe look at database management jobs in the NHS?

#

I think you're more likely to be able to migrate if your work relates to health-care.

#

7.25 USD per hour @plucky estuary

whole bear
#

8.72

stuck furnace
#

1 GBP = 1.31 USD

plucky estuary
#

£

#

1 mounth in brazil 1160 USD, it's like 5800 R$

#

in my job i receive 1700 R$

stuck furnace
#

I don't know much about trading bots, but maybe don't trade with real money.

#

Unless you really know what you're doing, you'll probably not make a profit.

#

MIT OCW? @whole bear

plucky estuary
#

@stuck furnace brazil == 2,125 USD per hour .-.

visual crow
#

@plucky estuary basically a place with good internet connection to access cloud serverd and build an online empire

#

the BIG dream

plucky estuary
#

That's awesome, in some months of work you can buy like a tesla car.

visual crow
#

if corona_death_rate > common_cold_death_rate
print("corona is true")
if corona_death_rate < common_cold_death_rate
print("corona is false")

stuck furnace
#

folding at home?

#

folding at home was basically a distributed super-computer

#

I've tried both, they're the same @covert garden

#

@covert garden oh yeah I loved that show

#

although the plot got a bit farfetched towards the end

#

Is skins even still going?

whole bear
#

no

stuck furnace
#

Amsterdam? @covert garden

feral bramble
#

i need help

#

help

visual crow
#

whats the whole screen

feral bramble
visual crow
#

good job!!!!

whole bear
#

is that c

feral bramble
#

@whole bear python

whole bear
#

oh okay

tidal nymph
#

@void field try ACM ICPC

void field
whole bear
tidal nymph
#

@limber iron Laravel

feral bramble
#

wat

median sphinx
#

that's cute

feral bramble
#

what

whole bear
#

just like you

feral bramble
#

TECH WITH TIM

whole bear
#

fit

median sphinx
#

yep that's me (I wish)

feral bramble
#

lol

#

i broke the speaker

#

HELP

tidal nymph
#

buy a new one

whole bear
feral bramble
#

you bia-

#

8.8.8.8

void field
#

6.6.6

tidal nymph
#

127.0.0.1

limber iron
#

10.0.0.1

void field
#

4.20.6.9

covert garden
#

I PEE IN THIS CHAT

void field
#

dox me

whole bear
#

1.34.2.5

feral bramble
#

An Internet Protocol address (IP address) is a numerical label assigned to each device connected to a computer network that uses the Internet Protocol for communication. An IP address serves two main functions: host or network interface identification and location addressing.

void field
#

raid my back door bby xoxox

tidal nymph
#

@covert garden start with CTF if you love hacking 😄

#

Capture the flag

#

we are hosting a new event

feral bramble
#

today?

#

:D

tidal nymph
#

but its online sorry no drinking 😂

feral bramble
#

YESSSS

tidal nymph
#

no end of the mounth

feral bramble
#

ooh

tidal nymph
#

*month

feral bramble
#

@parse

tidal nymph
#

yeah

feral bramble
#

u sure?

tidal nymph
#

yeah wanna check our site ?

feral bramble
#

sure

tidal nymph
#

give me a sec

visual crow
#

146.104.170.146

tidal nymph
visual crow
#

34.56.208.248
39.35.134.143
132.10.229.224
253.202.148.13
179.71.112.243
171.182.169.155
2.17.163.48
84.65.158.116
95.35.230.24

all my friends ip from my logs

feral bramble
#

random ip

#

lol

visual crow
#

234.225.236.80
71.134.118.19
92.137.133.103
161.204.161.198
168.19.138.123
48.53.110.58
123.218.176.151
201.163.230.220
156.72.158.15
179.215.65.220
224.103.137.251
208.57.255.202
146.190.145.79
36.59.227.236
63.156.213.255
36.103.70.9
73.60.145.156
124.87.160.121
119.13.240.24
106.46.208.238
68.115.148.195
10.127.117.77
151.58.137.26
237.252.0.107
98.121.240.243
167.30.243.219
166.78.204.197
207.202.107.68
199.110.64.37
29.34.69.238
66.210.18.73
177.140.25.203
247.34.214.224
25.228.233.220
113.168.105.146
206.248.136.171
124.178.97.195
80.166.120.33
221.223.62.210
29.118.91.184

feral bramble
#

234.225.236.80
71.134.118.19
92.137.133.103
161.204.161.198
168.19.138.123
48.53.110.58
123.218.176.151
201.163.230.220
156.72.158.15
179.215.65.220
224.103.137.251
208.57.255.202
146.190.145.79
36.59.227.236
63.156.213.255
36.103.70.9
73.60.145.156
124.87.160.121
119.13.240.24
106.46.208.238
68.115.148.195
10.127.117.77
151.58.137.26
237.252.0.107
98.121.240.243
167.30.243.219
166.78.204.197
207.202.107.68
199.110.64.37
29.34.69.238
66.210.18.73
177.140.25.203
247.34.214.224
25.228.233.220
113.168.105.146
206.248.136.171
124.178.97.195
80.166.120.33
221.223.62.210
29.118.91.184234.225.236.80
71.134.118.19
92.137.133.103
161.204.161.198
168.19.138.123
48.53.110.58
123.218.176.151
201.163.230.220
156.72.158.15
179.215.65.220
224.103.137.251
208.57.255.202
146.190.145.79
36.59.227.236
63.156.213.255
36.103.70.9
73.60.145.156
124.87.160.121
119.13.240.24
106.46.208.238
68.115.148.195
10.127.117.77
151.58.137.26
237.252.0.107
98.121.240.243
167.30.243.219
166.78.204.197
207.202.107.68
199.110.64.37
29.34.69.238
66.210.18.73
177.140.25.203
247.34.214.224
25.228.233.220
113.168.105.146
206.248.136.171
124.178.97.195
80.166.120.33
221.223.62.210
29.118.91.184

ivory shuttle
#

what are you guys talking about?

#

dude wtf

tidal nymph
#

just wasting time

ivory shuttle
#

why is this dude leaking his friends ip's

feral bramble
#

@ivory shuttle it's from a random ip website

visual crow
feral bramble
#

lol

whole bear
#

its not its all of us that are in the call

tidal nymph
#

@muted rapids nani ?

stuck furnace
#

hey, just joined, what was that about?

tidal nymph
#

hey, just joined, what was that about?
@stuck furnace lots of stuff 😂

visual crow
#

@feral bramble what system do you like using to hack?

feral bramble
#

wdym by that

tidal nymph
#

windows 98 is the best

feral bramble
#

ah

visual crow
#

like os

feral bramble
#

none

visual crow
#

hmm seems like the best way to hack.... maybe a machete is more ur style?

feral bramble
#

nah

#

i actually like to hack on a windows 10.9.1 pro edition

visual crow
#

okay, i see

#

I have kali in a vm that i use

tidal nymph
#

yeah

stuck furnace
#

Jim Browning

#

James Veitch?

whole bear
visual crow
#

hes awesome

stuck furnace
#

I which I was good with that kind of thing

#

My parents get so many scam calls

tidal nymph
#

have you tried parrot os ? @visual crow

whole bear
#

5000 words on this

visual crow
#

@tidal nymph ive used it but it is not general use. and it is unstable

stuck furnace
visual crow
#

but kali in a vm in ubuntu is perfect

#

@tidal nymph

tidal nymph
#

yeah i have the same idea

limber iron
tidal nymph
#

@limber iron can u send the code ?

limber iron
ivory shuttle
#

boards-home probably isn't a name in your urls.py file

#

show us that

#

the code for urls.py @limber iron

limber iron
feral bramble
#

hippity

#

hoppity

#

your code is my property

ivory shuttle
#

no not the html

limber iron
#

urls sorru

#

and then it includes other url patterns from here

ivory shuttle
#

hmm

limber iron
#

this page here includes urls from the last urls file

#

as u can see the includes

tidal nymph
#

@limber iron i think you should return a json response instead of redirect function in your register file

limber iron
#

i thought that was just a data storing format

tidal nymph
#

i havent worked with django but i think that is not a response

#

use this to check

#

responseData = {
'id': 4,
'name': 'Test Response',
'roles' : ['Admin','User']
}

return JsonResponse(responseData)
limber iron
#

hmm

tidal nymph
#

dont forget to import jsonResponse

#

from django.http import JsonResponse

limber iron
#

ok i'll try it thank you

tidal nymph
#

yw

#

@whole bear about what ?

stuck furnace
tidal nymph
stuck furnace
#

Does anyone have any AI problems they need help with?

#

Not ML, like classic AI

#

That's the one area I'm reasonably skilled in

tidal nymph
#

Does anyone have any AI problems they need help with?
@stuck furnace could you u tell me what is RL ?

stuck furnace
#

RL?

#

no idea haha

tidal nymph
#

reinforcement learning

stuck furnace
#

ohhh

#

yeah that's ML

tidal nymph
#

oh didnt know

#

what is ML ?

stuck furnace
#

Markov decision processes?

#

Machine learning

tidal nymph
#

oh yeah 😂 never saw it that way

stuck furnace
#

RL is an approach to training agents

#

in an environment where they receive rewards for actions

#

take the right action -> get a reward -> do that more

#

do the wrong action -> get punished -> do that less

#

is the gist of it

tidal nymph
#

nice, turned on the light for me

#

and what is a classic AI ?

stuck furnace
#

pretty much all the AI up till the mid-90s

#

based on classical logic

#

modern AI and machine learning is based on probability theory and statistics

#

like A* search, constraint satisfaction, theorem proving

tidal nymph
#

modern AI and machine learning is based on probability theory and statistics
@stuck furnace i have a go game written in python using minimax algo, its damn slow.

#

do you know How to improve it ?

stuck furnace
#

yeah, you wont have much luck applying minimax to Go

#

I assume you mean the Asian board game?

#

It has such a high branching factor

tidal nymph
#

yes, 19 by 19 board

stuck furnace
#

compared to say, chess

#

for that you really need modern methods

#

particularly reinforcement learning and neural networks

tidal nymph
#

it was my Design Algorithms' final project.

stuck furnace
#

ah

tidal nymph
#

I used one as depth for testing it 😂

#

have you been to codingame.com before?
@stuck furnace no i havent, i ll check it out. tnx

stuck furnace
#

yeah it's a cool site

#

they have competitions

#

where you program AI bots

#

it's a great place to practice your AI skills

tidal nymph
#

nice !

stuck furnace
#

and has a nice community

tidal nymph
#

@stuck furnace nice talking with you, stay safe

visual crow
#

sup @feral bramble

feral bramble
#

hi

visual crow
#

welcome back i guess

feral bramble
#

:D

tidal nymph
#

@whole bear we used python selenium to fill our classes with random bots.

stuck furnace
#

yeah, you too @tidal nymph

feral bramble
#

lol @tidal nymph

tidal nymph
#

it is very useful for virtual classes

feral bramble
#

what is

tidal nymph
#

python selenium

feral bramble
#

when i'm deaf i can only hear gagipose

stuck furnace
#

don't drop out @whole bear

#

grades show that you can be organised and are willing to work hard @whole bear

#

everyone mute

#

@visual crow just mute

visual crow
#

okay

feral bramble
stuck furnace
#

brb

#

I haven't had any problem with james @whole bear

whole bear
#

@visual crow see im helping you out lol

feral bramble
stuck furnace
#

I'm self conscious haha

visual crow
#

@whole bear thanks man much appreciated

whole bear
#

:}

feral bramble
visual crow
#

@feral bramble comedy gold xd

feral bramble
stuck furnace
#

back

visual crow
#

@whole bear night bro

whole bear
#

night

stuck furnace
#

bye @whole bear

whole bear
#

@stuck furnace

covert garden
#

how to i sent an invite to some

visual crow
#

@covert garden still having problems?

somber heath
granite field
#

7AJCQBw0YHVGRrH

somber heath
#
a = list('7AJCQBw0YHVGRrH')
random.shuffle(a)
a = ''.join(a)```
granite field
#

YubiKey

wind cobalt
#
def displayInventory(inventory):
    print("Inventory")
    item_total = 0
    for k,v in inventory.items():
        #fill in this part
        print(str(v) + " " + str(k))
        item_total = item_total + v
    print("Total number of items: " + str(item_total))

def addToInventory(inventory, addeditems):
    for i in addeditems:
        if i not in inventory:
            inventory.setdefault(i,1)
        else:
            inventory[i] = inventory[i] + 1    
    return inventory            

inv = {'gold coin':42, 'rope':1}
dragonLoot = ['gold coin','dagger','gold coin','gold coin','ruby']
inv = addToInventory(inv,dragonLoot)
displayInventory(inv)```
jovial meadow
#

x = defaultdict(lambda: 0, 'gold'=42, 'rope'=1)

wind cobalt
#
dragonLoot = ['gold coin','dagger','gold coin','gold coin','ruby']
inv = addToInventory(inv,dragonLoot)
displayInventory(inv)```
jovial meadow
#

inv = defaultdict(lambda:0, {'gold coin':42, 'rope':1})

#
def addToInventory(inventory, addeditems):
    for i in addeditems:
        inventory[i] += 1
    return inventory     
wind cobalt
#

thanks

#

how rope gets a value of 1 even tho we set lambda 0?

jovial meadow
#
sum([v for v in inv.values()])
somber heath
#

Because of the dictionary you passed to defaultdict(), when creating inv.

jovial meadow
#

print(inventory.items())

#

sum(inventory.values())

wind cobalt
#
#inventory.py
def displayInventory(inventory):
    print("Inventory")
    item_total = 0 
    #for k,v in inventory.items():
        #fill in this part
    print(inventory.items())
    item_total = sum([k for k in inventory.values()])
    print("Total number of items: " + str(item_total))

def addToInventory(inventory, addeditems):
    for i in addeditems:
        if i in inventory:
          inventory[i]+=1
    return inventory            

inv = defaultdict(lambda:0, {'gold coin':42, 'rope':1})
dragonLoot = ['gold coin','dagger','gold coin','gold coin','ruby']
inv = addToInventory(inv,dragonLoot)
displayInventory(inv)```
jovial meadow
#
def addToInventory(inventory, addeditems):
    for i in addeditems:
          inventory[i]+=1
    return inventory   
wind cobalt
#

item_total = sum([k for k in inventory.values()])

jovial meadow
#
def hello():
  print('hello')
h = hello
h()
#
def hello():
  print('hello')
h = hello
a = h
h()
a()
print(a is h)
print(a == h)
whole bear
#

yooo @potent badge

#

can u help me something

potent badge
#

Maybe

#

what is it?

whole bear
#

i need some help in running code i just cant run any code in vs code

potent badge
#

Yeah I will try and help

#

can you share your screen?

whole bear
#

here come in general where i can share my screen

#

i cant share my screen anywhere

#

ok wait give me a minute

somber heath
#

Server restriction. Only privileged members have access to screen sharing in public voice channels. If you need to screen share, you can do so in DMs.

ocean gyro
#

[(1,2), (3,4)]

#

[1,3]

uncut meteor
#

my_list[0]

jovial meadow
#

[x[0] for x in list]

#

first, second = zip(*my_list)

ocean gyro
#
    X.append(X[-1]+1)
    Y.append(Y[-1]+Y[-1]*random.uniform(-0.1,0.1))


    data = plotly.graph_objs.Scatter(
            x=list(X),
            y=list(Y),
            name='Scatter',
            mode= 'lines+markers'
            )

    return {'data': [data],'layout' : go.Layout(xaxis=dict(range=[min(X),max(X)]),
                                                yaxis=dict(range=[min(Y),max(Y)]),)}```
idle crater
#

u need to make it global

#
def update_graph_scatter():
    global x
    global y
    X.append(X[-1]+1)
    Y.append(Y[-1]+Y[-1]*random.uniform(-0.1,0.1))


    data = plotly.graph_objs.Scatter(
            x=list(X),
            y=list(Y),
            name='Scatter',
            mode= 'lines+markers'
            )

    return {'data': [data],'layout' : go.Layout(xaxis=dict(range=[min(X),max(X)]),
                                                yaxis=dict(range=[min(Y),max(Y)]),)}

ocean gyro
#

this is the intent

#
    ctime = time.time()
    while True:
        line = ser.readline().decode("utf-8")
        try:
            val = int(line.split(",")[-1].rstrip())
            data.append((data[-1]+1, val))
        except:
            pass```
jovial meadow
cobalt scroll
#

!p past life

tall grail
#

@somber heath You online?

#

I wanna share somethin' sad! : (

wind cobalt
#

how do i navigate this with bsoup?

somber heath
#

@whole bear Here.

#

So you don't have to keep changing your name.

whole bear
#

oh thanks

#

I did't know that this chat is here

#

wait a sec I'll be back

whole bear
#

@whole bear I would prefer to* use manjaro linux if ur a beginner to linux

#

@whole bear i really like this recommdation

#

thank you

#

ok

#

linux already installed every language

#
Advantages of Linux


Open Source
Security

Software Updates
Customization
 Privacy
Network Support
Performance
#

@somber heath I disagree with u because we can do extremely good coding with window

#

yes true

#

linux == bad coder

#

lol

#

@whole bear Success is the second letter

#

🙂

#

I'm back guys

whole bear
#

@hard basin

#

@tall grail

if 'y' in user_input.lower():
#

yes

#

Yes

#

YES

#

yeah

#

y

#

@jovial meadow

- Removing items from the master list will recursively remove them from all
  sublists

- Inserting items into the master list will allow them to be inserted into
  any of the sublists

- Sublists cannot contain elements which are not present in the master list

- Removing items from sublists will not remove them from the master list

- Insertion and removal at any position have O(1) time complexity
tall grail
#

@whole bear It works! Phew!

jovial meadow
#

Master set
Sub set
Hash table, key: node, value: list of sets

whole bear
#

The clustering illusion is the tendency to erroneously consider the inevitable "streaks" or "clusters" arising in small samples from random distributions to be non-random. The illusion is caused by a human tendency to underpredict the amount of variability likely to appear in ...

hard basin
stuck furnace
#

Yeah there's always a trade-off between false-positives and false-negatives

#

In any system.

tepid sphinx
#

I need help

#

I Tried to open Python IDLE but it's not opening!?

jovial meadow
stuck furnace
#

But you get banned from casinos for being too good at blackjack

#

Some MIT students tried it

#

There was a film about it I think

#

Some MIT students found a way to consistently make money from state lotteries.

#

@jovial meadow @somber heath

#

It was something to do with roll-over jackpots

#

There were times when the expected returns of a lottery ticket was positive

#

So they bought a tonne of tickets

whole bear
#

Damn discord app

stuck furnace
#

What time is it where everyone is?

gentle flint
#

09:39 here now in Amsterdam

stuck furnace
#

8:39 in London

#

it's a pretty nice morning here

gentle flint
#

rainy here

#

but nice and cool after all that heat a week ago

stuck furnace
#

oh yeah, same here, I actually kind-of prefer the cold

gentle flint
#

^

#

maybe I should move to Iceland

stuck furnace
#

yeah not that cold

gentle flint
#

16 degrees and grey and rainy all summer

#

maybe -1 in the winter

#

actually quite reasonable

stuck furnace
#

I spose

#

I don't mind the heat as long as there's air conditioning

#

which apparently doesn't exist in the UK

gentle flint
#

same

#

or here

#

'cuz why would you ever want airco

#

in a country with a heatwave each summer

stuck furnace
#

What are we trying to predict?

gentle flint
#

no clue

stuck furnace
#

Ugh, as soon as someone says blockchain my eyes glaze over.

gentle flint
#

lol

jovial meadow
hard basin
stuck furnace
#

Ah

#

Copy and paste the HTML

#

!paste

wise cargoBOT
#

Pasting large amounts of code

If your code is too long to fit in a codeblock in discord, you can paste your code here:
https://paste.pydis.com/

After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.

stuck furnace
#

ctrl-c -> ctrl-v

fathom brook
#

cltl c

gentle flint
#

top one is a dual-boot Linux-Windows, bottom is Windows only
gonna be getting a third disk for Linux only on Monday
Currently, I'm shifting all my data from the Windows install on the dual boot to the standalone Windows install
then when I have my Linux disk I'll shift the Linux data from the dual-boot to the standalone Linux
and then I shall put the dual-boot disk on a shelf in case I need it again someday

digital narwhal
#

hi @somber heath

#

i have joined this server to learn coding

#

i absolutely dont know anything

#

THATS A REAL SIMP BRUH @jovial meadow

gentle flint
somber heath
gentle flint
#

Acacia pycnantha, most commonly known as the golden wattle, is a tree of the family Fabaceae native to southeastern Australia. It grows to a height of 8 m (26 ft) and has phyllodes (flattened leaf stalks) instead of true leaves. Sickle-shaped, these are between 9 and 15 cm (3 ...

somber heath
whole bear
#

Learning to program?

proven drift
#

hii @jovial meadow

errant helm
late spoke
#

uefa CL night for me .. so I'm gonna rest a bit .. before watching the game in a few hours..

#

thanks for the invite though guys

#

I will join in.. maybe next week (god willing) ...

whole bear
#

oops sorry @errant helm

errant helm
#

:>

somber heath
#

wut?

whole bear
#

@crystal fox no one care about US

#

bruh

#

😂

#

@crystal fox u laugh like a goat 😂

#

@somber heath narendra modi will be ur new president

#

🙂

#

🤣

errant helm
#

just so you guys know, I don't have to be there to keep my powers

#

feel free to poke me if needed bisk

whole bear
#

@somber heath yeah i know even kids know this

#

i m not a kid

#

@crystal fox u also go

#

🤣

somber heath
#

What?

whole bear
#

the

crystal fox
#

hello weird fellow who doesn't talk

whole bear
#

@crystal fox no u discuss i will throw dank jokes

#

weird jokes really

#

@crystal fox what is internet speed in US

#

?

#

@crystal fox who the fuck gave u right to say about india?

#

😠

#

@crystal fox 😂

#

fucking indians - i heard it

#

nothing else

#

no u continue

#

nah nah

#

i am not offensive

#

my only intention was to disturb u

#

@crystal fox cuz i love jokes on india

#

😂

#

@crystal fox so u can say

#

@somber heath fucking this word have to meaning can u tell me what do u say it

#

@crystal fox check

#

dm

#

@crystal fox ok

#

@crystal fox

#

@crystal fox hey hey

#

what r u doing

#

wait

#

lol

#

dont

#

ok

#

😂

#

@crystal fox 😂

#

😂

#

@crystal fox nah

#

😂

#

@crystal fox thnx

#

@crystal fox ok teacher

#

😂

errant helm
#

this is a lot of pinging

crystal fox
#

grow up.

whole bear
#

😂

#

nah

#

silence

errant helm
#

is that a request?

whole bear
#

naah

#

there was a silence

#

silence

#

@crystal fox no one asked

#

🤣

errant helm
#

I mean hey, if you want silence, we can facilitate that

whole bear
#

naah i was saying that y there is silence

#

@crystal fox again no one asked 😂

#

@crystal fox ok bye i will disturb u tommorow

errant helm
#

you won't.

#

:>

whole bear
#

🙂

#

thnx

#

😂

crystal fox
#

i know that highlighted mods

#

but you're worth it.

olive sentinel
#

now now

errant helm
#

l'oreal

olive sentinel
#

back to the staff meet

crystal fox
#

@whole bear is spamming voice with noise @olive sentinel

whole bear
olive sentinel
#

!mute 723516754361450576 1d Please don't disrupt Voice Channels; it's not that difficult to be nice and I think you should be able to manage that.

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied mute to @whole bear until 2020-08-24 19:25 (23 hours and 59 minutes).

crystal fox
#

thanks v

dapper meteor
#

huh

#

what was that

#

yeawh i can also see it

crimson light
dapper meteor
#

they are leaving

#

one by one

#

now its only lakmoital

#

now theres no one

errant helm
#

@crystal fox

dapper meteor
#

cheerios

#

phesip

crimson light
#
@Inject(method = "<init>(Ljava/lang/String;ILjava/lang/String;)V", at = @At("RETURN"))
private void constructor(String description, int keyCode, String category, CallbackInfo ci) {
    HASH.clearMap();
    keybindingMap.put(keyCode, this);
}

@Inject(method = "<init>(Ljava/lang/String;Lnet/minecraftforge/client/settings/IKeyConflictContext;Lnet/minecraftforge/client/settings/KeyModifier;ILjava/lang/String;)V", at = @At("RETURN"), remap = false)
private void constructor(String description, IKeyConflictContext ctx, KeyModifier modifier, int keyCode, String category, CallbackInfo ci) {
    this.constructor(description, keyCode, category, ci);
}
crystal fox
feral bramble
#

ok

visual crow
dapper meteor
#

im doing yes

crystal fox
#

hey g, is kotlin good yet?

dapper meteor
#

yes

#

i am yes man

#

yes

#

hello

#

you can fly in this game?

#

ah okay

whole bear
#

yo gaydude2002

#

why do you feel the need to play a game that thinks ur so dumb it shows you your own keybinds in the bottom right

olive sentinel
#

ugh

whole bear
#

(Srs question)

#

Why don’t you play a game that requires skill like Fortnite

#

Or league of legends or literally anything else

balmy nymph
#

Skill and fortnite in the same sentence haha

dapper meteor
#

haha

olive sentinel
#

!temban 710890615382212758 1d Mangling the name of a member (gdude to "gaydude") and then continuing with an insult is not going to fly on this server. If you want to come back, read our Code of Conduct and rules before doing so.

whole bear
#

Zappa

dapper meteor
#

insulting retired owner

whole bear
#

Ur such a shit mod

#

U can’t even temp ban me

balmy nymph
#

Python said no

whole bear
#

I’ll leave I’ll be back in a day

#

I’ll do ur job for u bro

#

👋🏻

olive sentinel
#

!tempban 710890615382212758 "1 month" Mangling the name of a member (gdude to "gaydude") and then continuing with an insult is not going to fly on this server. If you want to come back, read our Code of Conduct and rules before doing so. Apparently, you've decided to add some time to your sentence.

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied ban to @orchid dew until 2020-09-23 21:11 (30 days and 23 hours).

dapper meteor
#

haha

errant helm
#

thanks ves <3

dapper meteor
#

this is entertainment

balmy nymph
#

"How to add 30 days to your punishment in ten seconds"

dapper meteor
#
  1. Be Trompone
balmy nymph
#

Although tbh you can go way better with gdude

dapper meteor
#

phesip

balmy nymph
#

Good night everybody

dapper meteor
#

oh yeah i saw that in ot

#

phesip

visual crow
visual crow
queen folio
visual crow
queen folio
#

oh no

#
import face_recognition

img = face_recognition.load_image_file("your_cropped_image")

# Assume the whole image is the location of the face
height, width, _ = img.shape
# location is in css order - top, right, bottom, left
face_location = (0, width, height, 0)

encodings = face_recognition.face_encodings(img, known_face_locations=[face_location])
visual crow
#

import cv2
import numpy as np
import face_recognition

imgGershom = face_recognition.load_image_file('gershom.jpg')
#imgGershom = cv2.cvtColor(imgGershom, cv2.COLOR_BGR2RGB)
imgGershia = face_recognition.load_image_file('gershia.jpg')
#imgGershia = cv2.cvtColor(imgGershia, cv2.COLOR_BGR2RGB)
print(len(imgGershom))

faceLoc = face_recognition.face_locations(imgGershom)[0]
encodeGershom = face_recognition.face_encodings(imgGershom)[0]
cv2.rectangle(imgGershom, (faceLoc[3], faceLoc[0]), (faceLoc[1], faceLoc[2]), (255, 0, 255), 2)

cv2.imshow('gershom', imgGershom)
#cv2.imshow('gershia', imgGershia)
cv2.waitKey(0)

queen folio
#
import cv2
import  numpy as np
import face_recognition

imgGershom = face_recognition.load_image_file('gershom.jpg')
#imgGershom = cv2.cvtColor(imgGershom, cv2.COLOR_BGR2RGB)
imgGershia = face_recognition.load_image_file('gershia.jpg')
#imgGershia = cv2.cvtColor(imgGershia, cv2.COLOR_BGR2RGB)
print(len(imgGershom))
h, w, _ = imgGershia.shape
face_location = (0, w, h, 0)

faceLoc = face_recognition.face_locations(imgGershom)
if faceLoc:
  print(faceLoc)
  #do the code here
encodeGershom = face_recognition.face_encodings(imgGershom, known_face_locations=[face_location])
if encodeGershom:
  print(encodeGershom)
  #Same thing here
cv2.rectangle(imgGershom, (faceLoc[3], faceLoc[0]), (faceLoc[1], faceLoc[2]), (255, 0, 255), 2)


cv2.imshow('gershom', imgGershom)
#cv2.imshow('gershia', imgGershia)
cv2.waitKey(0)
visual crow
whole bear
#

@visual crow What's that beeping?

visual crow
#

my bios on my other laptop.. idk lol

#

its not a bomb i can assure you that

#

lol

quartz lynx
#

def redrawWindow(w, rows, surface):
global rows, width
surface.fill((0,0,0))
drawGrid(width, row, surface)
pygame.display.update()
pass

jovial meadow
whole bear
#

Mr. Robot's great tbh

#

@whole bear I've never used iTunes, so no.

#

@whole bear Gimme a sec and I'll hop in voice chat

gilded minnow
#

my net ehh