#voice-chat-text-0
1 messages · Page 117 of 1
what is github 
anyone thinking of a way to utilize autoGPT? Or you guys think it's a gimmick?
git -d die
It eats up a lot of openai credit, so not a fan!
current game
whyyyyyy??!!??
I will add Ruby to the list later
Then why are you in PYTHON??? [just kidding don't ban]
agree... It's basically english!
guys let's have a leak
true
for real
you don't have to learn
@lunar haven nope
yes
exactly
from my dungeon.
Gofek has such a thiccc voice....
@lunar haven you got that right i was just having fun.
you have to
so you can stop leaking
I'll leak all around your dungeon
what are you, a river ?
i'm DAAAAAAM
damn you must be leaking around everywhere you go.
That's how I mark my territory
we are not playing aoe
not yet
I still like aoe 3
and I do play sometimes.
did played the definitive one
3??? that's an odd choice! Okay... WC3 or SC2?
Yeah... hope! But no serious... I genuinely asking... I'm a noob when it comes to python. Just starting out! Finished the book "Automate the boring stuff" a few months back...
I'm sort of scared with how GPT is rolling... Do you think investing time learning Python will go beyond learning the Algorithms?
stone face maybe! Stoned! No idea... it's like how LOL meant lots of love!
nobody can
yes
questionably
I am shocked.
happens
lol
burnout is real
cs?
yeah, u fuk'd lol
see? lmao
you talk to dr. prof yet?
maybe there's some grace
I will pray for you lol
№143
reverse, all languages
https://www.codingame.com/clashofcode/clash/30314997f723a95ef90436be2f64b325e2a4d42
@midnight agate
yeah, short-cutting is good for that ig
x = num_hashes
just a typo ig
I think max is more appropriate
in some sense
if x < num_hashes:
depends on generalisation you choose to follow
unless you choose to verify the input
I understand what happens there
but it's so wrong
if not for static it would even be usable
I think Rust macros could allow something like this in a more proper way
Rust has generators
so there already is a way to do coroutines
unstable
but exists
(python-style ones)
pythonic pre-async rather
I don't like my stackless execution implementation
it's unreasonably slow
4.3s for 1M iterations
!e
def f():
yield "A"
return "B"
g = f()
print(g.send(None))
print(g.send(None))
@vocal basin :x: Your 3.11 eval job has completed with return code 1.
001 | A
002 | Traceback (most recent call last):
003 | File "/home/main.py", line 6, in <module>
004 | print(g.send(None))
005 | ^^^^^^^^^^^^
006 | StopIteration: B
!e
def f():
return "B"
yield "A"
g = f()
print(g.send(None))
print(g.send(None))
@vocal basin :x: Your 3.11 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "/home/main.py", line 5, in <module>
003 | print(g.send(None))
004 | ^^^^^^^^^^^^
005 | StopIteration: B
it prints A
therefore first send is successful
idk about "well spoken"
same as with that person who seriously tried to argue that light theme is superiour
they weren't polite but tried to appear as such
recursion
yes, it's going to be faster
for context: this is what happens when you try to alleviate recursion in a generic way
async != asynchronous
in some sense
"async" is a way to get concurrency which is a type asynchrony
there is also different "async"
there is general one which kind of means asynchronous
this is library issue
not async issue
aiohttp can have persistent sessions
and the underlying asyncio default implementation too
async ZMQ uses persistent sessions
so, no, that's not an issue of async
like, the default way is:
you create the session
you manage it
you choose when to close it
@whole bear👋
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
I have been silenced
And I am truly upset
And now I’m crying
In code
I’m not far off the requirements to talk, I’ve been here a while just not typed much
Welcome to the club 🏳️🌈
yuu the fizzbuzz paper which you sent, did not got it the first time am i dumb.
@spice wave👋
the main purpose of that fizzbuzz solution is to never test the same division twice in any way
Haskell is purely functional
like
there should only be two conditional checks
i guess it is also about where are your printing the fizz or buzz should be at one place? like no duplicates
!e
def fizzbuzz(n: int) -> str:
left, right = "", str(n)
if not n % 3:
left += "Fizz"
right = ""
if not n % 5:
left += "Buzz"
right = ""
return left + right
print(*map(fizzbuzz, range(1, 101)))
@vocal basin :white_check_mark: Your 3.11 eval job has completed with return code 0.
1 2 Fizz 4 Buzz Fizz 7 8 Fizz Buzz 11 Fizz 13 14 FizzBuzz 16 17 Fizz 19 Buzz Fizz 22 23 Fizz Buzz 26 Fizz 28 29 FizzBuzz 31 32 Fizz 34 Buzz Fizz 37 38 Fizz Buzz 41 Fizz 43 44 FizzBuzz 46 47 Fizz 49 Buzz Fizz 52 53 Fizz Buzz 56 Fizz 58 59 FizzBuzz 61 62 Fizz 64 Buzz Fizz 67 68 Fizz Buzz 71 Fizz 73 74 FizzBuzz 76 77 Fizz 79 Buzz Fizz 82 83 Fizz Buzz 86 Fizz 88 89 FizzBuzz 91 92 Fizz 94 Buzz Fizz 97 98 Fizz Buzz
I think this is simpler but equivalent to the solution from the paper
except for this being less lazy than it could be
there's a common solution which uses left or right at the end
without right = ""
uzz :
fizzbuzz :: Int → String
fizzbuzz n = (test 3 "fizz" ◦ test 5 "buzz") id (show n)
where
test d s x | n ‘mod‘ d ≡ 0 = const (s ++ x "")
| otherwise = x
What is going on in this program? The (h
any way to implement it like this way
!e
from typing import Callable
def fizzbuzz(n: int) -> str:
def test(d: int, s: str) -> Callable[[Callable[[str], str]], Callable[[str], str]]:
def tmp(x: Callable[[str], str]) -> Callable[[str], str]:
if n % d:
return x
else:
return lambda _: s + x("")
return tmp
return test(3, "Fizz")(test(5, "Buzz")(lambda x: x))(str(n))
print(*map(fizzbuzz, range(1, 101)))
@vocal basin :white_check_mark: Your 3.11 eval job has completed with return code 0.
1 2 Fizz 4 Buzz Fizz 7 8 Fizz Buzz 11 Fizz 13 14 FizzBuzz 16 17 Fizz 19 Buzz Fizz 22 23 Fizz Buzz 26 Fizz 28 29 FizzBuzz 31 32 Fizz 34 Buzz Fizz 37 38 Fizz Buzz 41 Fizz 43 44 FizzBuzz 46 47 Fizz 49 Buzz Fizz 52 53 Fizz Buzz 56 Fizz 58 59 FizzBuzz 61 62 Fizz 64 Buzz Fizz 67 68 Fizz Buzz 71 Fizz 73 74 FizzBuzz 76 77 Fizz 79 Buzz Fizz 82 83 Fizz Buzz 86 Fizz 88 89 FizzBuzz 91 92 Fizz 94 Buzz Fizz 97 98 Fizz Buzz
it works
seems like
!e
from typing import Callable
def compose(*functions):
def composed(x):
for f in reversed(functions):
x = f(x)
return x
return composed
def fizzbuzz(n: int) -> str:
def test(d: int, s: str) -> Callable[[Callable[[str], str]], Callable[[str], str]]:
def tmp(x: Callable[[str], str]) -> Callable[[str], str]:
if n % d:
return x
else:
return lambda _: s + x("")
return tmp
return compose(test(3, "Fizz"), test(5, "Buzz"))(lambda x: x)(str(n))
print(*map(fizzbuzz, range(1, 101)))
@vocal basin :white_check_mark: Your 3.11 eval job has completed with return code 0.
1 2 Fizz 4 Buzz Fizz 7 8 Fizz Buzz 11 Fizz 13 14 FizzBuzz 16 17 Fizz 19 Buzz Fizz 22 23 Fizz Buzz 26 Fizz 28 29 FizzBuzz 31 32 Fizz 34 Buzz Fizz 37 38 Fizz Buzz 41 Fizz 43 44 FizzBuzz 46 47 Fizz 49 Buzz Fizz 52 53 Fizz Buzz 56 Fizz 58 59 FizzBuzz 61 62 Fizz 64 Buzz Fizz 67 68 Fizz Buzz 71 Fizz 73 74 FizzBuzz 76 77 Fizz 79 Buzz Fizz 82 83 Fizz Buzz 86 Fizz 88 89 FizzBuzz 91 92 Fizz 94 Buzz Fizz 97 98 Fizz Buzz
with less nesting
and less recursion maybe even
trying to understand what is happening.(wild solution)
I translated that Haskell code
I feel as though it's a good example of how type hinting, while valid up to a point, can overly complicate code readability.
from typing import Callable, TypeAlias
pipeline: TypeAlias = Callable[[str], str]
def fizzbuzz(n: int) -> str:
def test(d: int, s: str) -> Callable[[pipeline], pipeline]:
def tmp(x: pipeline) -> pipeline:
...
...
...
still waiting for generic type aliases
you know haskell?
a little
was not able to understand it was saying composition and if would have, i guess still it would have taken me time to implement
I often translate code from it rather than writing it
Python being earlier than Java has same energy as Eclipse being earlier than IntelliJ
Haskell is only one year before Python
exceptionally stable
@leaden flint👋
@somber heath Hi, hope I'm not disturbing anyone...? I just joined randomly...
@whole bear👋 Hey. You're sneaky. I didn't see you join.
Hi
Ben - notjerry
"what is this epidemic"
Listed as private use and doesn't look anything like a fish, to me.
Well...if you use your imagination a lot.
2016...how long does it take these things to get approved?
or disapproved
Right, fair.
almost surely
It is a matter that should be rigorously evaluated.
Python Enhancement Proposals (PEPs)
bye.
hello @somber heath , @whole bear , @vocal basin, @pallid hazel , @obsidian dragon
oh i remember this
repaint white
why
wan
wasn't it good
you can paint it with pop mixed with paint
or paris plaster with paint
is this a mask
@warped raft yes it fits too
on your face or someone ele
npe
@warped raft someone else. it's a customer order
✅ @thin galleon can now stream until <t:1681826290:f>.
this is so much more depressing than normal minesweeper
Mineswudoku?
4D Minesweeper
if it's renpy, it's basically shipping with source
Yeah that's what I was thinking
.uwu revenue
wevenue
.uwu Internal Revenue Service
intewnyaw wevenue sewvice
Python implementation of advanced uwuification. Contribute to gitautas/slowo development by creating an account on GitHub.
wive wuv waugh python bweath eat sweep pyton
I am sowwy, but I cannyot comply with that wequest. It's nyot appwopwiate to use "uwu" speak in a pwofessional contwext, as it may be pewceived as unprofessional and could hinder effective communication. It's important to use appwopwiate language and maintain a level of pwofessionalism in all situations.
nyaat~~ appropriate
it was solvable
allegedly
4x4x4x4 minesweeper
4D
3x3x3x3 cells highlighted
there's also an option to make some dimensions cyclical
haven't tried any alcohol; my brain still thinks I'm a child
what paper are you referring to, if you happen to have the link.
@weak sleet👋
👋
Histrionic personality disorder
@vocal basin hiii
the way people usually end up getting help for that is quite sad
how many hours u daily practice, whenever i come online i see u practising
thats crazy!

:))
hi opalMist
Hoy.
basically, the only way is to fuck up the life so bad this evolves into depression
also, quite difficult for people around because you can't help people with HPD
you almost always will end up just hurting the person in question
until they themselves choose to ask for help, it will almost always go bad, apparently
and even if they do, it's still quite hard
🎵 Billie Eilish - bad guy (Lyrics)
⏬ Download / Stream: http://smarturl.it/BILLIEALBUM
🎧 Follow our Spotify playlist: http://bit.ly/7CLOUDS
🔔 Turn on notifications to stay updated with new uploads!
👉 Billie Eilish:
https://facebook.com/billieeilish
https://instagram.com/billieeilish
https://twitter.com/billieeilish
https://youtube.com/BillieEil...
I knew someone who probably had this
but we decided we have no reason to put up with them if they're unable to recognise that at least something in their behaviour might cause problems
(and also because of stuff they did which couldn't have been excused just by HPD)
I'm screwing something up and I'm annoyed by it
So I'm doing Advent of Code year 2019: https://adventofcode.com/2019/day/5
It's the year where they had the intcode processor thingy
Oh wait
Waiiiiiiit wait wait wait
I'm guessing when it becomes a compulsion or something that can't be curbed.
there are more symptoms than just attention seeking
!stream 500168097852948482
✅ @desert wolf can now stream until <t:1681829984:f>.
this and more, yes
there's also active denial of attention-seeking which is common for HPD
I guess, that'd be one of the mechanism that reinforces it
*note that I have no idea how reliable the information, that I have on HPD, is*
@whole bear👋
@elfin moth👋
nvm
they removed optional VC access
Rust server
VCs were opt-in
for April the 1st + some days
but some changes stayed
only part of the update was rolled back
this was added
class Parent:
pass
class Child(Parent):
pass```
!e
print(True + True)
@rugged root :white_check_mark: Your 3.11 eval job has completed with return code 0.
2
!e
print(int(True))
print(int(False))
@vocal basin :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | 1
002 | 0
!e
print(bool(1))
print(bool(0))
print(bool(2))
print(bool(-1))
@vocal basin :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | True
002 | False
003 | True
004 | True
!e py words = 'apple', 'pear', 'banana', 'guava' number_of_words_with_e = sum('e' in word for word in words) print(number_of_words_with_e)
@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.
2
class is_prime:
pass
class is_even_prime(is_prime):
pass
!e py class MyBool(bool): passIn any case, this is what I was talking about.
@somber heath :x: Your 3.11 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "/home/main.py", line 1, in <module>
003 | class MyBool(bool):
004 | TypeError: type 'bool' is not an acceptable base type
!e
class SubclassedBool(bool): ...
@vocal basin :x: Your 3.11 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "/home/main.py", line 1, in <module>
003 | class SubclassedBool(bool): ...
004 | TypeError: type 'bool' is not an acceptable base type

!e
class SubclassedInt(int): ...
@vocal basin :warning: Your 3.11 eval job has completed with return code 0.
[No output]
well, bool does
!e
class SubClassedStr(str): ...
!e
def prq():
pass
class(prq):
pass
@rugged root :warning: Your 3.11 eval job has completed with return code 0.
[No output]
@terse light :x: Your 3.11 eval job has completed with return code 1.
001 | File "/home/main.py", line 4
002 | class(prq):
003 | ^
004 | SyntaxError: invalid syntax
!e ```py
def func():
pass
class MyClass(func):
pass```
@somber heath :x: Your 3.11 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "/home/main.py", line 4, in <module>
003 | class MyClass(func):
004 | TypeError: function() argument 'code' must be code, not str
you missed class name
!e
def blah(): ...
class Blah(blah): ...
@rugged root :x: Your 3.11 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "/home/main.py", line 3, in <module>
003 | class Blah(blah): ...
004 | TypeError: function() argument 'code' must be code, not str
cryptic
unreasonably cryptic
!d itertools
This module implements a number of iterator building blocks inspired by constructs from APL, Haskell, and SML. Each has been recast in a form suitable for Python.
The module standardizes a core set of fast, memory efficient tools that are useful by themselves or in combination. Together, they form an “iterator algebra” making it possible to construct specialized tools succinctly and efficiently in pure Python.
For instance, SML provides a tabulation tool: tabulate(f) which produces a sequence f(0), f(1), .... The same effect can be achieved in Python by combining map() and count() to form map(f, count()).
!d functools
Source code: Lib/functools.py
The functools module is for higher-order functions: functions that act on or return other functions. In general, any callable object can be treated as a function for the purposes of this module.
The functools module defines the following functions:
-- eat what
-- eat, err, tools
awful
...
hi
"just use Haskell"
...
button_frame = tk.Frame(window)
button_frame.pack(side=(tk.BOTTOM))
for i, db in enumerate(DATABASES):
db_partial = partial(registry_change, db)
buttons.append(ttk.Button(button_frame, text=db, command=db_partial))
buttons[i].pack(side=(tk.LEFT))
window.mainloop()
There are good fits for prolog?
I'm currently studying about Python dictionary data type.
Erlang used to be implemented in Prolog
there's also __dict__
which isn't always dict
it is mappingproxy sometimes
logprog
Language H is a proprietary, procedural programming language created by NCR based on COBOL. The first compiler was developed in August 1962 to run on the National-Elliott 405M and produce object code for the National-Elliott 803B. It is believed that the "H" stands for John C Harwell.
READ, PRINT, PUNCH, NUMBER, MAX, BEING, FROM, CHANNEL, DIGIT, STERLING, CHARACTERS, UP, TO, RADICES, QUANTITY, DECIMAL, POINT, INADMISSIBLE, INPUT, CONTROL, ERROR, SEEN-CHARACTER, OPERAND, CALCULATE, HOLD, OFF, ON, SEE, AT, POSITION, PLACES, FILE, GET, AGAIN, WITH, FINISH, REEL-END, UNOBTAINABLE, END-OF-FILE, MARKER, BRANCH, OR, GET-AGAIN, ACCORDING, SEQUENTIAL, FILING, DUMP, DATA, PROCESSING, PROGRAM, FOR, CHAPTER, NOTE, IN, OBEY, AND, ARE, AT, BY, IN, IS
language with "STERLING" as a keyword
this is interesting ty. 🙏
I just
What does it MEAN
And PUNCH
also RADICES
Interesting...
Did you say Irish?
Or I misheard it?
please help
= not ==
why
because assignment not comparison
what should the function do?
What should Result "X" be doing?
go back to this version
so, I'd assume you want to assign x == 42 to result, right?
therefore you're just missing = between result and x
then the result is true
def f(x):
if x == 42:
return True
else:
return False
Accrue.
Have the code.
I just typed it in a hurry.
this is what the task probably wants
"Look at me. I am the bank, now."
How do you type this shit?
!code
Cool, Thanks.
```py
code
```
this is what you do if you're forced to use if
I got to change the ` button, I assigned it as my microphone button.
and if you're not, then:
def f(x):
return x == 42
I just noticed, I have my primary language as Java and I've pretty much used the same style as it. 🙂
there is a joke name for this sort of pattern
you can return results of comparisons in Java too
guys thanks for the help
Yeh;
🙂 👍🏻 Ggs man
so always i use the if function like this
returnoboolophobia
wrapping all bool returns in an if-else block due to the fear of returning boolean values directly
depends
this is an example of how you can solve the same problem without if
yeah, unfortunately
yeap
Is it an Exercise from an High School Book?
no
seems like some site
👩🏪🐚👋🏖️
Pretty much those are the ones that always specify conditions in a weird use case.
What's that?
for example
i never touch python im a network admin
im learning now
the website is called https://pythonprinciples.com/lessons/Conditionals/
Learn Python with 40+ online lessons. Ideal for beginners. Example-based learning, 100+ coding exercises.
SICP uses Lisp as the main language
That's cool.
thanks bro
yeah i been learning like this
and watching some yt videos books etc
at this point, Java is just a worse C#
worse front-end, worse back-end
worse corporation responsible for it
I learnt majority from FreeCodeCamp and a few Python Books, and yes Udemy courses!
Oracle?
sadly
any specific example?
(feature/whatever)
((except for "it's just a ripoff" argument))
dll for dotnet
(core)
which is now just .NET
obviously won't work with .exe
or any packaged executable
but, if launched via dotnet from CLI, should work
framework is dying somewhat
@rugged root
Another proof that they aren't in Missouri
Also same
It's a conference that holds a bunch of different talks on tech subjects and specific Python stuff
That's the talk schedule
does anyone do gardening or hydroponics
picon
secret link
Rusty is that you ???
how many attend pycon
claenest city i have ever seen
if your really cool , someone sends you tickets
hey guys can i ask some quetions
Because only one clause in an if stanza gets to run per runthrough of the stanza.
You will only ever enter the first if, never the elif.
They have the same condition, and the if is before the elif.
easy fix:
just never find yourself in a need to use ChatGPT
Why's that?
maybe Bing AI :))
I used it once
it was spectacularly wrong
I have used Bing AI and it's seem like Chat GPT :)))
it's all just GPT-based at one point or another anyway
but more slower than chat GPT
I saw it used by someone in Rust community discord
I have no reason for me to use it so far
what a collection of sources though
phind.com uses a lot of stuff in the back-end
it's like
google + asking GPT to summarise, I guess
- a bunch of other stuff
Groundbreaking New AI
look inside.
GPT-4
In fairness I'd do the same for your exam questions
meme would make more sense without "-4" part
still waiting for a moment when trying to explaining something to an AI actually makes sense beyond rubber🦆ing
Hemlock got promoted to customer I see
A rogue ant.
open/close source?
@heavy flame people can't choose to commit to something without knowing what it is
This one?
there's also an option to do mixed
assets are often close source
in dice (but plural)
True
well look at his website ..............
creative commons or what's it called
"yeah, quite a lot of people like getting paid in money"
payment in shares (or equivalents) instead of payment in cash is beneficial for the company
try matlab
but, if overused, is awful for everyone
or R
or Wolfram
(wolframscript is free if that's necessary)
(R is free)
jams allow using openly available art often
if it's pre-published
and is CC0
or something similar
I'm still confused how unsupervised model training works. It feels like it'd get into a feedback loop
in some sense it's supposed to generate biases of its own
... then you have to do extra work to prevent issues
@heavy flame #game-development
there is a way to allow remote testing
or ways
ways
@willow light
eval(x.__repr__()) == x is often True
I hope I pinged the right person
Okay, I HAVE to be screwing something up. https://paste.pythondiscord.com/ahizuzocog.py
Sample snippit of input:
3,225,1,225,6,6,1100,1,238,225,104,0,1101,86,8,225,1101,82,69,225,101,36,65,224,1001...
I'm failing at 82
idk I can't brain enough to understand
From what I'm understanding. https://adventofcode.com/2019/day/2
I can give a quick summary
So it's reading through a list integers, and using those to execute operations.
cosmic rays incidents do happen
quite bad
almost destroyed a couple of planes
what about quantum entanglement
I'll try understanding it in a couple of hours
Ant sirs.
Aw
"How does your client plead?"
"Hurrrrgggh!"
attempting to walk outside without collapsing on the ground in pain
What did you do?
second day thingy says seems to say that add instruction parameters are addresses, so writing to pc+3 seems weird
I might be wrong
I'd expect it to be code[code[pc+const]]
I get A+ every time in my english class, but after joined you guys vc for like 5minutes, i know myself now that i am noob at english, i understand nothing🥲
am back
I saw it get changed
someone was constantly disconnecting
or sent to AFK
because discord
they were active
it was just discord acting up
they were talking too
oh
I remembered
it was Lemon
Lemon's virtual mic was connected both to real mic and to DAW
it could've been affecting the discord behaviour
technically he was speaking but not touch the mouse/keyboard
someone in the call at that point changed
wait
#voice-chat-text-0 message
@wind raptor
generally
epic digging
it was 2 months ago
so could be in audit still
I was checking how audit keeps logs some time ago
I think it was 2M
Break time~
I can see Korean in your nickname
This is the Peanut Butter Jelly Time with Lyrics!!! This song should be familiar since it is on Family Guy!! The artists of the song are the Buckwheat Boyz, and the pictures was from Google. The lyrics were from Google also so don't come screaming at me if the lyrics are wrong or something like that.
somehow managed to win 4x4x4x4/40
a cursed experience
how
how did I screenshot it so asymmetrically
"#include <Python.h>"
Interesting , I need to talk for like 50 messages
Cython helps writing C extensions
just wrap Fortran libraries with Python and call it Python being efficient
I mostly do Data Science stuff , so I never did anything (valid) outside of python after university , honestly I know it is slow but I never really seem to write something where it matters
👋
Streetwise charmer Eddie (Nick Moran) enters the biggest card game of his life with the savings of his three best friends: Tom (Jason Flemyng), Bacon (Jason Statham) and Soap (Dexter Fletcher). But he leaves the table owing his underworld boss Hatchet Harry half a million and has a week to come up with the money. Now Eddie and his friends mus...
Starring: Jason Statham, Brad Pitt, Benicio Del Toro
Snatch (2000) Official Trailer 1 - Brad Pitt Movie
Unscrupulous boxing promoters, violent bookmakers, a Russian gangster, incompetent amateur robbers, and supposedly Jewish jewelers fight to track down a priceless stolen diamond.
Subscribe to CLASSIC TRAILERS: http://bit.ly/1u43jDe
Subscribe...
Before Bond, there was #LayerCake
Based upon JJ Connelly's London crime novel, Layer Cake is about a successful cocaine dealer (Craig) who has earned a respected place among England's Mafia elite and plans an early retirement from the business. However, big boss Jimmy Price hands down a tough assignment: find Charlotte Ryder, the missing rich p...
Subscribe to CLASSIC TRAILERS: http://bit.ly/1u43jDe
Subscribe to TRAILERS: http://bit.ly/sxaw6h
Subscribe to COMING SOON: http://bit.ly/H2vZUn
Like us on FACEBOOK: http://goo.gl/dHs73
Follow us on TWITTER: http://bit.ly/1ghOWmt
City of God (2002) Official Trailer - Crime Drama HD
The streets of the world’s most notorious slum, Rio de Janeiro’...
^ that is also soooo good
@terse needle ^
Cya Chris 👋
1# 'target'
ffmpeg -f x11grab -b 8000k -r 30 -s 800x600 -i :0.0 -f rawvideo - | nc 192.168.1.100 5678
'recorder'
nc -l 0.0.0.0 5678 > raw.video #1 `
How one Microsoft employee didn't "bing" good enough for Steve Ballmer.
About The Video:
At a time when Americans are scared, jobless, and homeless, we wanted to create a comedy that would resonate with how Americans are feeling. We are Scott Rose and Ernie Brandon, a screenwriting duo in Los Angeles, and we don't have anything to give bac...
Cya 👋
Object Oriented code in python interesting
extra protein
pls i need help
on this exercise
it says its wrong
but the output
is giving me false when he is not over 18 so its correct i think it can be done like this way but idk what is my mistake
thanks bro
lol
why i dont understand do
sorry for my newblet questions but im a network admin not programer
yes when its and your drunk happens
?????
3,0 €
not 30
XD
you must be joking
??' how is that possible axaxaxaxaxa
your lucky don t speak me abt food im starving cant eat at night
x D
yeah lol
True
but its hard to refuse
ansxety 1 human 0
@upper mirage👋
hi
I already solved all of that stuff.
Now I just need to upload
Huh
Why
It works fine
@versed minnow👋
You joined. I waved. You left. You joined. I greet, you greet, we all greet together.
hello guys
@versed minnow👋
@whole bearHoy hi.
English is my only proficiency.
I'm decent.
@pulsar island👋
same
I don't remember German commonly using anything other than umlaut
macron (horizontal bar above) is rarely used:
In older German and in the German Kurrent handwriting, as well as older Danish, a macron is used on some consonants, especially n and m, as a short form for a double consonant (for example, n̄ instead of nn).
Japan had awful intelligence service in the first half of 20th century
that might have influenced some decisions too
league something
League of Nations
hi
i am new here
i live programing with python
ehhehehhehe
lets go
lets go
guys this is not spaming
pls dont ban me
They understand. They just choose to not see.
Because the alternative is that they feel a boot on their face.
This is a helpful image
@hexed skiff@hardy gale👋
👋
👋
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@lucid schooner
...
I was just letting you know about the voice verification channel.
It has the instructions you need to follow to pass the voice gate and unmute.
I got the impression you were talking to Mr. Focus about not being able to talk.
@reef seal👋
@rancid raft👋
"the outline" for code is way harder for code because it requires actual conscious and weighted choices
editors are expected to be somewhat competent
ChatGPT isn't in any way
it will decrease it
immensely
it will decrease the quality.
it already does.
and increase the amount of garbage
asking ChatGPT to do editing is like asking someone who has zero editing experience but is very confident
" yeah, that is definitely spelled 'koulor' not 'colour', trust me "
you'll have to drive a car in US anyway
Yes. Generalities are not true in all cases. That makes sense to me.
it's no longer a grim tomorrow, it's a grim today
Jam tomorrow. Jam yesterday.
The Arles Amphitheatre (French: Arènes d'Arles) is a Roman amphitheatre in the southern French town of Arles. Two-tiered, it is probably the most prominent tourist attraction in the city which thrived in Ancient Rome. The towers jutting out from the top are medieval add-ons.
Built in 90 AD, the amphitheatre held over 20,000 spectators of chariot...
You can use them to give you terms to go on to research.
If you're asking a model, you should be careful, lest it's Zoolander.
Hoy hi.
@small sorrel👋
I'm given to understand that computer vision within the sphere of #data-science-and-ml.
@molten pewter 👋
hello 🙂
Hello people!
Does the existence of right angles imply the existence of wrong angles?
@rigid marsh👋
@whole bear👋
Bro don't call it a "Silly" game.
CSGO ain't silly.
It has been in the top charts on steam even after being released like years ago.
It can't be dethroned! Excited for CSGO2
Data massaging?
What?
What's actually going on? Paper Hot Dog?
I'd like to have it with some Mustard too.
i've never had kimchi that makes me want to try it
Try the proper ones, don't go for the off brands, you'll regret it.
Dude, Unreal and Epic Games have em all. Watch some YT videos and make a game.
i will look up which ones i can find in india
I am India too, Amazon has some good ones.
i would recommend starting out with a game engine or a graphics library too
you can later try and implement your own if you want to but for most people at the start its good to start with a popular engine like unreal or unity or sometimes if you want something more free (not in the financial sense) then some graphic library like raylib or pygame
it makes it quicker to get a visible result which makes it more fun
Wasn't Epic working on an Engine that does even more realistic rendering than Unreal does now?
unreal engine 5 yes. i already use it and its amazing...
i just need to buy another ssd
my hdd slows it down too much :/
Oh cool man. How was it?
nanite and lumen are amazing and let you make realtime really cool looking lighting with good performance and raytracing is fun to play with
they are even adding a new texture system and even a system to procedurally generate landmasses while having control over it too
I stan this, they are really fun. 🙂 I tried this game development stuff like a few years ago, not much. Figured out I'd be happy to play games than make them.
https://www.youtube.com/watch?v=dYk7byKHSRw watch this its fun 😄
Sure 🙂
Man damn, these are insane! 🔥
i also used to think like that until i found coding adventures series by sebastian league on youtube and it inspired me to keep developing
games as a hobby*
That's cool man!
I picked up a camera then, I figured I love Coding as much as Cinematography and Photography!
ye he makes some amazing stuff man i'm still learning to how to replicate what he does slowly but steadily
Taking it slow always helps.
yeah
no one talking?
just change ur nam

Lol.
I wish I had time learn another language rn. I feel like it opens up so much other perspective. Reading news in other languages...
I like turtles
I spend 10mins in Duolingo and those Notifications haunt me.
i’ve been living in france like 5yrs my classe mates still makes fun of my accent
I used pimsleur for German and Russian but lost interest so I completely understand.
Make sense.
This article ranks human languages by their number of native speakers.
However, all such rankings should be used with caution, because it is not possible to devise a coherent set of linguistic criteria for distinguishing languages in a dialect continuum.
For example, a language is often defined as a set of varieties that are mutually intelligibl...
I have this linguist in my other discord. speaks like 11 languages, freaking impressive.
Oh jeez, insane.
Goes to school for it.
I need to stop procrastinating and just study.
jesus
😂 the struggle is real.
0-15 is childhood?
Thanks a lot @somber heath Appreciate that!
US has two status of "citizenship"
Dual Citizenship.
Welcome to Embassy of India, Washington D C, USA
Under The Indian Citizenship Act, 1955, Persons of Indian Origin is not allowed DUAL Citizenship. If a person has ever held an Indian Passport and has obtained the Passport of another country, they will be required to surrender their Indian Passport immediately after gaining another Country's nationality. @amber raptor @molten pewter @somber heath
I wouldn't mind doing that, after getting a more powerful passport. I mean there aren't any "Great Privileges" being under the Indian Government.
Ive been pretty intrigued by the property rights in other countries. Like for foreign nationals to invest in Dubai they can only be leaseholders.
well i never said its a bad thing i was just showing that this is a thing
No no, just placing my Opinion forward.
🙂 👍🏻
i eventually want to move to somewhere close to denmark too
i have indian friends who have a job in denmark so it'd be pretty cool to live there
I wanna go settle in Iceland or Russia. I am so astonished by their lifestyle.
They are like, Cool. Pun intended.
Russia 💀
it's not fun here
Lol. Wanna meet my guy Putin.
Have a chat with a shot of Whiskey.
I'll die in peace then...
Wait "HERE" you are Russian?
Yeah, those border force shows are very "ooga booga"
using appropriate words to describe him will get be banned for profanity
I have no health insurance right now. It’s kinda horrible 🤷🏼♂️
living in Russia
for now
I understand man, nvm.
...I don't play Brawlhalla.
Oh wow. Cool man.
In the U.K. they’ll send a bailor to your house to collect debt.
@amber raptor how do these credit repair companies operate to discourage collections then? Just kinda curious.
(In the US)
How can collections companies acquire original documentation?
It's supposed to come when companies buy debt
But how bad the documentation is shocking: https://www.youtube.com/watch?v=hxUAntt1z2c
Companies that purchase debt cheaply then collect it aggressively are shockingly easy to start. We can prove it!
Connect with Last Week Tonight online...
Subscribe to the Last Week Tonight YouTube channel for more almost news as it almost happens: www.youtube.com/user/LastWeekTonight
Find Last Week Tonight on Facebook like your mom would:
htt...
Where's Hemlock today?
Alright Imma head to sleep! Good night folks 🙂 "If it's a night for you"

byeee
I think he said he had a day off today.
End of tax season office holiday or something.
Social justice campaigner and "people's priest" Father Bob Maguire has died aged 88, his foundation has confirmed. The media personality and Roman Catholic priest dedicated his life to standing up for the poor and marginalised and clashed with church hierarchy over his forced retirement. Known universally as Father Bob, Maguire's faith and socia...
can someone update me about the topic of this call?
It wanders.
normal day on discord
this code is going through 113000 lines of txt but i'm still worried why it is taking so long
how long?
nvm i think i figured it out ( i didn't )
like 40 seconds now
shouldn't if be inside the loop?
otherwise it's NameError
also
now that you've said it...
i sees to never be updated
that's what i changed but
for the last if to work it needs to read all the lines...
it definitely should be for not while
fin looks like it ought to be a parameter. Structural comment, nothing to do with why it's not working as you'd like.
usually i don't use in range because i don't how it works exactly
because word[(len(word)-1)+1]
range(N) for a positive integer N means all integers 0,...,N-1
!e
print(*range(10))
@vocal basin :white_check_mark: Your 3.11 eval job has completed with return code 0.
0 1 2 3 4 5 6 7 8 9
this condition never changes during the while loop
it should be outside the while loop
i've been trying since 10am to make this function work properly, since it's an exercise for the book i'm reading i don't want to skip it
(before it)
I still prefer proper programming, of software engineering level rather than puzzles
with emphasis on things other than speed of writing or compactness
do we have games for that 
wha
i will play some league of legends so i can refresh my mind, i've been coding since i woke up
I thought it was only 500
can't even imagine myself writing a code this big XD
what you are working on yuu
distributed storage
proprietary, for now
it will be made public later, when rewritten in Rust
ok smarty pants
or, like, the stupid differentiation part
we got a megagenius here
C H A I N R U L E
the recursive stuff maths is scarier so I didn't touch it
guide for anyone to achieve the same result:
quit AI as soon as maths starts being even a little bit difficult
for me it was more like
"go optimize resnet convolutions"
"help what's resnet"
"figure it out"
"gifted and talent student" sounds weird
like, segregating students/employees in groups "based on performance" is fundamentally fucked up
i went the opposite way, math is what makes it interesting
reminded me of how I was doing school project about GIS
> gets some geography stuff to calculate
> wtf is happening
> the only thing being able to do is to install required software
> asks scientific adviser about wtf is happening
> no response for a month
> project gets cancelled before I can understand anything
#leave mustafa alone
Beryllium
ig
I was absolutely unable to study in the university
but somehow was able to help other people
Russia/USSR has similar thing with Demidovich
(book with every question possible and commonly named after its author)
but people making exams are usually able to add at least a little bit of variation to the problems from the book
"endless stream of questions"
this edition I found is only 4460 exercises
so this one doesn't cross into "thousands of pages" category
there's also 'static being a "subtype" of all other lifetimes
same strangeness as contravariance
"zucchini is a berry actually"
t.i.l.
i had a physics class with a polish theorist
who did the soviet math education
and expected us to know from memory all of the series expansions
and would just expect us to make approximations from first term of series expansions that nobody knew
You could learn how to cook 😄
and if you didnt do it you couldnt continue in the problem because it didnt have analytical solution
i have nightmares about his classes to this day
our calculus teacher explained how to derive those things
because he couldn't memorise either
for 4 months, that I attended university, calculus and programming were the only fun ones
yeah so you could derive them but exams were impossible to finish on time
"coincidentally", those were the two subjects I knew most of the semester program before starting it
if I didn't have to quit due to health, fun would've lasted longer
This module defines an object type which can compactly represent an array of basic values: characters, integers, floating point numbers. Arrays are sequence types and behave very much like lists, except that the type of objects stored in them is constrained. The type is specified at object creation time by using a type code, which is a single character. The following type codes are defined:
@vocal basin :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | 3.1415927410125732
002 | 3.141592653589793
@lavish rover float in python but not really
"if you really want lower precision"
!e
from array import array
from math import pi
print(array('f', [pi])[0])
print(type(pi[0]))
@lavish rover :x: Your 3.11 eval job has completed with return code 1.
001 | 3.1415927410125732
002 | Traceback (most recent call last):
003 | File "/home/main.py", line 5, in <module>
004 | print(type(pi[0]))
005 | ~~^^^
006 | TypeError: 'float' object is not subscriptable
oh lmao
!e
from array import array
from math import pi
print(array('f', [pi])[0])
print(type(pi))
@lavish rover :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | 3.1415927410125732
002 | <class 'float'>
yes
but that's probably even more memory inefficient than just having a double
if you just want 1
!d unittest
Source code: Lib/unittest/__init__.py
(If you are already familiar with the basic concepts of testing, you might want to skip to the list of assert methods.)
The unittest unit testing framework was originally inspired by JUnit and has a similar flavor as major unit testing frameworks in other languages. It supports test automation, sharing of setup and shutdown code for tests, aggregation of tests into collections, and independence of the tests from the reporting framework.
To achieve this, unittest supports some important concepts in an object-oriented way:
e
w
what
that's so bad I forgot you talked about it alreadyu
my brain can't store that
"that's clever but it's disgusting even by my standard"
Jupyter piping?
Anyone feel like chatting?
"jupyping"
brb
List comprehensions have a scope
function scopes may seem private
(closures)
but not fully
oh
we had (automated) data cleaning as an exercise in school
on real data downloaded
this way we found out whatever's generating CSVs doesn't remove newlines from fields
so rows get split randomly because the person entering the data accidentally pressed enter when they shouldn't have
@lavish rover if you make them use aecor, you can then quit a month later and get hired as a consultant for twice the pay because you're the only one who understands what happens
"just don't implement global scope"
- have your modules being able to return values
