#voice-chat-text-0

1 messages · Page 610 of 1

drowsy haven
#

5 mins

median pewter
drowsy haven
#

How do you eat this?

#

While sleeping with it?

#

Do you even eat it?

#

Do you sniff it

#

Yeah i am a cocaine addict

#

It's called belly

whole bear
#

a lily pad in a pond doubles in size every day. if half the pond is covered in 29 days, when will the pond be fully covered?

jovial meadow
#

30

drowsy haven
#

1 day

#

30th day

median pewter
#

elong thrust

drowsy haven
#

Sad meme part 2

#

I thought you were

#

I asked choochoo

#

He looks like kumail nanjiani

jovial meadow
#

s = 'string'
a = s[::-1]
return s is a

median pewter
#

return s[:] is s

jovial meadow
#

a = 'string'
b = a
return a is b

median pewter
#

s='str'
print( s[:] is s)

#

'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

#

s[:]=s[::-1]

#

'''''''''''''''''''''

#

s=s[::-1]

whole bear
#

looking for people to collab with me for the tech with tim code jam

drowsy haven
celest kayak
#

can u tell me which app to download for python

drowsy haven
median pewter
#

s.reverse()

drowsy haven
#

Actually Strings are not list

#

List and strings are sequences

#

@jovial meadow

#

If that makes a difference

whole bear
#

does anyone know where I can go to do practice problems for programs for beginners?

jovial meadow
fickle bear
clever flare
#

Why text chat is called voice chat? 😄

drowsy haven
#

So you can support your arguments in real voice chat

potent thicket
#

did you know there are 10 kind of people in the world one who understand hexadecimal and... and F the rest

olive sentinel
#

It was a test

drowsy haven
#

hahaha I see

wispy idol
still silo
#

@wispy idol - one of my favorites is Bratkartoffeln (we call it Heart-Attack-On-A-Platter informally)

whole bear
#

@jaunty glacier
SW1A 1AA

jaunty glacier
#

thats why i want to integrate and extend

glacial tangle
whole bear
#

puppeteer

jaunty glacier
#

puppentheater

jovial meadow
#

1234567 , k=3
^ ^^

#

5231467
^ ^^

drowsy haven
#

Leetcode problem
An array of number is given, every number repeats itself once and one number is not repeated.

#

Find the single number

#

Linear time

#

No extra memory usage

#

@median pewter

#

@jovial meadow

#

[2,2,6,3,5,3,6]

#

5

median pewter
#

use a has table

jovial meadow
#

XOR operator

sacred maple
#

XOR operator

#

remember this question ; )

still silo
#

clever - the xors cancel the duplicates out and like sherlock holmes said "when you have eliminated the impossible, whatever remains, however improbable, must be the truth" 🙂

#
from functools import reduce
import operator
reduce(operator.xor, [2, 2, 6, 3, 5, 3, 6])
# output: 5
quartz lynx
#

Given an array of integers, return indices of the two numbers such that they add up to a specific target.

You may assume that each input would have exactly one solution, and you may not use the same element twice.

Example:

Given nums = [2, 7, 11, 15], target = 9,

Because nums[0] + nums[1] = 2 + 7 = 9,
return [0, 1].

#

from array import *

nums = array[1, 2, 3, 4, 5, 6]
target = input('enter the target:')
for i in range(nums):
for r in range(nums):
if i + r == target:
print(nums[i], nums[r])
else:
print ('error')

hard basin
quartz lynx
#

from array import *

nums = array[1, 2, 3, 4, 5, 6]
target = input('enter the target:')
int(target)
for item in nums:
for item2 in nums:
if item + item2 == target:
print(nums[item], nums[item2])
else:
print ('error')

jovial meadow
#

target = int(target)

#

target = int(input('enter the target:'))

quartz lynx
#

from array import *

nums = array[1, 2, 3, 4, 5, 6]
target = int(input('enter the target:'))
for item in nums:
for item2 in nums:
if item + item2 == target:
print(nums[item], nums[item2])
else:
print ('error')

#

print(item, item2)

jovial meadow
#

raymond hettinger

#
#

set(nums)

jovial meadow
#

a + b = t

#

t - a = b

#

check if b in set

quartz lynx
#

t - (t / 2) = b

fickle bear
#

what are you trying to lean @quartz lynx

#

learn*

wispy idol
#

@jovial meadow

datatype intSet = 
  Elems of int list (*list of integers, possibly with duplicates to be ignored*)
| Range of { from : int, to : int }  (* integers from one number to another *)
| Union of intSet * intSet (* union of the two sets *)
| Intersection of intSet * intSet (* intersection of the two sets *)
#

@jovial meadow

fun is_empty iniSet -> bool
#
fun isEmpty intSet =
  case intSet of
    Elems [] => true
  | Elems _ => false
  | Range {from=from, to=to} => from < to
  | Union (set1, set2) => isEmpty set1 andalso isEmpty set1
#

Intersect (Elems [1,2,3], Elems[5,6,7]) -> []

dusty rune
#
<script type="text/javascript" charset="utf-8">
    var socket = io();
    socket.on('connect', function() {
        socket.emit('my event', {data: 'I\'m connected!'});
    });
</script>```
wise cargoBOT
#

Hey @dusty rune!

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

dusty rune
wispy idol
#
fun intSetToList intSet =
  let
    fun common_elements (list1, list2, acc) =
      let
        fun common_elements_int (hd, list2, acc) =
          case list2 of
            [] => acc
          | (hd2::tl2) => if hd = hd2 
                          then common_elements_int (hd, [], hd::acc)
                          else common_elements_int (hd, tl2, acc)
      in 
        case list1 of
          [] => acc 
        | (hd1::tl1) => common_elements (tl1, (tl list2), (common_elements_int (hd, list2, acc)))
      end
  in
  case intSet of
      Elems list => list
    | Range {from=from, to=to} => if from <= to then [] else from::intSetToList (Range {from=from+1, to=to}) 
    | Union (hd1::tl1, set2) => intSetToList (Union (tl1, hd1::set2))
    | Union ([], set2) => set2
    | Intersection(set1, set2) => common_elements (intSetToList set1, intSetToList set2, [])
  end
#

| (hd1::tl1) => common_elements (tl1, (tl list2), (common_elements_int (hd, list2, acc))) this line

still silo
still silo
still silo
#

Masters, provide your slaves with what is right and fair, because you know that you also have a Master in heaven. Colossians 4:1 (NIV)

naive rain
#

niv is the vrsion

#

version

#

of translation

still silo
late lake
#

hehehhe

still silo
#

if you watch it 2x speed u can learn in 15 minutes

late lake
#

LMFAOOOO

#

good one

naive rain
#

yeeted

still silo
#

clair de lune

dusty rune
#

clair de lune

fossil pebble
#
action.key_down(Keys.SPACE).key_up(Keys.SPACE).perform()
action.key_down(Keys.SPACE).key_up(Keys.SPACE).perform()
#

i dont waht to write it double time

dusty rune
#
push = lambda: action.key_down(Keys.SPACE).key_up(Keys.SPACE).perform()
[push() for i in range(2)]```
#

or

fossil pebble
#

action.key_down(Keys.SPACE).key_up(Keys.SPACE).perform(2)

dusty rune
#

for _ in range(2):
  action.key_down(Keys.SPACE).key_up(Keys.SPACE).perform()
jovial meadow
#

func = action.key_down(Keys.SPACE).key_up(Keys.SPACE).perform
func()
func()

drowsy haven
#

kek

cerulean ridge
sour heath
#

uheeas

unkempt harbor
#

guys

#

listen

#

why is general chat disabled

#

????

#

@ me to respond

#

pls

#

?????

#

<@&267629731250176001> pls tell me istg i have a doubt so where do i ask it

drifting umbra
#

Please stop randomly pinging people

unkempt harbor
#

okai

#

sry

fallen plinth
#

general was disabled due to the raid

unkempt harbor
#

oh ok

slate frost
#

Are you traveling?

fossil pond
drowsy haven
#

Posts on piazza are unable to be retrieved and used after the semester is over to new students.And most students wish to unsubscribe from the piazza class after the term is over. It is hard to reuse posts.

In this application the python server updates and archives a class into its database, and through the web application one can find answers to their solution, these are read only, and can only be mentioned in a future piazza post for the current class. dum piazza post object

whole bear
still silo
#

__init__.py

drowsy haven
#

From Foldername.filename import ...

still silo
#
$ head main.py app.py; echo; echo python main.py | bash -x
==> main.py <==
import app

app.foo()

==> app.py <==

def foo():
    print("I am in foo")

+ python main.py
I am in foo
peak coyote
#

sssp

#

share your code if you can

still silo
#
$ head main.py app.py; echo; echo python main.py | bash -x
==> main.py <==
import app

app.foo()

==> app.py <==
from netifaces import interfaces, ifaddresses, AF_INET

def foo():
    print("I am in foo")

+ python main.py
I am in foo
#
$ pip install netifaces
Collecting netifaces
  Downloading netifaces-0.10.9.tar.gz (28 kB)
Building wheels for collected packages: netifaces
tawny obsidian
#

@drowsy haven

#

a=100

#

type(a)

drowsy haven
#

print(type(a))

#

If you dont print anything how will it show up

tawny obsidian
drowsy haven
#
adasdjkadkjasvdakjdvakjda
""")
whole bear
#

.

unreal crest
#

String selectQuery = "SELECT * FROM " + "sqlite_sequence"; Cursor cursor = db.rawQuery(selectQuery, null); cursor.moveToLast();

echo hollow
#

spotify:track:2creNAio2SQatj0mj8ML4v @hallow roost

unreal crest
#

for row in conn.execute('select field from table'):
if row:
result = row[0]

#

for result, in conn.execute('select field from table'):

#

import sqlite3

def dict_factory(cursor, row):
d = {}
for idx, col in enumerate(cursor.description):
d[col[0]] = row[idx]
return d

con = sqlite3.connect(":memory:")
con.row_factory = dict_factory
cur = con.cursor()
cur.execute("select 1 as a")
print cur.fetchone()["a"]

#

def dict_from_row(row): return dict(zip(row.keys(), row))

#

`import sqlite3

def dict_factory(cursor, row):
d = {}
for idx, col in enumerate(cursor.description):
d[col[0]] = row[idx]
return d

con = sqlite3.connect(":memory:")
con.row_factory = dict_factory
cur = con.cursor()
cur.execute("select 1 as a")
print cur.fetchone()["a"]`

#

def dict_factory(cursor, row):
d = {}
for idx, col in enumerate(cursor.description):
d[col[0]] = row[idx]
return d

#

con.row_factory = dict_factory

#

con.row_factory = dict_factory

#

cur.execute(""SELECT * FROM tcpdump WHERE date > :date ORDER BY date ASC;"")

#

con.cursor()

#

import sqlite3

def dict_factory(cursor, row):
d = {}
for idx, col in enumerate(cursor.description):
d[col[0]] = row[idx]
return d

con = sqlite3.connect(":memory:")
con.row_factory = dict_factory
cur = con.cursor()
cur.execute("select 1 as a")
print cur.fetchone()["a"]

hallow roost
unreal crest
#

def dict_factory(cursor, row):
d = {}
for idx, col in enumerate(cursor.description):
d[col[0]] = row[idx]
return d

#

Python for Data Analysis

#

Python for Data Analysis
Python for Data AnalysisBy Wes McKinney

#

Learning Pandas – Python Data Discovery and Analysis Made Easy

somber heath
#
lines = [(1,2,3,4), ('a', 'b', 'c', 'd')]
for line in lines:
    print({key:value for key,value in zip(fields,line)})```
somber heath
#

a = [*get_data()]

#

Using yield instead of return

#

a = [each for each in get_data()]

#
    returns = []
    for i in range(10):
        returns.append(i)
    return returns```
#
    for i in range(10):
        yield i```
#

a = fun_a()

#

a = [*fun_b()] a = list(fun_b())

#
      pass #do stuff with each while fun_b still has yields pending```
#
   pass #do stuff with each after fun_a has compiled the entirety of its returns```
quartz lynx
quartz lynx
drowsy haven
#

Is that you skateboarding?

#

@quartz lynx

obtuse tide
#

hi

#

lmao

royal crown
#

hello

obtuse tide
#

hey

royal crown
#

where are u from?

fast agate
wise cargoBOT
#

@fast agate Per Rule 6, your invite link has been removed. If you believe this was a mistake, please let staff know!

Our server rules can be found here: https://pythondiscord.com/pages/rules

potent thicket
#

💧

regal gorge
#

Русские ВПЕРЁД!

obtuse tide
#

pt2

regal gorge
#

Тут русские есть или только одни пиндосы?

obtuse tide
#

brb

#

diy guys

regal gorge
#

Владимир Путин - холодец, широкий лидер и капец!

#

Vladimir Putin holodets, shirokiy lider i boets!

obtuse tide
#

tf

#

bruh

cursive grotto
#

why aint mic working

#

help nerds

#

xD

regal gorge
cursive grotto
#

wtf

#

😮

tired garnet
#

videoplayback.mp4 (hadphone warning)

drowsy haven
#

My ear phones

#

Deed

tired garnet
#

Ups sorry

royal crown
#

watch this!!

regal gorge
#

Guys how to parse utf8 file? if i parse file with default python open function, it crashs

royal crown
#

i dont know ask in help

drowsy haven
gray bison
#

@whole bear

still violet
#

Check out the rich module. Many nice tabular output options.

gray bison
#

The first thing you need to do if get the max length of each column

#

You can do this pretty eaily with len() for the first column

#

For the second column use a log base 10 to get your length combined with max(3, age_len)

#

From there you can determine the width of each column

#

Then format your tables based on your table symbol which you can do easily using something like "-" * name_len to expand your string

#

Do you need to do this for an assignment? Or are you just planning on using this for your own project?

#

Cause you can do what @still violet said and use the rich module if you don't have to implemnet the table yourself

#

Oh

#

Okay

#

You need to break down the problem into parts.

#

First, do you care if the table fits your data perfectly? Is it okay if it's bigger than the actual data?

#

Okay, so you need to determine how it would fit

#

Fitting vertically is easy, you just need to loop. Fitting horizontally is harder.

#

You need to determine the width of each column

finite hamlet
#

Yes

#

Get the longest name in the first column

#

The second column is just age so you can use length 3

#

Yes

#

Use string multiplication

#

Like iron said, you can do "=" * 5 to make =====

#

Only put one space before and after each element

regal gorge
#

Кто русский, напишите +

slate frost
whole bear
junior pulsar
#

Nice

frank crescent
#

o

jaunty glacier
#

wait a sec jis

whole bear
#

Really terrible.@jaunty glacier

#

@jaunty glacier And you are insulting me.

#

@jaunty glacier thinkmon

#

Everyone!
@jaunty glacier said me "go and suck your mothers cook in hell you little bastard"

jaunty glacier
#

yeah what did you expect to happen?

burnt parcel
#

I feel like there is missing context here

whole bear
#

yeah, it only is
""" Sorry, you are just terrible.
So I have no idea what to say. """

#

Hi, d3Li,
Let's call.
I will wait for you.

#

Do you find me?

#

??

#

hello
@whole bear who do you find?

#

Actually I am waiting d3li here.

#

you can read above chats.

#

@whole bear d3Li was exited out of here.

silver flint
somber heath
silver flint
jovial meadow
silver flint
still silo
#

@silver flint - nice Bill Evans vid

regal gorge
#

куку йопта этоФункцияЙбать()жЫ
ксива.малява("Я трещу!") нахуй
есть

#

void function этоФункцияЙбать() {
document.write("Я трещу!");
}

#

гыы gop внатуре пиздишь, lt нах

куку йопта law() жЫ
вилкойвглаз(gop типа нечотко) жЫ
ксива.малява("Я и правда язык") нах
gop сука чотко нах
есть иливжопураз жЫ
gop сука чотко нах
потрещим(semki чоблясука трулио) жЫ
lt сука ксива.вычислитьЛохаПоНомеру("list") нах
ебало.шухер("Привет, йопта") нах
есть
есть
есть

#

var gop = false, lt;

void function law() {
if(gop == false) {
document.write("Я и правда язык");
gop = true;
} else {
gop = true;
while(semki != true) {
lt = document.getElementById("list");
window.alert("Привет, йопта");
}
}
}

#

Habarovsk, we are staying with you!

cobalt scroll
#

stfu ppl on voice chat

grave arch
#

hakıdız duuude

whole bear
#

ewqeqewewqewqewqqeewqew

#

I'm From Turkish ! Hack TimsahTim Developers

wise cargoBOT
#

failmail :ok_hand: applied mute to @whole bear until 2020-08-07 19:03 (9 minutes and 59 seconds) (reason: duplicates rule: sent 4 duplicated messages in 10s).

whole bear
#

@whole bear

#

AHA TÜRK !

fast drift
warm axle
#

WTF

#

hahahaha

#

americans are awesome

#

hhhhhhhh

#

n0x1s

#

try catch

#

@whole bear i am good at web scraping if you need any help

#

yes

#

selenium

#

yes

#

and requests

#

yes but it takes time

#

no the login opration can't be done without the right recaptcha

#

yes

#

or adding your chrome data folder and login to you google account

#

sorry mate but it's night here

#

yes sure

#

imap

#

or using selenium?

#

if you are facing problems with captcha's and stuff on websites

#

you can reverse there app on android or ios and get the login api from there

#

yes login from the app and inject the app cookies

#

into the driver

#

you are welcome

#

if you have private socks5 proxies there no way

#

but if you use public proxies they are f****

#

btw you can use nordvpn as proxy in selenium

#

nah

#

i use a lot of nordvpn account and iterate over them so i can use them as a proxies to bypass rate limit on some websites

#

sorry for the slow typing

#

headers

#

focus on the headers also

whole bear
#

cookies, dedicated private proxy,

warm axle
#

user-agent

#

and other stuff

#

no selenium send "headless" value on it xD

#

so it's telling the website it's a bot

#

your chrome data folder

#

options_.add_argument("user-data-dir=C:/Users/Anton/AppData/Local/Google/Chrome/User Data")

#

you are welcome 🙂

#

i think yes

#

user-agent yes - chrome data folder i don't think so but you can zip it and add it on the server

#

in your code unzip it and move it to /tmp then use it

#

it will be detected

#

it will be detected

#

it will be detected

#

Nah

#

google will detect that you are using the same cookies but from multi locations

#

i am talking about the cookies that are in the data folder

#

those make you look more friendly to google

#

so they won't show you captcha's and stuff

whole bear
#

cookies
chrome data folder

warm axle
#

your data folder have the cookies of all the websites

#

yes you can add them too

#

can you repeat that

#

yes

#

let me send you somthing

#

cython

#

yes

#

numba also great if you want more speed xD

#

cheap

#

they randomize your headers and ip

#

every request they give you random stuff

#

oh

#

you are welcome mate

#

luminati

#

they are great

#

fast and residential proxies

#

but they are not cheap

#
  • an advice if you can make requests over selenium or headless browsers that will be great
#

goodbye mate

glossy spindle
#

Terminator will you say get to the chopper

somber heath
#

<div align="center">Stuff goes here.</div>

rigid girder
#

.

balmy nymph
#

Hey!

#

@errant helm wanna see my bash nightmare haha?

#

F

#

That's umh

#

Mess indeed

#

I was actually trying to build a debian chroot

#

But actually fuck debian

#

Let's go arch

#

I actually don't know why I didn't do that in the first place

#

So far yes haha

#

Can I stream my screen actually

#

Well, only one screen

#

C'mon

#

Yeah

#

F

#

Guess discord is still discord

#

See

#

I'm sharing one screen

#

ONE

hidden flower
#

screen share works on manjaro

balmy nymph
#

Well it does

#

But clearly not one screen haha

#

That's an issue

#

Yeah

#

Nope not yet

#

Wut

hidden flower
#

breaks a bit yeah

#

not noticable tho

balmy nymph
hidden flower
#

stream quality is terrible for me

balmy nymph
#

It is pretty okay for me

hidden flower
#

audio is fine

#

might coz of your screen size

#

idk

balmy nymph
#

Haha

hidden flower
#

gdude's is fine

#

it's your screen that i can't see clearly

#

might be the French middle out compression

balmy nymph
#

Gosh discord's UI for calls is so stupid

#

Smart

hidden flower
#

yeah that's pretty cool

#

see ya

#

ill procastinate somewhere else now

balmy nymph
#

Nice, all the links seem broken

#

Well I mean, they are from 2002 so....

#

They ahve something to watch don't worry

#

Told you they had something to watch

daring canopy
#

Discord needs to fix voice channels and watching streams on phones, I'm on my phone and in landscape mode, can't seem to get rid of the buttons on the screen so half the screen is blocked smh

stuck mountain
#

People coding me watching what is the are doing lol

#

what these guy are making

balmy nymph
#

I'm working on the jam

stuck mountain
#

Ohk

balmy nymph
#

Not sure if the nyan cat is that relevant but okay

stuck mountain
#

I need to complete my own project lol

humble geyser
#

Hey gdude

stuck mountain
#

Bye

humble geyser
#

I saw you on github I don't remember where

#

let me check wait

#

yeah in the pythondiscord website repo

balmy nymph
#

I really need to disable those connection sounds

#

Haha yeah, don't put libraries in the repo

humble geyser
#

yes, I use flask. Thinking of learning django for projects

balmy nymph
humble geyser
#

How did you learn django

balmy nymph
#

The docs are really good yeah

humble geyser
#

I know flask very well, if it helps

#

flask is very customizable, and you need to do everything on your own

balmy nymph
#

My poor ears haha

humble geyser
#

lmao

lethal geyser
#

Which is easier and better to start, django or flask?

balmy nymph
#

i feel like moving from flask to django helps

#

Jinja is pretty straightforward though

#

That doesn't look like journeymap lemon_thinking

humble geyser
#

docs for?

balmy nymph
#

Journeymap

#

This game is fucking loud haha

#

Yup the pydis code jam

#

A little?

#

!cjcd

wise cargoBOT
#

The Summer Code Jam ends in 1 day, 3 hours, 54 minutes and 23 seconds.

balmy nymph
#

Ah yeah that's better thanks

unique kindle
#

have you played dead cells

#

I got it on my switch and I love it. I need to try gungeon. Rogue lites seem to be my jam

balmy nymph
#

Is it difficult like cuphead or just hard?

unique kindle
#

mannn I loved cuphead

balmy nymph
#

Cuphead is pretty fair IMO

unique kindle
#

^^ agreed

#

lol

balmy nymph
#

Haha

humble geyser
#

Is there a stream going somewhere?

unique kindle
#

Yeah gdude is streaming

humble geyser
#

I cannot watch in browser I guess

balmy nymph
#

It had nothing better to do, it is just following

unique kindle
#

I have such a backlog of games to play. And then I always just go back to dwarf fortress lol

balmy nymph
#

I lgmt have all the valve games to play

#

I bought a pack with all of them

unique kindle
#

jesus

balmy nymph
#

The worst was the price

unique kindle
#

how much was it

balmy nymph
#

1.20€

#

Haha

unique kindle
#

lmaooo

#

I'd pull the trigger on that too. Even knowing that I wouldn't touch them

#

It's my most toxic trait

balmy nymph
#

All game at -80% + the whole pack at -75% again

#

I'll probably only play the portal but that's so worth it

#

With the 1.8k games haha

#

Yeah

#

They even are game SDKs

#

Just for Celeste the pack was worth it anyway

unique kindle
#

ohh damn I need to check out celeste

balmy nymph
dapper meteor
#

i see the first and th elast

#

no thte two in the middle

balmy nymph
#

That's silly

#

Brb

humble geyser
#

You haven't told me about the django tutorial you were telling about

#

THANKS

odd rock
#

hi

balmy nymph
#

i'm back

#

And we got a new fridge haha

little crown
#

what are you coding

balmy nymph
#

I'm working on the code jam

little crown
#

what's a jam

#

a jam like one you spread on bread

balmy nymph
#

It is a short coding competition

little crown
#

Oh nice

#

so it's like a hacking contest?

balmy nymph
#

Well, we have to build a project around a specific theme

little crown
#

Well, good luck then 🐖

balmy nymph
#

thanks!

whole bear
errant helm
#

@somber heath What did you dooooo

#

why are you deafened and able to talk

somber heath
scarlet plume
#

!tempban 718385102312177667 14d Making inappropriate, loud, sexual noises in voice chat is not acceptable.

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied ban to @nimble ether until 2020-08-22 20:34 (13 days and 23 hours).

scarlet plume
#

!tempban 734346733483458651 14d Making inappropriate, loud, sexual noises in voice chat is not acceptable.

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied ban to @crisp marsh until 2020-08-22 20:35 (13 days and 23 hours).

elfin patrol
#

How can I set a timer in python? is there a timer function?

young fractal
#

there is the time module that can help you

#

time.sleep()

#

especially

fast shale
#

!tempban 718385102312177667 14d Making inappropriate, loud, sexual noises in voice chat is not acceptable.

acoustic ingot
#

Ok so I just sent it @frozen coral

wispy idol
#

Eventual consistency is a consistency model used in distributed computing to achieve high availability that informally guarantees that, if no new updates are made to a given data item, eventually all accesses to that item will return the last updated value. Eventual consistenc...

#

@frozen coral Shenzen I/O _ ExaPunks

wispy idol
whole bear
#

Here?

warm axle
#

@whole bear hello

#

memes

#

?

neat horizon
#

@warm axle helloo

warm axle
#

@neat horizon hello mate

#

they are great

#

i love those memes

#

socks5

#

yeah

#

in supporting

#

yeah

#

you can use it in js

#

but the encyption is better

#

the proxy send your ip in a header

#

called

#

X-Forwarded-For: <client>, <proxy1>, <proxy2>

#

the proxy send your ip

#

and http

#

but if you have paid proxis you have nothing to worry about

#

they are great

#

haha

#

hhhhhhhhhhhhh

#

hahahahhaahhaha

neat horizon
#

Hahahahahahaha

warm axle
#

hhhhh

lyric dragon
warm axle
#

hhhhhh

#

hhhhhhhhhh

lyric dragon
#

@warm axle whats up?

#

im tryna find somet similar to this :/

warm axle
#

@whole bear i built a movies website just by scraping 🙂

#

pickle

lyric dragon
#

like i wanna do some interactive work

warm axle
#

oh

#

js

#

i forget

#

dict

#

but i don't store data

#

i scrape every time the user

#

search

#

for a movie

whole bear
#

proxies, header, cookies

warm axle
#

look human

#

but js can detect you

#

if they want

#

yeah they can detect how you click on stuff

#

and how fast you move

#

......

#

yeah

lyric dragon
#

bruh

warm axle
#

you can but sleep everywhere

errant helm
#

yeah, mouse tracking is pretty common

warm axle
#

but that's not good

lyric dragon
#

i wanted to find a good interactive website to learn python

#

on

warm axle
#

will make you website slow

#

.....

#

yeah wtf

lyric dragon
#

also which programming language is good for encrypting chats?

#

i don't want a explanation on how nothing can't be encrypted fully

warm axle
#

you will stay under the rate limit if the website has one

#

nah

#

in js i don't know

#

hhhhhhh

#

.

#

hhhhhhh

#

ihhhhhhhhhh

#

i am not

#

hhhhhhh

#

i am from morocco

neat horizon
#

Me too Morocco

warm axle
#

oh

#

i do it

#

hunting bugs

#

bugs

#

yeah

#

and scrapinghub

#

yeah easy

#

yeah i see

#

yeah

#

you install there manager

#

and you setup a proxy that will give you pools every time

lyric dragon
warm axle
#

no

#

they don't do that

#

scrapinghub

#

can

#

no you install a package that

#

do that stuff

#

in heroku

#

wait

#

let me find the article for that

#

i hosted mine on heroku

#

you can also buy a vps

#

and host it yourself

quasi condor
#

https://store.steampowered.com/app/1046030/ISLANDERS/ replace your solitaire with this @errant helm

A quick note from the developers:You want to build beautiful cities without investing hours on end into stressful resource management? Say no more! ISLANDERS should be right up your alley.ISLANDERS is a minimalist strategy game about building cities on colorful islands. Explor...

Price

$4.99

Recommendations

9104

Metacritic

82

▶ Play video
warm axle
#

at the start

#

to setup things

lyric dragon
warm axle
#

but how the f you gonna controle the vpn

#

to change the ip

#

...

#

nordvpn support socks5

#

i use them always

#

.

#

.

#

hhhhhhh

#

yeah

quasi condor
errant helm
warm axle
#

yeah

#

your isp

#

see nothing

#

.

#

you are welcome

#

mate

quasi condor
warm axle
#

i just like to talk about this stuff

lyric dragon
warm axle
#

yeah so you don't get banned

#

if you login in from a diffrent ip

#

gmail or google

#

will but the account on hold

#

why not use smtp?

lyric dragon
warm axle
#

send bulk mails

#

sendgride

#

take a look at sendgride

#

oh

#

imap

#

IMAP

#

but it's hard

#

what time is it?

#

oh

#

no

neat horizon
#

17Pm

warm axle
#

morocco

#

hhhhhhh

neat horizon
#

Naah

#

that's not true

warm axle
#

.

#

hhhhhhhh

#

yeah

#

10000K?

#

do we have a deal

#

3

neat horizon
#

Hahahahahahahaha

warm axle
#

2

#

hhhh

neat horizon
#

1000K

warm axle
#

hhhhhhhhhh

#

no BTC

#

hobbey

neat horizon
#

Even moroccan currency is not that cheap

warm axle
#

it' a joke

neat horizon
#

Hahahahaha ik

warm axle
#

@whole bear if you need help just dm me

#

your ram

#

cpu

#

your system may crush

#

to rank up?

#

oh

#

@neat horizon is he talking about cpa?

neat horizon
#

On reddit

warm axle
#

hhhhhhh

#

oh

#

@neat horizon cpa?

neat horizon
#

@whole bear Whats the point?

warm axle
#

he don't speak english

#

true

#

yeah

#

hhhhhhhhhhh

#

@severe elm where are you from?

fringe bramble
#

@whole bear wait whats going on give us a basic overview of what u were saying, just joined and it seems intresting

neat horizon
#

I'm not even related to coding... I do ecommerce

fringe bramble
#

im not even in uni lmao

neat horizon
#

Hahahahahaha

warm axle
#

germany oh oh

whole bear
#

@fringe bramble what are you treying to do

fringe bramble
#

dude im just a 16 year old having fun building crap xD

#

ive done robotics, electronics, and now im in AI/ML

whole bear
#

what is your tech stack

fringe bramble
#

tech stack?

neat horizon
#

@fringe bramble I'm 18

#

Hahahahahaha

warm axle
#

hhhhhhhhh

whole bear
#

javascript MERN, python ect

neat horizon
#

I can only code html CSS

#

Hahahahahaha

fringe bramble
#

python , just started when summer started :D

whole bear
#

i see

fringe bramble
#

into computer vision and NLP

#

was thinking of adding a laser to a servos with a cam and yeh having a turret irl

#

cool idea for yall ill probs never do

whole bear
#

you should make a toilet plunger bot

warm axle
#

blon busk?

whole bear
warm axle
#

i saw it before

#

lol

#

hhhhhhhhh

neat horizon
#

lmao

warm axle
#

hhhhhhhh

fringe bramble
#

0 do u have that bird o.o, or is it just a prof pic

whole bear
#

jajqajajajaja

warm axle
#

jajajjjjjjjj

fringe bramble
#

i need to know 🤣

warm axle
#

jajajjajajajja

#

hhhhhhhhhh

neat horizon
#

khkhkhkhkhkhkhkh

#

in arab

warm axle
#

arab say khkhkhkhkkhkhkhkh

fringe bramble
#

wanna talk about ways to rule the world cuz why not?

neat horizon
#

Hahahahaha

#

@fringe bramble China men

fringe bramble
#

they were just playing solitare .-.

neat horizon
#

😂

fringe bramble
#

btw where ya from balloon?

neat horizon
#

Zimbabwey

fringe bramble
#

cool^

neat horizon
#

Hahahhahahaha

#

just kidding

#

I'm from spain but I'm stuck in Morocco

#

cox covid

fringe bramble
#

owh im intrested to why u said khkhkhkh 🤣

#

crap rip^

neat horizon
#

Negative bro

warm axle
#

hhhhhhhhhhh

#

hhhhhhhhhhhhhhhh

#

yes

#

hhhhhhhhhh

#

youtube pranks 2019

neat horizon
#

yeaaa

errant helm
lyric dragon
#

try this

lyric dragon
hearty cypress
whole bear
#

@hearty cypress Did you still need code help?

hearty cypress
#

ya

#

like learning it

#

not on 1 thing

whole bear
#

Alright, one sec. I'll hop on voice chat to make it easier

hearty cypress
#

your already in the vc

#

???????

whole bear
#

I mean, I need to enable my mic 😄

hearty cypress
#

oof

turbid oriole
#

@whole bear @warm axle Quite late now, but please note the stuff you were talking about in this channel (and I assume in voice) yesterday assume is against our rule 5. Discussion of anything potentially malicious or ToS breaking is not something for this server, so keep it out of here. Thanks

warm axle
#

@turbid oriole sorry i wil try to keep everthing good ❤️

turbid oriole
#

Thanks for understanding 👍

whole bear
#

`

hearty cypress
#
a = 5
def somebody_once_told_me(a):
    return a ** a
b = somebody_once_told_me(a)
print(b)
#

3125

glacial tangle
whole bear
#

@turbid oriole Thank you for the fair warning

#

I will look at rule 5

whole bear
#

@whole bear Do you need code help?

#

@elfin hatch Do you need code help?

whole bear
#

@whole bear Thanks, Scott.
Actually, I have not any question.
I only want to listen english of helpers, because my listening and speaking is very poor.

#

Yo can anyone of you rate my python textbased fighting game?

#

its not that good but im a beginner so yu

wise cargoBOT
whole bear
somber heath
#

_dict['tree'][0] for the first element.

#

_dict['tree'][1]for the second.

whole bear
#

cecum

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied mute to @karmic pelican until 2020-08-10 03:41 (9 minutes and 59 seconds) (reason: duplicates rule: sent 4 duplicated messages in 10s).

junior kayak
mortal delta
#

if a == b:

#

z = input("jdaksjdlajs]

junior kayak
#

c = "Arshbir"
d = "Sam"
E = "Jake"
F = "Mario"
print("Welcome to your child's report card ")
a = input("Please provide your child's name here")

if a == b:
z = input("Please provide the student number")
elif a == c:
z = input("Please provide the student number")
elif a == d:
z = input("Please provide the student number")
elif a == E:
z = input("Please provide the student number")
elif a == F:
z = input("Please provide the student number")

else:
print("That does not match our sytem")
print("try checking the spelling")

if z == b:
print("Welocome parents of rob")
print("What would subject would u like to check")
print("you can check Math french and english ")
if z == c:
print("Welocome parents of rob")
print("What would subject would u like to check")
print("you can check Math french and english ")
if z == d:
print("Welocome parents of rob")
print("What would subject would u like to check")
print("you can check Math french and english ")
if z == E:
print("Welocome parents of rob")
print("What would subject would u like to check")
print("you can check Math french and english ")
if z == F:
print("Welocome parents of rob")
print("What would subject would u like to check")
print("you can check Math french and english ")

acoustic ingot
#

elif 'open edge' in query:
print("Opening...")
speak("Opening")
edgePath = "C:\Program Files\Microsoft\Edge\Application\msedge.exe"
os.startfile(edgePath)

#

@somber heath this is the edgepath

jovial meadow
jovial meadow
whole bear
#

a. Write a program that asks for a string and a search word. The program
then determines and displays how many time the search word appears in
the string.

frozen coral
#

import subprocess
import webbrowser
import time
from stem import Signal
from stem.control import Controller
from selenium import webdriver
from selenium.webdriver.firefox.options import Options
from bs4 import BeautifulSoup
import selenium
from selenium import webdriver
from selenium import webdriver
import requests
import scrapy

whole bear
#

Hello, IED_TRADER.

#

What is your problem?

#

So you are going to chang the proxy, right?
If so, where? selenium? or scrapy?
do you use selenium in scrapy?

frozen coral
#

import webbrowser

whole bear
#

yeah, I will check, let me take some time.

#

ok,

#

I had some experience with selenium.
Before I used proxy in selenium.
webdriver.DesiredCapabilities.CHROME['proxy'] = { "httpProxy":random_proxy_ip, "ftpProxy":random_proxy_ip, "sslProxy":random_proxy_ip, "proxyType":"MANUAL", }

#

here, random_proxy_ip is my_proxy("127.0.0.1", 9050)

#

If this is not that you want, I don't know another way.😩

#

def get_random_proxy(self): random_idx = random.randint(1, len(self.proxy_list) - 1) proxy_ip = self.proxy_list[random_idx] return proxy_ip

#

self.proxy_list is the list of proxies.

#

do you want the sample website?

#

can I send the file through here?

#

only txt?

wise cargoBOT
#

Hey @whole bear!

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

whole bear
#

Actually, I am not familiar discord.

acoustic ingot
#

Can anyone help me?

whole bear
#

@acoustic ingot what do I do for you?

#

!code-blocks

acoustic ingot
#

Ok sorry I was making a bot.

#

I want to make password system

celest geyser
#

⊂ヽ
  \\ Λ_Λ Esse é o Meme Cat. Ajude
   \( 'ㅅ' ) Meme Cat Dominar o
    > ⌒ヽ Discord Colando Ele
   /   へ \ Em 10 Outros servers
   /  / \\ ou Ele Nunca Vai
   レ ノ   ヽつ Ser Um Meme
  / /
  / /|
 ( (ヽ
 | |、\
 | 丿 \ ⌒)

mystic marlin
#

C:\Users\admin\Desktop\Agent\tsrc\src>"..\python\python.exe" main.py
Traceback (most recent call last):
File "main.py", line 2, in <module>
import storage, dbHandler, net, updater
ModuleNotFoundError: No module named 'storage'

wise cargoBOT
#

Hey @mystic marlin!

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

mystic marlin
#

dir tree

unreal crest
#

@mystic marlin

mystic marlin
#

yes?

#

import sys

sys.path
['C:\Users\admin\Desktop\Agent\tsrc\python\python38.zip', 'C:\Users\admin\Desktop\Agent\tsrc\python']

unreal crest
#

sys.path
['', 'C:\Program Files\Python38\Lib\idlelib', 'C:\Program Files\Python38\python38.zip', 'C:\Program Files\Python38\DLLs', 'C:\Program Files\Python38\lib', 'C:\Program Files\Python38', 'C:\Program Files\Python38\lib\site-packages']

bronze forge
#

i just made bob the meme

#

░░░░░▄▄▄░░▄██▄░░░
░░░░░▐▀█▀▌░░░░▀█▄░░░
░░░░░▐█▄█▌░░░░░░▀█▄░░
░░░░░░▀▄▀░░░▄▄▄▄▄▀▀░░
░░░░▄▄▄██▀▀▀▀░░░░░░░
░░░█▀▄▄▄█░▀▀░░
░░░▌░▄▄▄▐▌▀▀▀░░
▄░▐░░░▄▄░█░▀▀ ░░
▀█▌░░░▄░▀█▀░▀ ░░
░░░░░░░▄▄▐▌▄▄░░░
░░░░░░░▀███▀█░▄░░
░░░░░░▐▌▀▄▀▄▀▐▄░░
░░░░░░▐▀░░░░░░▐▌░░
░░░░░░█░░░░░░░░█░░░░░░░
░░░░░░█░░░░░░░░█░░░░░░░
░░░░░░█░░░░░░░░█░░░░░░░
░░░░░▄▄▄░░▄██▄░░░

mystic marlin
#

The Betrothed

mystic marlin
unreal crest
warm axle
#

what to copy

unreal crest
#

@warm axle 10/10

warm axle
#

my ears 😫

fringe bramble
#

hey noxis

#

are yall trollin him cuz his mic is fine?

warm axle
#

hahahaha

whole bear
#

hi

warm axle
#

nah

#

that's impossible

whole bear
#

I have an issue while setting authenticated proxy selenium

warm axle
#

5

#

hahahahahaha

unreal crest
#

+respect

warm axle
#

@whole bear are you using an api for that

#

i speak 4

whole bear
#

Hi, Everybody

warm axle
#

do you have python on your PATH?

whole bear
#

sure

#

My code works fine in head mode.

#

i just need to make the script work in headless mode

warm axle
#

he has portable version i think

#

on USB?

whole bear
#

could you go through my code?

#

@warm axle Hi

warm axle
#

hi

whole bear
#

are you interested in my issue?

warm axle
#

sure

whole bear
#

hey alexender

warm axle
#

where is the code?

whole bear
#

Please go through the above link and let me know if you can help me

warm axle
#

okay i am reading it

whole bear
#

hey is this is the muted peaple chat

warm axle
#

😢

whole bear
#

@warm axle can we talk in other room?

#

why im cool

warm axle
#

@whole bear did you try this method?

whole bear
#

sure. The most important thing is that I need to deploy the code on scrapinghub.

#

but I can't set crawlera in selenium project

warm axle
#

oh i see

whole bear
#

The attached code in stackoverflow works fine. but it doesn't work in headless mode.so I am looking for someone who can help me

warm axle
#

hi

whole bear
#

Ok no problem

unreal crest
#

@whole bear hye

whole bear
#

if you have any solution, please let me know

#

what is ur mother languge

warm axle
#

😟

#

hahhahahahaha

#

don't blame the man

#

in cs:go

#

?

mystic marlin
#

import java.util.*;
class JavaExample{
public static void main(String args[]){
ArrayList<String> alist=new ArrayList<String>();
alist.add("Steve");
alist.add("Tim");
alist.add("Lucy");
alist.add("Pat");
alist.add("Angela");
alist.add("Tom");

  //displaying elements
  System.out.println(alist);

  //Adding "Steve" at the fourth position
  alist.add(3, "Steve");

  //displaying elements
  System.out.println(alist);

}
}

unreal crest
whole bear
#

this sounds like a wife

mystic marlin
#

ATmega328 microcontroller should be fine

#

Nvidia Quadro

frozen coral
#

AMD RX 580-8GB

mystic marlin
#

Just hire a painter as the graphics card

frozen coral
#

😂

mystic marlin
#

Salutations

whole bear
#

everyone asks where is @whole bear but no one asks **how is @whole bear **

whole bear
#
print(10%7)
print(10 - (7 * (10//7)))
whole bear
errant helm
whole bear
ebon remnant
frank falcon
ebon remnant
whole bear
#

@frozen coral

frank falcon
#

@whole bear @frozen coral

#

come bak

scarlet plume
fossil pond
#

thanks

scarlet plume
#

i've added it to our whitelist, apologies

fossil pond
#

no worries, someone just wanted to know a web-dev discord

silver flint
#

pyqt

jovial meadow
#
silver flint
tidal salmon
#

!code

wise cargoBOT
#

Discord has support for Markdown, which allows you to post code with full syntax highlighting. Please use these whenever you paste code, as this helps improve the legibility and makes it easier for us to help you.

To do this, use the following method:

```python
print('Hello world!')
```

Note:
These are backticks, not quotes. Backticks can usually be found on the tilde key.
• You can also use py as the language instead of python
• The language must be on the first line next to the backticks with no space between them

This will result in the following:

print('Hello world!')
fleet kettle
#

|||

#

°°°

#
print('Hello world!')
#
print("---------------------------------------------------------------")
print("Transformar y resolver FUNCIÓN CUADRÁTICA")
print("Elige una de las siguientes opciones")
import math
print("A) Función Polinómica B) Función Factorizada C) Función Canónica")
sel = int(input("Ingrese el numero correspondiente al tipo de función: "))
if (sel == 1):
        print("Usted ha escogido Función Polinómica")
        a = float(input('Valor de a: '))
        b = float(input('Valor de b: '))
        c = float(input('Valor de c: '))
        if a == 0:
            print("No hay solución")
        else:
            x1 = (-b + math.sqrt(b**2 - 4*a*c)) / (2 * a)
            x2 = (-b - math.sqrt(b**2 - 4*a*c)) / (2 * a)
            print(x1, x2)
            select = int(input("Cambiar la Funcion Polinómica a Canónica (1) o a Factorizada (2)"))
            if select==1:
                print("Forma Canónica")
                vx = -b / 2*a
                vy = vx**2 + b*vx + c
                print("y =", a, "(x -",vx,")**2 +", vy)
            else:
                print("Función Factorizada")
                print("y =",a,"(x -",x1,")*(x -",x2,")")
elif sel==2:
        print("Función Factorizada")
        x = 0
        a = float(input('Valor de a: '))
        x1 = float(input('Valor de x1: '))
        x2 = float(input('Valor de x2: '))
        print("Raíces: ",x1, "y", x2)
        select = int(input("Cambiar la Funcion Factorizada a Polinómica (1) o a Canónica (2)"))
        if select==1:
            print("Forma Polinómica")
            print("y =", a,"x**2",*(x-x1)*(x-x2)) #INCORRECT

fossil pond
#

(x-2)(x-1)

#

1/2(x-2)^2 +2

#

a(x-k)^2+c

#
print("y =",a,"(x -",x1,")*(x -",x2,")")
print(f"y ={a} (x - {x1})*x - {x2})")  


#

{}

#

def function(argument):
  print('Test)

crystal escarp
#

spaces

#

4

#

spaces

#

oh sorry

#

what you guys doing?

#

functions?

#

def name(*args, **kwargs)

#

def name(frist, last):

tidal salmon
#
len([e for e in gold_ents if e.tag == tag])    # option a
[e.tag == tag for e in gold_ents].count(True)  # option b
#

which do people prefer?

junior kayak
#

does anyone know any jav

#

a

tidal salmon
#

@junior kayak I do, unfortunately, but you might want to look for a Java related server

junior kayak
#

can u help me if u know java tho

rugged crag
junior kayak
#

what

#

do u know anyjavs