#voice-chat-text-0
1 messages · Page 610 of 1
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
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?
30
elong thrust
Sad meme part 2
I thought you were
I asked choochoo
He looks like kumail nanjiani
s = 'string'
a = s[::-1]
return s is a
return s[:] is s
a = 'string'
b = a
return a is b
s='str'
print( s[:] is s)
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
s[:]=s[::-1]
'''''''''''''''''''''
s=s[::-1]
looking for people to collab with me for the tech with tim code jam
can u tell me which app to download for python
s.reverse()
Actually Strings are not list
List and strings are sequences
@jovial meadow
If that makes a difference
does anyone know where I can go to do practice problems for programs for beginners?
codewars, hackerrank, exercism.io
Why text chat is called voice chat? 😄
So you can support your arguments in real voice chat
did you know there are 10 kind of people in the world one who understand hexadecimal and... and F the rest
It was a test
hahaha I see
@tawdry smelt https://jsfiddle.net/upm4k586/1/
Test your JavaScript, CSS, HTML or CoffeeScript online with JSFiddle code editor.
@wispy idol - one of my favorites is Bratkartoffeln (we call it Heart-Attack-On-A-Platter informally)
@jaunty glacier
SW1A 1AA
Practical Examples of GPT-3. How GPT3 will change our communication with the machines. From Simple English to Code and beyond: GPT3 to CSS, HTML, Keras, Excel.
** If you want to test models similar to GPT-3 by yourself check out my platform Contentyze: https://contentyze.com...
puppeteer
puppentheater
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
use a has table
XOR operator
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
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')
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')
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)
raymond hettinger
Hash table is a data structure that represents data in the form of key and value pairs. In this tutorial, you will understand the working of hash table operations with working code in C, C++, Java, and Python.
set(nums)
t - (t / 2) = b
https://udemy.com @quartz lynx
what are you trying to lean @quartz lynx
learn*
@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]) -> []
<script type="text/javascript" charset="utf-8">
var socket = io();
socket.on('connect', function() {
socket.emit('my event', {data: 'I\'m connected!'});
});
</script>```
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:
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
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)
20 more lessons like this about music production, songwriting, mixing, mastering, and more: http://learnmonthly.com/andrew
Subscribe → http://bit.ly/subAndrewHuang
Merch! https://teespring.com/stores/andrewismusic
Support my work on Patreon and be the first to get all my new ...
hehehhe
if you watch it 2x speed u can learn in 15 minutes
yeeted
clair de lune
clair de lune
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
push = lambda: action.key_down(Keys.SPACE).key_up(Keys.SPACE).perform()
[push() for i in range(2)]```
or
action.key_down(Keys.SPACE).key_up(Keys.SPACE).perform(2)
for _ in range(2):
action.key_down(Keys.SPACE).key_up(Keys.SPACE).perform()
func = action.key_down(Keys.SPACE).key_up(Keys.SPACE).perform
func()
func()
kek
@drowsy haven https://yummybeet.com/2019/10/26/one-pan-indian-chicken-rice-with-raisins-yogurt-lemon/
uheeas
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
general was disabled due to the raid
oh ok
Are you traveling?
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
@drowsy haven
__init__.py
From Foldername.filename import ...
$ 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
sssp
share your code if you can
Set_up: I have a .py file for each function I need to use in a program.
In this program, I need to call the function from the external files.
I've tried:
from file.py import function(a,b)
But I...
$ 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
adasdjkadkjasvdakjdvakjda
""")
.
String selectQuery = "SELECT * FROM " + "sqlite_sequence"; Cursor cursor = db.rawQuery(selectQuery, null); cursor.moveToLast();
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"]
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
lines = [(1,2,3,4), ('a', 'b', 'c', 'd')]
for line in lines:
print({key:value for key,value in zip(fields,line)})```
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```
A massive explosion has killed at least ten people and left hundreds injured after the blast devastated part of Lebanon's capital Beirut.
Pictures show buildings destroyed, people walking wounded, and a sea of wreckage after the blast that could be heard some 125 miles away i...
Welcome back to Instagram. Sign in to check out what your friends, family & interests have been capturing & sharing around the world.
hello
hey
where are u from?
@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
💧
Русские ВПЕРЁД!
pt2
Тут русские есть или только одни пиндосы?
Владимир Путин - холодец, широкий лидер и капец!
Vladimir Putin holodets, shirokiy lider i boets!
wide == funny
the song is "Song for Denise (Maxi Version)"
- sorry about the ads, I can't remove them, and I'm not making a penny from this video
Thanks to WHP for the timestamps/chapters :)
0:00 camera zooms in.
0:01 Putin puts his left hand inside his jacket sleeve, flicks...
Ups sorry
Выложили RND TEAM
Больше видео в конфе https://vk.me/join/AJQ1d5gA_wptgLrcOq5l1LXr
RUSSKIE VPERED! FUCK PYINSTALLER!
Guys how to parse utf8 file? if i parse file with default python open function, it crashs
i dont know ask in help
10% OFF EUROBASS II THIS WEEK ONLY: https://www.submissionaudio.com/discount/StevieT?redirect=%2Fproducts%2Feurobass2
Discount will be applied automatically at checkout. Alternatively, use code: StevieT
This bass player TOTALLY faked it... But then he got angina...
SUBSCRIB...
@whole bear
Check out the rich module. Many nice tabular output options.
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
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
Кто русский, напишите +
Nice
o
wait a sec jis
Really terrible.@jaunty glacier
@jaunty glacier And you are insulting me.
@jaunty glacier 
Everyone!
@jaunty glacier said me "go and suck your mothers cook in hell you little bastard"
yeah what did you expect to happen?
I feel like there is missing context here
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.
Vinnie Paz - Battle Hymn feat. Apathy, King Syze, Crypt the Warchild, Jus Allah, Esoteric, Blacastan, Celph Titled & Planetary
Piotr Illitch Tchaikovsky (25/04/1840 - 25/10/1893)
Orchestra : The USSR Ministry Of Culture Chamber Choir
Conductor : Valery Polyansky
Album : V/A - Sacred Treasures - Choral Masterworks From Russia
Label : Hearts Of Space - 1998
London, March 19, 1965
Personnel:
Bill Evans - p
Chuck Israels - b
Larry Bunker - d
Set:
Part I
Five (theme)
Elsa
Summertime
Come Rain Or Come Shine
My Foolish Heart
Re: Person I Knew
Israel
Five (theme)
Part II
Five (theme)
How My Heart Sings
N...
@silver flint - nice Bill Evans vid
YoptaScript - скриптовый язык программирования для гопников и чётких пацанов. Yopta.Space
куку йопта этоФункцияЙбать()жЫ
ксива.малява("Я трещу!") нахуй
есть
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!
stfu ppl on voice chat
hakıdız duuude
: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).
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
cookies, dedicated private proxy,
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
cookies
chrome data folder
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
Turn websites into data with the world's leading web scraping services & tools from the creators of Scrapy. Data extraction trusted by industry leaders.
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
Terminator will you say get to the chopper
<div align="center">Stuff goes here.</div>
.
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
screen share works on manjaro
Well it does
But clearly not one screen haha
That's an issue
Yeah
Nope not yet
Wut
BTW this is my bash script https://paste.pythondiscord.com/potibipejo.bash
stream quality is terrible for me
It is pretty okay for me
gdude's is fine
it's your screen that i can't see clearly
might be the French middle out compression
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
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
I'm working on the jam
Ohk
Not sure if the nyan cat is that relevant but okay
I need to complete my own project lol
Hey gdude
Bye
I saw you on github I don't remember where
let me check wait
yeah in the pythondiscord website repo
I really need to disable those connection sounds
Haha yeah, don't put libraries in the repo
yes, I use flask. Thinking of learning django for projects
👀
How did you learn django
The docs are really good yeah
I know flask very well, if it helps
flask is very customizable, and you need to do everything on your own
lmao
Which is easier and better to start, django or flask?
i feel like moving from flask to django helps
Jinja is pretty straightforward though
That doesn't look like journeymap 
docs for?
Journeymap
This game is fucking loud haha
Yup the pydis code jam
A little?
!cjcd
The Summer Code Jam ends in 1 day, 3 hours, 54 minutes and 23 seconds.
Ah yeah that's better thanks
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
Is it difficult like cuphead or just hard?
mannn I loved cuphead
Cuphead is pretty fair IMO
Haha
Is there a stream going somewhere?
Yeah gdude is streaming
I cannot watch in browser I guess
It had nothing better to do, it is just following
I have such a backlog of games to play. And then I always just go back to dwarf fortress lol
jesus
The worst was the price
how much was it
lmaooo
I'd pull the trigger on that too. Even knowing that I wouldn't touch them
It's my most toxic trait
All game at -80% + the whole pack at -75% again
I'll probably only play the portal but that's so worth it
I also have the BLM itch.io pack
With the 1.8k games haha
Yeah
They even are game SDKs
Just for Celeste the pack was worth it anyway
ohh damn I need to check out celeste
Ya don't see any of those chats?
hi
what are you coding
I'm working on the code jam
It is a short coding competition
Well, we have to build a project around a specific theme
They are more infos there https://pythondiscord.com/pages/code-jams/
We're a large, friendly community focused around the Python programming language. Our community is open to those who wish to learn the language, as well as those looking to help others.
Well, good luck then 🐖
thanks!
Choreography - Agis Toursidis 2006
!tempban 718385102312177667 14d Making inappropriate, loud, sexual noises in voice chat is not acceptable.
:incoming_envelope: :ok_hand: applied ban to @nimble ether until 2020-08-22 20:34 (13 days and 23 hours).
!tempban 734346733483458651 14d Making inappropriate, loud, sexual noises in voice chat is not acceptable.
:incoming_envelope: :ok_hand: applied ban to @crisp marsh until 2020-08-22 20:35 (13 days and 23 hours).
How can I set a timer in python? is there a timer function?
!tempban 718385102312177667 14d Making inappropriate, loud, sexual noises in voice chat is not acceptable.
Ok so I just sent it @frozen coral
@frozen coral https://en.wikipedia.org/wiki/Eventual_consistency
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
@frozen coral https://www.php.net/manual/en/function.password-hash.php
Here?
@warm axle helloo
@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
Hahahahahahaha
hhhhh
@errant helm https://www.getpy.com/mobile
Learn how to code on the go! Interactive courses in Swift, Python, Javascript, HTML/CSS, Data Science and more.
like i wanna do some interactive work
oh
js
i forget
dict
but i don't store data
i scrape every time the user
search
for a movie
proxies, header, cookies
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
bruh
you can but sleep everywhere
yeah, mouse tracking is pretty common
but that's not good
also which programming language is good for encrypting chats?
i don't want a explanation on how nothing can't be encrypted fully
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
Me too Morocco
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
@quasi condor https://www.webnovel.com/
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
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...
$4.99
9104
82
@quasi condor https://store.steampowered.com/app/302670/Call_to_Arms/
Call to Arms offers an innovative mix of real-time strategy and 3rd, as well as 1st person controls. Set in the time of modern warfare, the game offers realistically modeled vehicles and heavy weaponry, as well as dozens of firearms and customizations. Command your troops to v...
$14.99
6614
but how the f you gonna controle the vpn
to change the ip
...
nordvpn support socks5
i use them always
.
.
hhhhhhh
yeah
Monopoly, ruining friendships since 1935
Check out my new card game 'Can't Catch Harry' ➤https://www.kickstarter.com/projects/820022783/cant-catch-harry?ref=dsvmjp
Friends With Answers (Thanks for doing lines) ➤ https://www.youtube.com/channel/UCgh2q0g6I9wHCjDTmu4tnuA
Seeburg...
@quasi condor https://www.youtube.com/watch?v=cV542dRK3uk
I was a sandwich ARTIST, okay? Because subways are everywhere, there's probably someone watching this who used to or is working at subway right now. How is it? I thought it was an okay job.
Twitter ➤ https://twitter.com/Theodd1sout
Website ➤ https://theodd1sout.com/
Subscribe to Casually Explained to get into the Friend-With-Benefits Zone: ► https://goo.gl/IEE7wl
Other places you can find me:
►https://www.facebook.com/CasuallyExplained/
►https://twitter.com/CasuallyE
►https://www.instagram.com/casually_explained/
If you'd like to supp...
i just like to talk about this stuff
The horns sound, the ravens gather. An empire is torn by civil war. Beyond its borders, new kingdoms rise. Gird on your sword, don your armour, summon your followers and ride forth to win glory on the battlefields of Calradia. Establish your hegemony and create a new world out...
$49.99
101003
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?
-~--~--~--~
Please watch: "HILARIOUS FART SPRAY PRANK!! INSANE REACTIONS!! 2018 ziz"
https://www.youtube.com/watch?v=tpohN4gmm-w
-~---~-
send bulk mails
sendgride
take a look at sendgride
oh
imap
IMAP
but it's hard
what time is it?
oh
no
17Pm
Hahahahahahahaha
1000K
Even moroccan currency is not that cheap
it' a joke
Hahahahaha ik
@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?
On reddit
@whole bear Whats the point?
@whole bear wait whats going on give us a basic overview of what u were saying, just joined and it seems intresting
I'm not even related to coding... I do ecommerce
im not even in uni lmao
Hahahahahaha
germany oh oh
@fringe bramble what are you treying to do
dude im just a 16 year old having fun building crap xD
ive done robotics, electronics, and now im in AI/ML
what is your tech stack
tech stack?
hhhhhhhhh
javascript MERN, python ect
python , just started when summer started :D
i see
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
you should make a toilet plunger bot
blon busk?
🔸 ME MANDA UM ALO NO DISCORD https://discord.gg/dWzkPdt
👌 Padrim TOP: http://padrim.com.br/emisu
🐦Twitter :
https://twitter.com/emisushow
Gabriel M.
Thomas Sircus
Guilherme Fagionato dos Santos
Email pra contato : Emisus2@gmal.com
lmao
hhhhhhhh
0 do u have that bird o.o, or is it just a prof pic
jajqajajajaja
jajajjjjjjjj
i need to know 🤣
arab say khkhkhkhkkhkhkhkh
wanna talk about ways to rule the world cuz why not?
they were just playing solitare .-.
😂
btw where ya from balloon?
Zimbabwey
cool^
Negative bro
yeaaa
@hearty cypress https://pythondiscord.com/pages/resources/
We're a large, friendly community focused around the Python programming language. Our community is open to those who wish to learn the language, as well as those looking to help others.
@hearty cypress getpy.com
try this
@hearty cypress https://www.youtube.com/watch?v=DEqrCI1018I
In this video, we learn how to implement commands into our bot to increase its functionality.
If you have any suggestions for future videos, leave it in the comments below.
GITHUB: https://github.com/Rapptz/discord.py
DOCUMENTATION: https://discordpy.readthedocs.io/en/latest...
@hearty cypress https://www.youtube.com/watch?v=rfscVS0vtbw
This course will give you a full introduction into all of the core concepts in python. Follow along with the videos and you'll be a python programmer in no time!
⭐️ Contents ⭐
⌨️ (0:00) Introduction
⌨️ (1:45) Installing Python & PyCharm
⌨️ (6:40) Setup & Hello World
⌨️ (10:23...
@hearty cypress Did you still need code help?
Alright, one sec. I'll hop on voice chat to make it easier
I mean, I need to enable my mic 😄
oof
@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
@turbid oriole sorry i wil try to keep everthing good ❤️
Thanks for understanding 👍
a = 5
def somebody_once_told_me(a):
return a ** a
b = somebody_once_told_me(a)
print(b)
3125
@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
Hey @whole bear!
It looks like you tried to attach a Python file - please use a code-pasting service such as https://paste.pythondiscord.com
: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).
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 ")
elif 'myself' in query:
print("opening...")
speak("opening")
webbrowser.get(edgePath)
webbrowser.open("messenger.com/t/astro.wright.79")
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
Clean Code: A Handbook of Agile Software Craftsmanship [Robert C. Martin] on Amazon.com. FREE shipping on qualifying offers. Clean Code: A Handbook of Agile Software Craftsmanship
Clean Architecture: A Craftsman's Guide to Software Structure and Design (Robert C. Martin Series) [Martin, Robert C.] on Amazon.com. FREE shipping on qualifying offers. Clean Architecture: A Craftsman's Guide to Software Structure and Design (Robert C. Martin Series)
Head First Design Patterns: A Brain-Friendly Guide [Eric Freeman, Bert Bates, Kathy Sierra, Elisabeth Robson] on Amazon.com. FREE shipping on qualifying offers. Head First Design Patterns: A Brain-Friendly Guide
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.
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
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?
import webbrowser
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?
Hey @whole bear!
It looks like you tried to attach a Python file - please use a code-pasting service such as https://paste.pythondiscord.com
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:
Actually, I am not familiar discord.
Can anyone help me?
⊂ヽ
\\ Λ_Λ Esse é o Meme Cat. Ajude
\( 'ㅅ' ) Meme Cat Dominar o
> ⌒ヽ Discord Colando Ele
/ へ \ Em 10 Outros servers
/ / \\ ou Ele Nunca Vai
レ ノ ヽつ Ser Um Meme
/ /
/ /|
( (ヽ
| |、\
| 丿 \ ⌒)
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:
Pastebin.pl is a website where you can store code/text online for a set period of time and share to anybody on earth
dir tree
@mystic marlin
yes?
import sys
sys.path
['C:\Users\admin\Desktop\Agent\tsrc\python\python38.zip', 'C:\Users\admin\Desktop\Agent\tsrc\python']
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']
i just made bob the meme
░░░░░▄▄▄░░▄██▄░░░
░░░░░▐▀█▀▌░░░░▀█▄░░░
░░░░░▐█▄█▌░░░░░░▀█▄░░
░░░░░░▀▄▀░░░▄▄▄▄▄▀▀░░
░░░░▄▄▄██▀▀▀▀░░░░░░░
░░░█▀▄▄▄█░▀▀░░
░░░▌░▄▄▄▐▌▀▀▀░░
▄░▐░░░▄▄░█░▀▀ ░░
▀█▌░░░▄░▀█▀░▀ ░░
░░░░░░░▄▄▐▌▄▄░░░
░░░░░░░▀███▀█░▄░░
░░░░░░▐▌▀▄▀▄▀▐▄░░
░░░░░░▐▀░░░░░░▐▌░░
░░░░░░█░░░░░░░░█░░░░░░░
░░░░░░█░░░░░░░░█░░░░░░░
░░░░░░█░░░░░░░░█░░░░░░░
░░░░░▄▄▄░░▄██▄░░░
The Betrothed
what to copy
@warm axle 10/10
Don't forget to check out our links below!
https://ndcporto.com/
https://ndcconferences.com/
We are all familiar with example-based testing, as typified by TDD and BDD, where each test is hand-crafted.
But there's another approach to writing tests. In the "property-based tes...
my ears 😫
hahahaha
hi
I have an issue while setting authenticated proxy selenium
+respect
Hi, Everybody
do you have python on your PATH?
sure
My code works fine in head mode.
i just need to make the script work in headless mode
hi
are you interested in my issue?
sure
hey alexender
where is the code?
I have a authenticated proxy that needs to be set to selenium in headless mode.
I have succeeded to get accessed to site on chrome through proxy. but it doesn't work in a headless mode.
I am lookin...
Please go through the above link and let me know if you can help me
okay i am reading it
hey is this is the muted peaple chat
😢
@whole bear did you try this method?
sure. The most important thing is that I need to deploy the code on scrapinghub.
but I can't set crawlera in selenium project
oh i see
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
hi
Ok no problem
@whole bear hye
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);
}
}
this sounds like a wife
AMD RX 580-8GB
Just hire a painter as the graphics card
😂
Salutations
everyone asks where is @whole bear but no one asks **how is @whole bear **
print(10%7)
print(10 - (7 * (10//7)))
https://www.youtube.com/watch?v=pX0eJBvBNzs
@frozen coral
@rich garnet
@frank falcon
@ebon remnant
You don't need to be a professional chef to transform bread into toast.
CONNECT WITH US
Dig in to great recipes: http://www.food.com
Find us on Facebook: http://www.facebook.com/fooddotcom
Follow us on Instagram: http://instagram.com/fooddotcom
F...
Today I show you how to perfectly butter toast. Buttering toast may seem like an easy task to do, but unfortunately most people struggle at it on a daily basis. Even butter distribution is much harder than it seems. However there's a simple trick you can use to ensure that you...
#web-development @heavy nacelle
In this lesson, I will be teaching you how to easily play and count in 2/4 and 3/4 time signatures.
The top number of a time signature indicates number of beats in a measure and bottom number indicates which note gets one beat.
This piano lesson covers how count rhythms i...
@frozen coral
thanks
i've added it to our whitelist, apologies
no worries, someone just wanted to know a web-dev discord
pyqt
!code
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!')
|||
°°°
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
(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)
spaces
4
spaces
oh sorry
what you guys doing?
functions?
def name(*args, **kwargs)
def name(frist, last):
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 I do, unfortunately, but you might want to look for a Java related server
can u help me if u know java tho
