#voice-chat-text-0
1 messages ยท Page 742 of 1
while big >= 0 and goal >= 0:
goal -= 5
big -= 1
I think this is
goal, big = divmod(goal, 5)
let's see
!e
big, goal = 45, 56
while big >= 0 and goal >= 0:
goal -= 5
big -= 1
print(big, goal)
big, goal = 45, 56
print(divmod(goal, 5))
@tidal salmon :white_check_mark: Your eval job has completed with return code 0.
001 | 33 -4
002 | (11, 1)

fancy looking guy
@shut goblet do you have to use exactly goal bricks?
You're doing assignment = instead of comparison ==
i mean do you have to use exactly the # of bricks to make the goal?
no
or just less than or equal to that number of bricks
thx
@hushed elm https://i.imgur.com/irqFnp7.png
fine art
@shut goblet
def make_bricks(small, big , goal):
return goal % 5 <= small and goal-(big*5) <= small
assert make_bricks(3,1,8) == True
assert make_bricks(3,1,9) == False
assert make_bricks(3,2,10) == True```
!e
def make_bricks(small, big , goal):
return goal % 5 <= small and goal-(big*5) <= small
assert make_bricks(3,1,8) == True
assert make_bricks(3,1,9) == False
assert make_bricks(3,2,10) == True```
@cyan quartz :warning: Your eval job has completed with return code 0.
[No output]
Got 450 dpi
- 1.00 sensitivity in CSGO
Need to do almost 45-50 cm to do a 220ยฐ
so yeah
Low sensitivity is the key haha
why in the world would someone when told to group agents in a dictionary create an array of dictionaries with the attribute to group by as an element
i just don't understand the thought process
i have 0 sense

So then, you just have to put a tutorial, to explain how to use import, to actually read the code of conduct
It's THAT simple
Salubriousness
Turn a people into an illiterate
(magic harry potter spell)
(i honestly don't know what that means)
!otn a cheese-infused-europeans
:ok_hand: Added cheese-infused-europeans to the names list.
def round_sum(a, b, c):
a1 = round10(a)
b1 = round10(b)
c1 = round10(c)
return a1+b1+c1
def round10(num):
if num[-1] >= 5:
num += 10 - num[-1]
return num
elif num[-1] == 0:
num -= num[-1]
return num
else:
return num
anyone know why this isnt working?
what is the type of the parameter num for round10
wym?
can you show me an example of you using the methods
!e
my_num = 16
print(my_num[-1])
@uncut meteor :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 2, in <module>
003 | TypeError: 'int' object is not subscriptable
i'm unsure what you are tryna do with [-1] but its not proper syntax
can you tell me what you are tryna do with that code
you could just make it a string and pull the last character and convert back to it, although I'm sure there is a better way to do it using modulus
!e
my_int = 57
temp_str = str(my_int)
if int(temp_str[-1]) >= 5:
print("Round up")
else:
print("Round down")
@uncut meteor :white_check_mark: Your eval job has completed with return code 0.
Round up
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
I just wish that companies worth millions or billions of dollars would invest in platform specific applications.
Yeah
Just not Electron apps
someone mentioned a lightwight windows maybe OS? i didnt quite catch all of it but theres "Windows 10X" or windows 10 10 which is windows for lightweight mobile devices (its basically a skin for windows 10)
Windows 10 IoT
use arch linux so you can say that you use arch to people
i will keep this in mind
ty

Well, i'll leave you here. Sorry for not talking that much with a microphone, still impressed by you guys xD
Cya
where did the off topic vc go?
vanished
The whiter, the cheesier.
A ring of cheese around the world.
Equatorial correlation.
The whiter you are, the more likely you are to be lactose tolerant, iirc.
I'm not sure of the mechanism.
hey
hello
i need help ! i'm a beginner and i want to know how we can find the position of a word but we have two of this word like 'hello and welcome and good to see you' we have two of the word 'and' can you tell me what we use to know the position of the second 'and' not for only this text for any other text please and thank you
@tidal salmon Was it Borat?
no
regex can probably do that
@narrow mango You can use python to do this, howev...that.
str.find(sub[, start[, end]])```
Return the lowest index in the string where substring *sub* is found within the slice `s[start:end]`. Optional arguments *start* and *end* are interpreted as in slice notation. Return `-1` if *sub* is not found.
Note
The [`find()`](#str.find "str.find") method should be used only if you need to know the position of *sub*. To check if *sub* is a substring or not, use the [`in`](../reference/expressions.html#in) operator:
```py
>>> 'Py' in 'Python'
True
but how
that's how
yes thank you
oof i don't think i could function if i couldn't lean back a bit
i'm sure you can figure that out
rabbit
๐

NOW IT GETS FASTER EVERY CYCLE: https://www.youtube.com/watch?v=u2qCD_tjjBQ
March footage:
https://www.youtube.com/watch?v=FwEkaGYBdHs
https://www.youtube.com/watch?v=NKLUkfpmkaQ
Song: Bee Gees - Stayin' Alive
https://www.youtube.com/watch?v=oQwNN-0AgWc
ive seen this too many times
you know all the best memes
true
Web site created using create-react-app
6. No spamming or unapproved advertising, including requests for paid work. Open-source projects can be shared with others in #python-general and code reviews can be asked for in a help channel.
@icy axle why are you lurking here
Well howdy
vester get in here
Hahah, itโs 10 pm and Iโm gonna get my sleep schedule back on track
then ill see you when you wake up
never heard of it
I think Iโll stay in text for a minute or two
Your hosting provider has made server changes to their Railgun settings which resulted in Error 524. Go to the Cloudflare dashboard, select Speed, Railgun and either disable Railgun if it is no longer supported by the provider or test & select a working connection from the list of options
``` @olive hedge
My logo is officially still again. Those squares arenโt separating
haha, sad
What is that site even about? Is it meant for potential employers?
i'm on ff with ublock origin and it looks fine
example.org/endpoint1 will go to one container and example.org/endpoint2 will go to different one
sorry, just saw this, yeah it is just a portfolio site.
it is not finished at all, barely started really
Ah, nice
Isolation... is not good for me
import subprocess
import os
time.sleep(1)
User = os.getlogin()
one = 'icacls "C:/Program Files" /setowner "'
two = '" /t /c '
cacls = one + User + two
#First
subprocess.call(cacls)
#Second
subprocess.call('wmic process where name="cacls.exe" CALL setpriority 32768')
#how do i run this codes at the same time?
#I need to first run the first to open the exe then run the second command to make it work```
well that's terrifying...
isn't there a new strain that's more deadly now?
which was kinda problematic
Yeah, I was hearing that
mutation which originated in the UK iirc
yeah the new strains are kinda creeping me out
its 4 in the morning and i still havn't slept
Spaceship McSpaceshipface
Tax documents and payroll
I'll bet you a dollar he wasn't delivering programs. ๐
weed?
oh I wasn't implying that
me: asks git question
hemlock: immediately leaves
maybe the winky face was too implicative of unsavory deliveries
hi @ all
hello
You should check out http://pyro.ai. Looks interesting.
Deep Universal Probabilistic Programming
It's built on top of pytorch I think
does anyone know what a ObiWan Error is?
Off-by-one ๐
Like doing xs[1] to get the first element of a python array, when you meant to do xs[0].
example, I wanna print the numbers 1 through 5 and do
!e
for i in range(5):
print(i)
I mean !e has to be at the beginning.
hahaha
!e
for i in range(5):
print(i)
@gentle flint :white_check_mark: Your eval job has completed with return code 0.
001 | 0
002 | 1
003 | 2
004 | 3
005 | 4
๐
!eval
You can do this```python
print('hello')
@stuck furnace :white_check_mark: Your eval job has completed with return code 0.
hello
ok i get it
ah, OK
But not this
!eval ```python
print('hello')
I'll do that next time then
that is not an obi-wan error by the classical definition
an obi-wan error is a loop of some sort where the index is off by one
it is a type of off-by-one error, which is what your problem was an example of
you mean if i use i>=5 instead of i>5
that would be an off-by-one error
but not an obi-wan error
an obi-wan error explicitly is about a loop where the index is off by one
Have you heard of a Yoda condition?
It's where you do python if 1 == x: ... instead of ```python
if x == 1:
...
not realy
yeah
๐
Alright, I'm going to follow everyone else and go ๐
Might go for a walk actually. See ya ๐
See ya
Just joined the server today. Is the VC typically inactive like it is now?
its most active during ~4pm - ~8pm UTC @vivid sapphire
Ok cool
Euros get off School and work and there is fair amount of Americans at work
@hallow warren Hi
subnetting
Give me time to respond. I'm on ptt and on my phone and not always with it open.
I didn't even see who was talking.
@whole bear Yahoy.
yes
ok
how are you
today
yea
its bad
here also
good thing it started snowing
here
ye
im in north Macedonia
its a country in the Balkans
you sound brithish where are you from
so it summer for you
oh i wish it was summer here
what do you mean
we are all in a box
well it cant be worse than last year
what time is for you
ok
for me its 11:27am
Can you tell me what the path of full stack developer as a python based programming language...!
Yes
Web development
Django, Flask
Twisted
for performance
Front end - Html, CSS, JS and Backend Python as web Framwork Django, flask?
ok, can you give me some resources?
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
for learning.. HTML and CSS
i can send a vid
ok, Thanks for your advice
Yoo Broh
XD
Idk Broh i like it
BTW how can i verify my voice!
Aaaah i get thanx brooh
Anyways m working on a desktop app
With a DB
But i have
A question
Aaah Okey xD sorry
DB Imran Database
Anyways
Wait
When I'll finish the project
And I'll give it to people to try it
How the app
Will be able to access
To the database!
Aaah soo i need to make a web server and connect it with the database and the app!
Broh m not asking about the frameworks or Librarys m asking how the app will be able to access the same database from a lot of Hardwares
Mozilla have some great resources you could check out.
Welcome to the MDN learning area. This set of articles aims to provide complete beginners to web development with all that they need to start coding websites.
I would start there.
In this video I explained usage of Accelerometer within iPhone, iPad, or any mobile device. Accelerometer is useful sensor in your iPone, iPad or mobile device. It will detect force applied to device in x, y, z direction, so application can perform logic accordingly. Everything explained in this video in Hindi language.
np
Gyroscope adds more info to accelerometer
in fact
brb
bagels r so cheap here
i have an entire pack rn
hey guys i cant talk?
is that weird?
Check out #voice-verification
it is covered red
That'll tell you what's up
oh okay
ty
could i make a suggestion for the verification system to become easier? @rugged root
I'm always happy to hear suggestions!
ty ๐
ElasticSearch recently dropped its open-source licensing strategy, prompting AWS to fork it. Learn how "Open Source" actually works and how companies profit from it. Follow me on twitter https://twitter.com/fireship_dev
00:00 ElasticSearch vs AWS Drama
04:43 What is Open Source?
06:40 How to make money with OSS
AWS's Side https://aws.amazon.co...
what do you guys think of this situation?
both seem like the bad guy
but aws seems especially cruel
Our album "Invisible People" is now available EVERYWHERE! http://www.pomplamoose.com
This song on iTunes: https://itunes.apple.com/album/3-new-songs-woot!/id372962803
and on The Best of Pomplamoose : http://bit.ly/PomplamooseBest
"Another Day" is a VideoSong, a new Medium with two rules:
- What you see is what you hear (no lip-syncing for in...
In this video I explained how pedometer sensor works in iPhone. As you know iPone have Motion Coprocessor exist to detect various motion related data. Motion coprocessor collect data from Accelerometer, Gyroscope and Other sensor and
analyse it and decide pattern either user is walking, running or jumping etc. Apple native application like Heal...
Hallo @rugged root @eternal bough
๐ I just learned to do this!
!e
print(dict(zip(string.ascii_lowercase, range(1,27))))
!e
import string
print(dict(zip(string.ascii_lowercase, range(1,27))))
@eternal bough :white_check_mark: Your eval job has completed with return code 0.
{'a': 1, 'b': 2, 'c': 3, 'd': 4, 'e': 5, 'f': 6, 'g': 7, 'h': 8, 'i': 9, 'j': 10, 'k': 11, 'l': 12, 'm': 13, 'n': 14, 'o': 15, 'p': 16, 'q': 17, 'r': 18, 's': 19, 't': 20, 'u': 21, 'v': 22, 'w': 23, 'x': 24, 'y': 25, 'z': 26}
Spreadsheets often use this alphabetical encoding for its columns: "A", "B", "C", ..., "AA", "AB", "AC", ..., "ZZ", "AAA", "AAB", "AAC", ....
Given a string s representing an alphabetical column id, return its column number. For example, given "A", return 1. Given "AA", return 27.
"RM" = 481
Beautiful!
481 - 13 = 468 / 18 = 26
hello
wat is this
im trying to wrap my head around it
i think you made it too complex
def copy_over_dict(the_dict, ____original):
d = {}
for key, val in the_dict.items():
if isinstance(val, Callable):
val = copy_func(val)
val.__kwdefaults__["____ins"] = ____original
d[key] = val
return d
def wrapper(*args, ____func=func, _____original=original, **kwargs):
____original = copy_func(_____original)
_____original.____instances.append(____original)
#print(____original.__dict__.keys())
____original.__dict__ = copy_over_dict(_____original.____instances[0].__dict__, ____original)
____func(____original, *args, **kwargs)
solved it with this:
class Solution:
def solve(self, s):
mapping = ' ' + string.ascii_uppercase
column_number = 0
for index, value in enumerate(s[::-1]):
column_number += (26 ** index) * mapping.find(value)
return column_number
The spidertron is a versatile lategame vehicle capable of traversing rough terrain. It, along with the car and tank, is one of three non-rail vehicles in Factorio. It's equipped with four fast-firing rocket launchers capable of manual or automatic targeting. It can be driven manually or remotely controlled using the spidertron remote. Furthermor...
just stuff some fish in the gas tank
don't question it
i remember that...
the red eye thing really reminds me of the terminator
ooh ye that was a scary one
the second movie could get really creepy at times
the entry barrier to hard tech products is just so much high
its like hyperloop
yeah
something thats really needs lots of investment for shipping a prototype
only a few organisations can venture into these areas
long live to holdings
its like monopolies that we can just see coming ... but cant do anything about it
so like you cant really do anything by developing a better google earth frontend ... cauz you dont have any satellites
Planet provides global data daily, making changes visible, accessible, and actionable.
you dont need satellites for that
how does a crowdfunded satellite work?
ive never heard of that
ohh that makes more sense
HEY
is there some website/group that maintains the Portable Document Format standard
not private
i mean some org
like ANSI
ISO
may be never i guess
pardon
if possible
yeah
haha
hmm
What are the differences between the two and when should you use them?
Thank you very much for watching! If you liked the video, please consider subscribing to the channel :)
Topics:
00:00 Introduction
00:29 Simplicity
01:03 When Go simplicity can be limiting
02:10 Memory Management
02:50 Concurrency
03:31 Ecosystem
03:54 Compilation time
04...
watch this
4:33
i didn't understand what he is saying
so thought to ask u guys
thats interesting
๐ต If I could put Python in a bottle, the first thing that I think I'd do, would be to send my program to all my dear friends for them to run it the same as I do...
You can run .exe in Mac with Wine or something
Numba.
What's statically typed?
!e python a = 0 print(type(a)) a = "string" print(type(a))
@amber raptor :white_check_mark: Your eval job has completed with return code 0.
001 | <class 'int'>
002 | <class 'str'>
PS C:\Users\rabbi\Python Projects> [int]$a = 1
PS C:\Users\rabbi\Python Projects> $a = "hello"
Cannot convert value "hello" to type "System.Int32". Error: "Input string was not in a correct format."
At line:1 char:1
+ $a = "hello"```
in a statically typed language you need to say what the type of a variable is at compile time
not always
Indra, Rabbit and floydnfish are typing...
idk then
in many languages, typing can be inferred
var a = "string" #This will be a string by default```
I think it is statically typed language when the varible type is known at compile time instead of runtime
something like that
mypy
Julia features optional typing, multiple dispatch, and good performance, achieved using type inference and just-in-time (JIT) compilation, implemented using LLVM. It is multi-paradigm, combining features of imperative, functional, and object-oriented programming. Julia provides ease and expressiveness for high-level numerical computing, in the same way as languages such as R, MATLAB, and Python, but also supports general programming. To achieve this, Julia builds upon the lineage of mathematical programming languages, but also borrows much from popular dynamic languages, including Lisp, Perl, Python, Lua, and Ruby.
The math module has a dist function for measuring distances between two points in space. It gives the python equivalent code in its help entry. Stress test the runtime of that code vs dist and dist will beat the pants off it, because dist runs compiled c.
Or something vaguely along those lines.
Some python modules aren't native python code. Some are an interface to c.
Numpy is another that has a lot of that, too.
yeah
Which is why people like it, because it's efficient and zoomy.
laundmo why are u rapping?
Taken from 4chan, uploaded here because it's beautiful.
๐
laundmo knows where it is (the bug)
patreon: http://patreon.com/billwurtz
spotify: https://play.spotify.com/artist/78cT0dM5Ivm722EP2sgfDh
itunes: http://itunes.apple.com/us/artist/bill-wurtz/id1019208137
twitter: http://twitter.com/billwurtz
instagram: http://instagram.com/notbillwurtz
donate: http://paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_but...
watch this
I extract pure potassium metal from ordinary fruit.
Help me make videos by donating here: https://www.patreon.com/CodysLab
SubReddit: https://www.reddit.com/r/codyslab/
Twitter: https://twitter.com/CodysLab
!e py print("".join([x for x in list("hey it is me obama here to answer your questions")]))
@storm notch :white_check_mark: Your eval job has completed with return code 0.
hey it is me obama here to answer your questions
Running on http://127.0.0.1:5050
Event { token: Token(0), readable: true, writable: false, error: false, read_closed: false, write_closed: false, priority: false, aio: false, lio: false }
Took 104micros overall
Event { token: Token(1), readable: true, writable: false, error: false, read_closed: false, write_closed: false, priority: false, aio: false, lio: false }
Took 5micros overall
Event { token: Token(3), readable: true, writable: false, error: false, read_closed: false, write_closed: false, priority: false, aio: false, lio: false }
b"GET / HTTP/1.1\r\nHost: 127.0.0.1:5050\r\nUser-Agent: curl/7.73.0\r\nAccept: */*\r\n\r\n"
Took 232micros overall
Event { token: Token(1), readable: true, writable: false, error: false, read_closed: false, write_closed: false, priority: false, aio: false, lio: false }
Took 3micros overall```
8 people but still so silent?
yeah kinda quiet lately
yeah quite silent
many of Americans are busy
office hours right
That's not a very good blur lol
yes
this is really good blur hiding my identity
but what do you think abt the shirts
and disregard my hair i am ripping it out due to an error
is that the real Obama?
yes

whatโs my last name
Amabo
we prefer to keep things at least somewhat topical here. This chat is specifically for voice chat users, so we would appreciate if random images were not posted here.
If you would like to start a conversation about something off-topic, I would recommend one of the OT channels
im sorry
i canโt send pictures in general or off topic
im also not voice verified yet
ah yes, that is mostly to prevent spam, haha.
No worries, this is just not a great channel for random conversations (unless they are related to voice chat)
okay sorry about that, wonโt do it again, thanks for the warning
I do like the euler's one though lol
thank you i bought it im excited
GHOST PING!!! 
Wanna know what I said?
@olive hedge ๐ luv u
!warn 233481908342882304 using voice chat without being in voice channel
:incoming_envelope: :ok_hand: applied warning to @olive hedge.
Lol
love me some fondue boyy
pls forgive the woofer 
woofer is good soul
@hushed elm
Lol
Only 128? Week.
can i please talk in this channel i like the vc people more
no canโt
why not?
who's bigbow?
that is bigbow
will the real bigbow please stand up
You are certainly allowed to speak here, we just appreciate if you keep it on topic to what is happening in Voice chat, or what other users in voice are saying here.

ik bigbow ik how he got banned i wasnโt there tho
he told me it was pretty bad
@faint ermine i am getting close to understanding fourier transforms
ok i am actually not bigbow lol
laundmo can possibly deduce who i am via my statement regarding fourier transforms and attempting to learn it
donโt use python use scratch
Investigator/Prince?
wait laundmo ur a helper now?
aye
!otn a we-are-all-ai
Shush, it is supposed to be a secret
Not anymore :)

hi hemmy
Yo
from collections import deque
def factor(n):
res = []
for i in range(1, int(n ** .5) + 1):
if n % i == 0:
t = (i, n // i)
res.append(t)
res.append((t[1], t[0]))
return res
def solve(grid):
start = (1, 1)
vis = set()
Q = deque()
Q.append(start)
while Q:
v = Q.popleft()
if v in vis:
continue
vis.add(v)
if v == (X, Y):
return True
try:
x, y = v
nodes = factor(grid[x - 1][y - 1])
except IndexError:
continue
for n in nodes:
Q.append(n)
return False
X, Y = [int(input()) for _ in range(2)]
grid = []
for row in range(X):
grid.append([int(x) for x in input().split()])
print(grid)
print(solve(grid))
@near niche try this ?
Sus
from time import perf_counter
def factor(n):
res = []
for i in range(1, int(n ** .5) + 1):
if n % i == 0:
t = (i, n // i)
res.append(t)
res.append((t[1], t[0]))
return res
def solve(grid):
start = (1, 1)
Q = set()
Q.add(start)
while Q:
v = Q.pop()
if v == (X, Y):
return True
try:
x, y = v
nodes = factor(grid[x - 1][y - 1])
except IndexError:
continue
for n in nodes:
Q.add(n)
return False
X, Y = [int(input("> ")) for _ in range(2)]
grid = []
for row in range(X):
grid.append([int(x) for x in input("> ").split()])
print(grid)
start = perf_counter()
for _ in range(3):
print(solve(grid))
stop = perf_counter() - start
print((stop / 3) * 1000)
from time import perf_counter
from functools import lru_cache
@lru_cache()
def factor(n):
res = []
for i in range(1, int(n ** .5) + 1):
if n % i == 0:
t = (i, n // i)
res.append(t)
res.append((t[1], t[0]))
return res
def solve(grid):
start = (1, 1)
Q = set()
Q.add(start)
factors = []
for i in range(len(grid)):
for x in range(len(grid[i])):
try:
factors[i][x] = factor(grid[i][x])
except IndexError:
continue
while Q:
v = Q.pop()
if v == (X, Y):
return True
try:
x, y = v
nodes = factors[x - 1][y - 1]
except IndexError:
continue
for n in nodes:
Q.add(n)
return False```
!range-len
Iterating over range(len(...)) is a common approach to accessing each item in an ordered collection.
for i in range(len(my_list)):
do_something(my_list[i])
The pythonic syntax is much simpler, and is guaranteed to produce elements in the same order:
for item in my_list:
do_something(item)
Python has other solutions for cases when the index itself might be needed. To get the element at the same index from two or more lists, use zip. To get both the index and the element at that index, use enumerate.
def factorPairs(value):
factors = []
for i in range(1, int(value ** 0.5) + 1):
if value % i == 0:
ans = (i, value // i)
factors.append(ans)
factors.append(ans[::-1])
return factors
allFactors = []
for i in range(1000000):
allFactors.append(factorPairs(i))
with open("factors.txt", 'w') as factorsFile:
factorsFile.write(str(allFactors))
factors = {(x,y): factor(v) for y, e in enumerate(grid) for x, v in enumerate(e)}
print(one-hundred & three.seven) ->103.7
Create movie nights like never before with Spooderfy.
Hey guys
@pastel mesa any chance you could share it when you're done?
def find_sum(n):
actual_value = n
actual_sub = 0
result = []
while actual_value:
result.append([actual_value, actual_sub])
actual_sub += 1
actual_value -= 1
return result
hi!
I speak hindi as well
no i don't know hindi
as english
i am just from india
but i can recognize it
is weird
hmm?
yes
@random rivet
I do have
experience with flask
your voice isn't clear
@random rivet Your audio is entirely unintelligible.
Yes
am i audible?
@undone idol Yours isn't much better.
Oh hello
i am a beginner
what to do?
so nervous
@undone idol That is the question.
it is better if i use chat
@whole bear !subscribe announcements in #bot-commands
yea
ya i just like to gather information
opaimist how old are you?
oh man!!!!!!!!
i am 15
I(i) l(L)
so you guys are doing something subjected to something particular or just doing your own work and talking
i guessed so
what is your typing speed opaimist
you are on pc?
hm
mine is 50
opaimist can i increase or decrease master volume that is on the taskbar using python code
have you ever tried?
bye
i am making a voice assistant
so i will just ask him and he will do it
i have made it
i am just advancing it
coding more commands
thankyou
how can i speak unmute my self
ok
bye guy
s
same here
That'll do it.
same here
I sit around 370ms.
kk
Latest heartbeat 421ms.
i also only use pycharm
lucky bastard, my ping goes to like 5000 and stays for a few minutes before slowly starting to decrease until it reaches normal ping for me which is about 150-300... yh FML๐
and i happens really often btw
๐
opai you are here till now
why does the world have to be so cruel
makes sense
hmm
a small price to pay for salvation
well yes i do have a few questions
ah wi le francais
what are virtual enviorments good for
and do i always have to make one and enable it on the terminal
im on mac
@somber heath
after u help him pls help me ๐
like a safety meajurement?
ah got it
living life on the edge
funny thing is Im still trying to figure out how to setup vs
for python
been on it for like 2h now
i see
wait so is it an extention
or ediotr
ah ok
confusion 100
then where do you start?
im doing that rn
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
In this Python Programming Tutorial, we will be learning how to set up a Python development environment in VSCode on MacOS. VSCode is a very nice free editor for writing Python applications and many developers are now switching over to this editor. In this video, we will learn how to install VSCode, get the Python extension installed, how to cha...
iv been following this
yknow it ,$
?
lmao
so u on mac
thats cool
I am not able to speak in the voice, I still need messages^^
never met a linux pythoneer
bruh
the keyboard is a delight to use
and its fast
i think most devs are on mac
html css?
I do Blender.
I heard linux is pretty good if you host a server.
and its close to an oil factory
ill be continuing with the configuration shenanigans for a while
Currently scripting a Python Bot for Discord.
Discord.py is a bit ... strange
sry
meant discord.py
brb
bb
โDonโt document the problem, fix it.โ โ Atli Bjรถrgvin Oddsson
hi @somber heath
@cursive minnow I've reset your nickname for now but feel free to change it, in the future please set it to something more visible, as our rules say, 'No blank or "invisible" names'
what
yeah
haha
just read it on twitter
may be its about getting things done
hmm
yeah
true
hmm
Shelter...
I didn't hear that included.
Europe would be larger market.
I mean...you've got a tiny little island...vs a whole continent.
Rome did figure into my thoughts.
@vivid gull I'm taking a fin math course right now
The strength of a nation rises with the strength of its citizens.
Not some of them. All of them.
Enrich a people and the country is enriched along with them. The people are the country. The country is the people.
compare yourself to past self. i find that's a good way to look at it
for example in the past i had nothing to do with cheese, but i found the one and only cheese, and it's so good
10/10
MORE BLOOD FOR THE BLOOD TODD
all hail His Muskyness Elon Musk
In india some startup offer more money than big MNC
Yesterday i missed my codenation hiring contest
Upper Classes use inheritance
I see what you did there.
It was super not clever
Ha
@bleak current indiehackers.com might help you, it's a community of people who started their own independent businesses
Anyone wants to try the hiring contest questions?
Honestly, how could I get into a start-up as a university student. I'm tryna get some ideas but don't even know where to start
yes why not?
you are in 6th class right?
yes I can give a try
@bleak current You accent seems that you are indian? are you?
can you give me
@hushed elm thank you , will check it out !
To be honest I couldn't even figured out at first
sure!
@undone idol Yes , I'm indian
Oh cool
lol I am intelligent lol
That's the main problem
haha
@honest pier did you guys managed to solve that problem?
ยฏ_(ใ)_/ยฏ
(โฏยฐโกยฐ๏ผโฏ๏ธต โปโโป
where's the problem?
The one on voice chat -1
?
it wasn't my problem
oh does the guy solved that?
how would i know
ok
!e
import logging
logging.warning("OH DEAR GOD IT'S ALL ON FIRE!!!")
logging.info("Won't show by default")
@rugged root :white_check_mark: Your eval job has completed with return code 0.
WARNING:root:OH DEAR GOD IT'S ALL ON FIRE!!!
rofl
but i think python is bit slow for that problem
probably
I always confuse logging levels in Python
No it could be solved with python as well
but in general python is too slow
what does it mean ? Chakha seki? lol
yaa that is more specific
I am not aware of that
!e
import logging
logging.basicConfig(level=logging.DEBUG)
logging.debug("I will now show")
logging.info("And my bow")
logging.warning("AND MY AXE")
๐
@rugged root :white_check_mark: Your eval job has completed with return code 0.
001 | DEBUG:root:I will now show
002 | INFO:root:And my bow
003 | WARNING:root:AND MY AXE
@honest pier I think it could be easily solved using bfs
i used bfs and it was apparently too slow
bfs is slow? are you sure?
To chuck a sickie is to take a sick day, most usually under fraudulent pretences.
he said it timed out
ohk lol
@honest pier so how you generating the pairs to be traversed on
my sol probably colud be faster if i cached the factors
I am freezing at 10 degree celsius
yaa that the problem, if you are doing the way that the guy did it then it will give tle
I can live fine in > 35 C weather but not less than 18 C
yaa that's the case
lol why ?
'Roo bars.
Living in a tropical country
i can't survive > 30
i shhut down
proud rock
your profile picture
are you from china? @swift valley
you're an explosion
ohk
Provided to YouTube by The Orchard Enterprises
Kiss Me, Son of God ยท They Might Be Giants
Lincoln
โ 1988 Idlewild Recordings
Released on: 2018-10-26
Producer: Bill Krauss
Auto-generated by YouTube.
Finally finished the auth for my site
Haven't deployed quite yet
15/20 ooooo/
I've yet to figure out how to do the login page, which is a struggle
many are chilling including me
its rare, but sometimes the vc is full
yes
I'm thinking of rate-limiting my endpoints for precaution
same lol
@fleet lake If you're wondering why you can't talk, check out #voice-verification. That'll tell you what you need to know
phat32
Equality for OrderedDict is also order-sensitive
Equality tests between OrderedDict objects are order-sensitive and are implemented as list(od1.items())==list(od2.items()). Equality tests between OrderedDict objects and other Mapping objects are order-insensitive like regular dictionaries. This allows OrderedDict objects to be substituted anywhere a regular dictionary is used.
so yeah
So it's more like List[Tuple[K, V]]
oh
I'm not a DS&A person but a really like finger trees
hi hi @rugged root
It is true!
Awesome, not moved in yet, but Soon!
Right now we're painting and replacing the doors to something less 80s
they're just flat white slabs
blegh
I'd be down for that
fiance less so
Doors are so expensive ;_;
Even hollow core ones are like $40 per door
god forbid you want an actual wood door, that's like $200 a door
I wonder if I can convince the power company when they pull down the trees leaning over our property to just... give me the old trees...
rofl
Everytime I see bag and collections I get flashbacks to AoC
fucking shiny gold bag -_-
It did force me to learn regex!
They'll be under contract to sell the wood to a lumber yard or firewood company or woodchipping business.
Probably.
yeah probably...
The only way you'd get your hands on them would be by prior arrangement with your local municipal government if the trees aren't on your land.
well they're on land owned by the power company (right of way for powerlines)
If they cut it and it falls on your land...maybe.
hmmmm...
the twitter API looks really powerful
It'd be a little bit of legal finagling. They might be all "Oh no no no, we get the wood" but there might be some section of city code you can point to. At the end of the day though, if the council is involved, they can be a law unto themselves. "What re you going to do? Quote laws at us? Haha. Fuck you. We're taking the wood."
rofl
lol
i m m e r s i o n
You could maybe ask permission to have someone cut it down, making it easier to claim it, yourself.
maybe, but the power company will do it for free and the one tree is practically a death trap
They don't get the profit from the wood, but then they're not paying a crew to do the job.
and they get free work done for them
Living in a bushy area as we do, I could...literally...throw a stone and have it land on a professional treelopper's property.
[% %]
can anyone tell me a little bit about Database Migration with flask-migrate?
all I know, its something like a version control system but for databases.
we start it with flask db init, which create a dir migrations in the same folder, but what does it do actually?
then comes flask db migrate (after creating a database model in the flask application, I think)
ping me if someone knows something
Hey @desert cliff!
It looks like you tried to attach file type(s) that we do not allow (.pdf). We currently allow the following file types: .3gp, .3g2, .avi, .bmp, .gif, .h264, .jpg, .jpeg, .mkv, .mov, .mp4, .mpeg, .mpg, .png, .tiff, .wmv, .psd, .ai, .aep, .xcf, .mp3, .wav, .ogg, .webm, .webp, .flac, .afdesign, .m4a, .csv.
Feel free to ask in #community-meta if you think this is a mistake.
this course literally covers the missing parts like git
This month a researcher was awarded a bug bounty award of an undisclosed amount after he broke into the official GitHub repository of Microsoft Visual Studio Code.
A vulnerability in VS Code's issue management function andย a lack of authentication checks enabled the researcher toย obtain push access, and write to the repository.
hey coders
hey noob coder
hey at least im employed
no one cares
change my mind it hurts me more than anything else
idk
go and review your shit
vishal nobody cares about your baseless claims of me being a noob
i donโt review stuff i make stuff im not a noob
and then go and make shit
why so toxic bruh calm down
python is just well supported, R is amazing julia is great
Python is ||s||hit
i feel ignored
then you in the wrong server
like a lot of keras is in C
numpy too
and many other libs
yes
Teach me anything me broken programmer
Me iz big nub
men dont need libraries
bold claim

woah
hey are you a ML engineer? can i DM you please?
yes I said i am an ML engineer
Wait let me tell u what what i learned all what i learned @granite olive
Me iz kid 15 yrs old nub
ok
yeah thatโs true but optimization does matter so youโre not wasting your bosses money
16
https://ironpython.net/ WHYYYYY
Why is it updating 2.7 this late in the game?
Jesus
hem
Sup
howโre you sire
Alright thus far
iโm glad to hear that
