#voice-chat-text-0
1 messages · Page 270 of 1
English only server, folks
.
yp mb
woah
ya
i got offended (personal opinion)
4. Use English to the best of your ability. Be polite if someone speaks English imperfectly.
xd
xd
chienes >
saudi >
nah
Hello & thanks for reading. I am porting some Python to C, exposing a few functions back to Python via CPython. However, some of the C still needs to call a function from a Python module. Very specifically, what I need to do is import Pyglet.graphics.Batch so I can use it in my C code. I know how to call Python functions using the CPython API...
@upper basin
thats extremely vague
There's also a programming langauge called "Scratch"
It's an educational language
im writing a compiler for that
block programming was my life back then
You drag blocks around
nice
yes i know
im young af
grew up programming in scratch block programming
dragging stuff around :D
same
can you make block programming as fast as c++?
There's the official tutorial
I just like the animal drawings
Not to be that guy, but does anyone have experience dealing with HID devices on Windows? 😄
I need to send a "feature report" to my keyboard to disable something (a slightly delay on the caps-lock key).
I have no idea how this guy figured this out, but I have to send the feature report 0x09 0x00 0x00 0x00 to the keyboard.
I managed it on Linux, but Windows seems to be having issues.
#include <stdio.h>
#include <stdint.h>
#include <wchar.h>
#include "hidapi.h"
int main(int argc, char *argv[]) {
int res;
res = hid_init();
if (res != 0) {
fprintf(stderr, "Failed to init hidapi library: %ls\n", hid_error(NULL));
return 1;
}
hid_device *handle = hid_open(0x05AC, 0x0250, NULL);
if (!handle) {
fprintf(stderr, "Unable to open device: %ls\n", hid_error(NULL));
hid_exit();
return 2;
}
uint8_t buf[4] = {0x09, 0x00, 0x00, 0x00};
res = hid_send_feature_report(handle, buf, 4);
if (res != 4) {
fprintf(stderr, "Expected res=4, but got res=%d: %ls\n", res, hid_error(handle));
hid_close(handle);
hid_exit();
return 3;
}
fprintf(stdout, "Success!\n");
hid_close(handle);
hid_exit();
return 0;
}
Expected res=4, but got res=-1: HidD_SetFeature: (0x00000001) Incorrect function.
``` :C
I've literally been trying to get this to work for like three hours 🥲
Bye Alex! Thank you so much for the book!
Cya @upper basin 👋
This is all because I have caps-lock mapped to escape (I'm a vim user), and that very slight delay every time I try to hit escape is super annoying 😄
As in, you have to hold it down for more than a certain amount of time for the keypress to register.
There didn't seem to be any way to do it wil AHK unfortunately.
I think I'm going to give up on it, maybe get a new keyboard, before I go crazy lol
What's everyone up to?
I write SQL in all lowercase 
i did that too but i was told it affects "readability"
Errr, in Vim you switch between normal mode (keys perform commands) and insert mode (keys type characters). To get back to normal mode you hit escape. You probably press escape like once every 5 seconds on average.

i bind jj to escape
Hmm, I might try that thanks!
there's also <C-c>
Right
ic
most people bind jj / jk to esc
This also works I guess, but I tried it before and wasn't a fan.
Oh right
Right yeah. I don't actually use Vim anymore.
But I still use the keybindings in vscode/pycharm/online.
And vimium in the browser.
Which is actually great if you haven't tried it! 😄
i use tridactyl
Yeah essentially
It's an add-on for chrome/firefox
It's nice. E.g. you press f then type a two-digit sequence to follow any link on the page.
You're a bit glitchy @cerulean ridge
makeup
Errrm, I'll find a screenshot
Sephora is a French multinational retailer of personal care and beauty products with nearly 340 brands, along with its own private label, Sephora Collection, and includes beauty products such as cosmetics, skincare, fragrance, nail color, beauty tools, body lotions, and haircare.
The company was founded in Limoges in 1969 and is currently based ...
zathura
ooh
zathura-mupdf
So that's an example. It looks like it would be clunky to use but it's actually alright.
The yellow squares with the letters show up when you press f.
I don't understand sorry
Right yeah
Yeah, so the default commands are things like closing a tab, opening a new tab, switching tabs, scrolling, etc.
t is new tab, x closes the tab, X re-opens a closed tab...
T I think searches through your tabs.
/ to search the current page
No worries 😄
I think someone here recommended it to me
Errm, me and complex configuration do not go together 
or use qutebrowser.. with builtin vim like bindings
I switched to Kakoune for a bit, then Helix, and now I just use vscode.
Oh 
I might check it out
I've got to go actually, might be back later 👋
Hello y`all
I am lv 0 super new to all this ( coding)
and i got a question , if i am afraid of running a code , for whatever reasons
how can i run it in a safe environment ?
aka i do not know what would be the outcome from the script
supposed to be a " Scraping-and-Dashboard-App "
wow , thank you !
yep
its not just memory safety
for example, the data structures
if you have a enum
and a match, you can be explicit and have to match all variants
so if you later add a variant, the compiler will scream
it wont even let you do out of bound access for stuff like vectors
To be clear, venvs aren't really isolated in a security sense. I.e. they're not sandboxes.
They're just for avoiding dependency clashes.
scratch mit edu
i didnt make turbowarp
i have it
i just dont comfortable
speaking
yea so im making a compiler for scratch
rewriting from python to rust
no
scratch is a block based prog lang
my compiler turns text code into scratch projects
that too can be done
why even have venvs? why not just use docker containers
A bit lighter-weight I guess? Rabbit would probably say use a Docker container 😄
For distribution, yes.
yo whats up guys?
@dusty jasper haha just rambling
@frosty garnet im back.
just tryna learn Python
im in vc btw
i dont know anything and rn im learning IF and Else's
@dusty jasper nice!!
@frosty garnet how do these if and else things work?
I can hear you btw.
i dm'd you @frosty garnet
@frosty garnet a bit slower please 🙂
you apply it to the string directly
@slow drum 👋
!e ```py
def outer():
def inner():
nonlocal v
v = 1
v = 0
inner()
print(v) #local to outer, nonlocal/enclosing to inner
outer()```
@somber heath :white_check_mark: Your 3.12 eval job has completed with return code 0.
1
wsg @lavish rover
@frosty spoke 👋
nice talking with you @lavish rover
I’m now stuck on a call.
At the EOD asking questions, verifying information, and repeating is only going to help bridge the gap from lack of understanding to proficiency. Just to support @somber heath point earlier. Using Ai as a research tool can be useful however I wish it provided me with the information that made it come up with the conclusions. 🤔
@plain raptor 👋
Hello guys?
Hello @peak depot, @upper basin and @somber heath 👋🏾 🙂
Hi Guys
Hi
#career-advice @austere linden
WHAT
Your accomplishments (The scholarly past that brings you to the current moment (classes, studies, majors, ideas, research, jobs, internships, publications, etc.)
Your goals (scholarly, professional, and humanistic), both for your time in grad school and afterward.
What your research questions are. What issues, challenges, or problems do you hope to solve (or at least contribute to solving)? DONE
What’s driving you? What are your stakes? Who or what else stands to benefit from your work?
WHY
Your motivations: The “why” of it all. (Why this? Why now?)
Why this program and why these professors? (The more precise, the better)
HOW
How do you plan on going about finding answers to your questions?
How will you spend your time in graduate school?
How will you take advantage of what this program and university offer (professors, classes, institutes, training, colloquia, conferences, labs, etc.)?
I need to rest..
@amber ether 👋
My student made https://applyTo.jobs to help people customize their resume for each job application
hello guys @upper basin @cerulean ridge @hallow warren @azure fiber
damn 1 minute naps is crazy
So what are you guys doing
well nice @hallow warren thoug you should try to take a nap
hello @grave moat
hello @tidal kelp
hey...
how are you doing what are you up to
Metal Gear Solid V : Phantom Pain
oh wow nice
wbu?
hey ace
do you play srb2
i play last epoch
@upper basin i play all of metal gear solid all the way to the psp one bro
mgr revengence had great music
im afraid i cant do that
why @whole bear
space oddessy reference
lolo
never heard about space oddessy, i totally liked the dune discussion earlier...
the idea of paul as a messianic figure seemed cool
@hallow warren try taking a nap lol this man was suppose to fall asleep lol ace don't keep him up lol
@muted ruin if there is a free version and paid version, which one would you prefer to use?
@upper basin oops pinged the wrong guy
what is this?
If a service is worth the cash, I will get the paid version.
It's about using what fits your needs.
If I had to, I would.
you said, someone could sell your open-source software and make a profit
Yes, that happens all the time.
no one buys their shit though
Hence, why licensing your work is important.
nope
they won't be able to make a profit unless they are giving something more than just re-distributing your software
If that's the case, it wouldn't be because the service is "shit", it would be because there is a free counterpart.
this isn't even a real issue with open-source software
I am not going to argue.
if you really want, just use GPL3
GPL3 prevents people from making closed-sourced versions
No open-source license truly protects your IP.
licenses don't protect IP
All software can be reproduced. Only a patent can provide a meaningful protection.
copyright does
oh my god.
you can't patent software
Ok, I'm not gonna argue hehe.
because you can't.
You can, and people do it all the time.
only in the US
also i dont think anything should be patented
it only harms the people
We live in a capitalist world. People make capital by providing unique services, to maintain, and grow the service.
lets say you have a patent for a product
thus no other company can manufacture that product
which means you can price it whatever the f you want and people have no choice
You're talking about a different ideology, not a fact of how the world functions.
It's like saying, "we shouldn't pay for water, gas, and electricity. It harms the people."
unrelated and extremely simplified analogy
Services cost money to make and maintain. Services compete with each other, and those with original and effective ideas win. You need to protect those ideas to ensure the survival of your business.
anyone can start selling gas for cheaper if they could
if gas was patented, only one company would be allowed to extract gas
This is why I don't want to argue. Your view is obviously based on your personal ideology, not how the world objectively functions.
ok and i dont want to argue with stupid
Watch it.
water, gas, electricity arent patented
finally i hit 50 word AMEN
hi guys
Damn it, have to do shred
use 10kg dumbells.. higher reps
I'm only mad because I didn't think of it first
come to vc
As soon as I can
!stream 5
✅ @stone dagger can now stream until <t:1709738584:f>.
!stream 425552190283972608
✅ @peak depot can now stream until <t:1709738587:f>.
Uhhhhhhh ignore that
Dude
I can stream?
Moment
this movie Låt den rätte komma in
about a grandma who looks like underage girl
!stream 255420410588430337
✅ @coarse remnant can now stream until <t:1709739828:f>.
someone suggest a lightweight minifier/bundler
!stream 311739984094953472
✅ @cerulean ridge can now stream until <t:1709740467:f>.
@long phoenix I have some experence with Selinum. What are you wanting to know or do?
is there anyway to use selenium to access browsers opened manuallyu @rugged root
That's a good question. I think in most cases it has to be done via the driver so it has to open its own browser. What're you trying to do?
Through, Though, Tough
y0u_sH0uLd_f33L_gu1LtY
it is what colemak would have been if it didn't aim to put zxcv and punctuation in the original spots
God damn it, I'm doing it again
Co-worker is here, so Hemlock is now typing only
Yep, accountants can make bank
@cerulean ridge Wat?
"Your honor"
Jeeeeeeeesus
@whole bear
I'm only mad because I can't make a counter joke
Because I'm stuck typing
I'm so salty right now
@amber raptor Yo
@whole bear Successful business
That's the key
Just pray you have good insurance
True
Pray HEAVILY
Yep
Depends on the region
Low income areas
"Someone broke in and stole all the dryers"
"Fuckers took the fabric softener...."
Yeah yeah
Destruction of property
Or have lots of units so that you're not suffering from downtime
Quarters are heavy
mom's sphagetti
{ ...props }
@stuck furnace Hey bud
Heyy
@coarse remnant Heavy, take up a lot of room, annoying to process
Ideal situation would be to make tokens
But people haaaaate that
Yep
@peak depot Welcome back
Can I show my way back?
There's an active convo so not right now
"He always seemed like a calm peaceful guy"
@coarse remnant You are SUPER quiet now
thanks
Jesus that's scary
and someone said me talking about a ps2 emulator is sketchy...
Yeah I retract that. Only sketch if we're talking about acquiring the bios file or iso files
Back in a bit 😄
@rugged root now it's dark and foggy
I was just saying there's this ps2 emulator so you can easily play the childhood games.The reaction I got was like I talked about hacking someone's bank account or sth.
Besides, even the iso files, they're like 20 years old. It's not like those companies even sell those games anymore for you to legitimately buy/acquire.
Ok no, not modern remasters.
No, just a game from my childhood.
Yeah, MGSV is great.
Modern remasters mean that the games still are a grey area
I stand by that proudly.
@coarse remnant They re-released the Metal Gear Solid games recently
Yeah, but the ones I mean are exclusively on PS2.
On PS2?
No no
Hold on
I'll find it
@upper basin Even if they're the old versions, it still counts as being sold elsewhere
So it's still not kosher
Where can I legitimately buy a PS2 game?
So is watching a movie online here and then.
Online, local retro game stores, remasters or re-releases on various consoles or even Steam
Like they are out there
We do not have local retro game stores here.
The games I play were never remastered.
I'm just saying, discussing how and where to get the iso's is a grey area we don't want to touch
I don't think that's unreasonable
Well, still, I wasn't even talking about isos.
I was just talking about me being able to play ps2 games on my pc.
Please don't apologize.
But it's what I do best
What you do best is also what you do effortlessly.
Pretty much yeah
That's being a giga chad (in case you don't like the other term HEHEHEH).
Been a while since we've had one
!vmute 515544701806313482 Joining voice chat just to play loud and obnoxious music is unacceptable.
:incoming_envelope: :ok_hand: applied voice mute to @hollow sundial permanently.
Yeah it really has been like... maybe a couple years since we've had a troll bother to get past the verification
That kind of troll anyway
sorry i had plugged in the wrong mic
If you want to appeal the mute, please send a message to the @rapid crown bot
Peace
I watched the like.... 1 hour beginning cinematic
You're fine
When you actually get to play the game?
Because it's like that long- @vernal bridge yo- where you don't actually get to play the game
There's just so many cinematics they should have just made it a video
walekum peace 🤣
Currently futzing around with different GUI choices
Wanting to find a good one that's easy to install for non-programmers and cross platform
Ello 👋
Co-worker is back here and I don't want to bother them
Which?
Or self-fulfilling prophecy
Fair
@stark river You trying to quit?
no. i don't smoke (anymore).. except on rare occassions..
this time i smoked twice in a week so i guess there's a minor craving there
Better than pounding a couple packs a day
I don't know how people can even afford to do that
Later ACE
@vernal bridge What're you up to
Ooooo
Yeah yeah
Gotcha
Eh, doesn't really meta
I love going through project dependencies like this
Hi Griff 👀
!pypi shellingham
They build too big with Python
It'll be interesting to see how Python's backend improves
True
You can eject that OpenAPI spec to another
Export, not eject
The fuck Hemlock
Wait what
!pypi findpython
I.... what?
I guess that makes sense
Feels weird, though
Necessary
Oh huh, that last one is also made by the PDM dev
So there must be a good reason for it
That reminds me I'm thinking about contributing a windows installer to PyPy 😄
Oooooooooooooooooooooooooooooooooooooooooooo
To make the registry changes it needs to be found by py
Have you used Inno Setup before? 👀
No the "Ooooooo" was because I was interested in what Alex was saying
Oh no, English sucking is just fact
100%
And no, I haven't encountered Inno before
Ah right
Jesus, all of these websites look like they haven't changed since the mid 90's
https://jrsoftware.org/isinfo.php Just look at how tiny the left sidebar is
@vernal bridge A bastardized German language base at that
They were just like fuck it
Throw all the languages from Western Europe in the pot
Seems handy
We don't talk about French
Computers are female I think when it comes to languages
It is in Spanish at least
Wait
It's male in Spanish?
Computadora, I thought
Oh that's Spain Spanish
Maybe it's different in Mexican Spanish
Right right
I just didn't realize there was a difference for that word
@gentle flint Sup
!pypi filelock
Ah 😬
Dude I always fear for you like all the time
You actually throwing a punch
Secret Jewish martial arts. Jewdo and Jewjitsu
Yo
Sup
Pyweek
Indeed
damn.. dark reader extension messing with my colors! i thought i was going bonkers
Germ? 
Jam
Oh lol 😄
(I think)
I mean there is wheat germ
And corn smut
Corn smut is a plant disease caused by the pathogenic fungus Ustilago maydis. One of several cereal crop pathogens called smut, the fungus forms galls on all above-ground parts of corn species such as maize and teosinte. The infected corn is edible; in Mexico, it is considered a delicacy called huitlacoche, often eaten as a filling in quesadilla...
Apparently people eat it
But like
Ick
Is it just me or does this look like Quagmire from family guy?
Giggidy?
Anyway, this is my attempt at a proof-of-concept for a pypy installer: https://paste.pythondiscord.com/JQJQ
It compiles into an installer exe with inno
I'm here
Does anyone want to run a random .exe I send them? 😄 /jk
I've had worse ideas
because of the asbestos or the randomly violent people on the street?
It might corrupt your Windows registry, but just a little bit
All
Ah yeah nah
Co-worker is back here
RIGHT?
I HATE that they got rid of it
It makes no sense
You have to tap the screen
It's so fucking stupid
Oh right. How many times have they re-designed the mobile app now?
They're like me with programming projects
The latest one had so many great things
And then they're like "Let's now progressively make it worse again"
Yeah anytime you re-design/re-write something from scratch you're going to get regressions
Cya plome 👋
No no, I mean like they had a great thing with the latest one
Like the being able to see when people are muted or deafened.
And they just decided to remove that later
For no good reason
¯_(ツ)_/¯
I would like to cry a bit if that's ok HEHEHE
Thank you very much!
It's done and gone
I didn't doubt you
That sucks
Yeah that is a slap in the face
I'm sorry bud
Do they know it was plagiarised?
i am returned, the destroyer of waffles
Did you release it on a repo?
With a permissive license?
Again, it's done and gone
Not sure what the next steps are there
Other than a lawyer?
But like
I hear ya
Maybe it was out of spite
Okay, but are you going to do more about it
Is there a prize or something for the jam?
I'm more saying, because there is a prize, it makes more sense to pursue it
Whether you get money for it or not
They don't deserve it
Neat
I'm just thinking, be the arm of Karma
Karma without an arm is just ka


stop being a vibrator
hemlock satisfier pro deluxe
Getting the shaking just right was a real art 😄
Oh right, you were the one that did that part
I remember Chris was the one who originally took the screenie
@upper basin Plagiarism
@gentle flint Actually say "theft"
I think "plagiarism" is more accurate
Plagiarized
It is
But it's more specific
I would just use the word plagiarize in this case rather than theft, is all I'm sayin'
Go all in: "I was ransacked, violated, and left bereft"
"Then he bonked me on the head and pushed me down the stairs and my shoes fell off"
I came to the chat and first thing i heard was Plome yelling: shut up 😅
"And I'm very hurt about this"
Bonk is such a good word
The shutup and the egg
Oh nice nice
Ovulation
Oh wrong egg time
Not very generous
Dude
The hell
Okay, for the same project. 3 fucking site designs
https://www.wxpython.org/pages/overview/#hello-world
https://docs.wxpython.org/
https://wiki.wxpython.org/
Like... I get that they're different parts of the site but like...
Pick a theme
They're all for the wxPython framework
@peak depot Nah, I don't have any involvement with the art stuff
I'm shit at art
you wish.
🤣
We have theming for the seasonal stuff
Three different logos too 🤔
Hemlock is like a modest Picasso.
Like "Agh, I suck", and then would throw out a masterpiece.
EXACTLY
Doesn't bode well if it's a GUI library 😄
HAH
Thankfully it's all about using native elements
What're you working on Georgino?
What do you want to share?
I can't at the moment, I'm up and down at the office right now
I would but I'm off to cook dinner in a minute so can't supervise
its ok dude
all good
We appreciate you being understanding about it
no proplem
This sounds a bit like Total Recall 🤔
I need to watch Total Recall again...
I need to go on an old movie binge again
100%, CYA = Cover Your Ass
I was playing L.A. Noire, and now I want to watch a load of old neo noir films
guys im making a advanced image recognition bots using python
Like ROSbots?
I pretty much speedrun the stages of grief.
calculator was an old project
i was looking in it
Gotta go 👋
Later Alex
I'll be back later as well. I have to get some things ready for a delivery run
what game should i do in it 🤔
ok seeya!
advanced image recognition bots using python
i cant find a game
piano tiles?
yeah
like?
im not making ai !
oh yeah
hmmm
maybe
Try Super Mario
It has a small enough control system that allows the AI to learn easier.
Piski
@peak depot u seem tired as hell
thanks!
My pleasure! Basically, your input would be the image at every FPS, then your image recognition algorithm would output a control (left, right, up, down, jump), and that's the output sent to the controller.
For games like Mario, I think you can start with 30 FPS.
im choosing piano tiles for a reason
You'd also have a better experience with reinforcement learning, to have it evolve a bit.
Your choice little bro, Mario is just a classic hehe. Piano tiles may be too easy, but that means you'll have an easier time learning as well.
Babye!
seeya
You took these Milien?
In November 2022, the Labour-run Westminster City Council committed to replace BAME with "global majority." However, Conservative MP John Hayes remarked that the change was "deeply sinister and must be resisted at every turn."
Only 2 of them
If u have money 😂
I would like to be a lumberjack.
It's expensive here
i live in a desert by the sea
every day is a sauna
plome, your pizza ready?
just done
picture please?
37 seconds left
squeals patiently
Looks delish though
I wish I could send you some cheese, I bought some today hehe.
thx
plome if you like a thick pizza, you should try the persian version.
It is characterized by its thick bread and large amounts of cheese.
what a good idea
It basically has a few layers of cold cut, beef, or chicken on the buttom above the sauce, and then it's covered by the cheese, and then you spread the mushroom, olives, corn, and bell peppers on top.
cheese is king.
That cheese pull cures depression.
fr
.
پیتزا مانو، اصفهان. خیلی پیتزاهای خوشمزه و باحالی دارن 😋 دفعه دومه داریم میایم، و دقیقا مثل سری پیش هستن 😁 همه پیتزاها تنوری و هیزمی میشن، و قیمت هاشون هم به نسبت سایز و کیفیت، خوب و ارزون بود (مخصوصا نسبت به تهران 😅) خمیرشم عالی و درجه یک و ترد و بیسکوییتی 😋 کاملا سلیقه ای هست پیتزاها، پس نمیگم از کدوم بگیرید، انتخاب با خودتون 😁 پنیرشونم خیلی...
5643
Plome, these are like the thin ones hehe
i require one
any networkers in here
I'll add it to the list.
the pizza is going fast
Nightwish - Sleepwalker Live In Eurovision (2000) - Fan Remastered Edition.
El tema musical "Sleepwalker" Pertenece al disco "Wishmaster" del año 2000.
Video editado, remasterizado y renderizado a una resolución de 1080p.
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
Nightwish - The Offi...
Subscribe and 🔔 to Eurovision 👉 https://www.youtube.com/user/eurovision?sub_confirmation=1
Joost Klein will represent the Netherlands at the Eurovision Song Contest in Malmö with his song Europapa.
Find out more about Joost Klein: https://eurovision.tv/participant/joost-klein-2024
Joost:
https://www.tiktok.com/@joostklein
https://www.instag...
You're a big boy, that's why.
Muscles burn alot of calories, you should have made two HEHEHE.
I have a second
Is that cate blanchet?
as a roll of dough
Or whatever her name is, my apologies.
Kate*
bro, the guy messaged this to me "Unfortunately, the review of a project is not exclusively due to the performance of the review. Other factors are taken into account and go through several reviewers. Here are more details".
We literally had a scientific paper accompanied with the code.
It's so stupid (sorry for cursing), but how can you say performance isn't the main factor in an optimization problem?
Subscribe to Ninja Tune on YouTube: http://www.youtube.com/user/ninja000?sub_confirmation=1
Another outing for the fantastic "Get A Move On" track which has fast become a favourite since it was first released in May 1999. This time, however, the single also features "Ug" a track not previously available except on Ninja Tunes Xen Cuts compilatio...
We literally made the state-of-the-art, I think it merits more than calling the package's prebuilt function from 2004.
Machinae Supremacy is a Swedish/Finnish band that combines modern heavy metal, power metal and alternative rock with chiptunes. Self-defined as "SID metal", many of their songs use a SidStation that features the SID chip of the Commodore 64. They have released 32 original recordings for free download on their site, with approximately 100,000 dow...
Check out our new 2014 video here: http://youtu.be/ndXiBZCGUPE featuring the Hippy and one of the Gabbers..
http://www.facebook.com/thepartyanimals I Wanna Be A Hippy (this version produced by Dutch/American dj/producers duo Flamman & Abraxas) was a #1 single in 1995 in many countries and the kick-off for two offsprings: The Party Animals, whos...
voices of angels
Mun vuodet vähenee
ne ilmaan ohenee
kuin savu taivaaseen
Mun jälkeeni ei jää
kai mitään kestävää
pois kaikki häviää
Mä hiekkalinnan teen
se vaipuu paikoilleen
ei kestä huomiseen
On turha rakentaa
polkua jatkuvaa
jos kaikki katoaa
Entä jos elämän ikuinen virta
katkeaa kuin lahonnut silta
Entä jos eksyn matkalla laivaan
voinko mä ra...
Provided to YouTube by Sony Music/Supersonic-GUN
Sigillum Diaboli · HIM
Razorblade Romance
℗ 1999 BMG Finland Oy
Released on: 2000-01-24
Producer: John Fryer
Composer, Lyricist: Ville Valo
Auto-generated by YouTube.
THE 69 EYES: Brandon Lee (OFFICIAL MUSIC VIDEO)
SUBSCRIBE TO THE 69 EYES: http://bit.ly/subs-69eys-yt
SUBSCRIBE TO NUCLEAR BLAST: http://bit.ly/subs-nb-yt
Heavily influenced by film and goth culture, this album sees The 69 Eyes moving towards a more "gothic" sound.
BLESSED BE IS AVAILABLE AT:
▶ITUNES: http://georiot.co/PuI
▶AMAZON: http://ge...
SENTENCED - Killing Me Killing You. From the album "Crimson".
Century Media 2000
Most lines here are actually straight lines in hyperbolic geometry, not circles!
This is my hyperbolic space ball bouncing simulator, but it doesn’t work properly. You can see that they move one way, and then back the other indefinitely, but this is not the correct behavior. It should move one way, and then approach a stopping point where it just approaches its gravity geodesic.
I know it’s incorrect because it always oscillates around the origin, even though there is nothing that should be unique about the origin. Even if I start it to the right, for example, and make its velocity toward the right as well, it always just oscillates around the origin
Nvm I fixed it:
My math was off on the earlier models of hyperbolic space. This is the corrected version. The balls come to a stable bounce now NOT due to loss of energy, but because all the non-vertical velocity is eventually converted into "vertical" energy.
@upper basin hello
greetings!
@undone inlet hello
how's its going everybody
wrking on something
some project
nice
@coarse wadi👋
bye also
do anyone has any knowledge about the approach we should take towards freelancing
Best to ask in #career-advice
no worries
kk
@acoustic stirrup 👋
@warped raft 👋
how's its going to buddy
koi mac user h ? coder*
@timber crystal @ionic maple 👋
Hello I can't talk in the channel yet. I probably have nothing to say, though 😂
thank you very much
It's about being more in the channel (3 10 mins blocks)
Yeah, agree
I'm just a newbie, so it's ok for me to listen only
Got it! don't worry
agrree
I would like to improve my skills with Blender Python. I'll be able to join some discussion or getting close to someone else interested in the same subject here in the server?
Yeah, I'm messing around with it
self taught, though
it's a 3d software
thank you so much
hey @somber heath you have any experience django ?
thanks I didn't know that it existed
Thank you for making it clear to me. .I'll probably can expand a bit my coding knowledge by listening to you guys
hey Opal
I had some questions
👍
I have been coding in python for like a year now
I am in Uni
I only write scraping scripts
I use python in NLP
and some data related tasks
but again I don't feel confident OOP in python
even tho I know concepts of OOP
Kivy.
I always see this "Python wrapper around the C programming language"
btw what are you working on Opal ?
oh ye I heard that you were unwell
what's the problem exactlyy?
I feel like...
the right diagnosis is very important
Idk if this extension works
yeah it works for linkedin and Indeed
an extension which is open source would work I guess
coz 100$ a month
is not worth...
hey @somber heath thanks for giving your time
and explaining me about Oops...
gtg
Artwork by Brianne Drouhard - https://www.youtube.com/user/potatofarmgirl
Song by Parry Gripp
It’s your birthday today
It’s your birthday today
There’s A Cat Licking Your Birthday Cake
It’s your birthday today
It’s your birthday today (today)
Everybody say Hooray (hooray)
There’s A Cat Licking Your Birthday Cake
It’s your birthday today (yay)
...
@gentle plank 👋
I'm getting this: You are not currently eligible to use voice inside Python Discord for the following reasons:
You have been on the server for less than 3 days.
You have sent less than 50 messages.
You have been active for fewer than 3 ten-minute blocks
Not at all...
@jagged holly 👋
hello
@gilded yew 👋
@full ingot 👋
hi everyone here
@warped raft hi sorry i didn't see you
👋
this is what the code does
@gentle flint my health is getting worse again..
hello hello
I am back, but cannot speaky
all good sir
How's it going ace?
I'm I think bordering anger and depression?
Damn
So some progress hehe
@gentle flint Don't die
Still regarding the jam?
Well I was ransacked hehe.
I am still left bereft.
I do feel violated.
Ransacked as in the the plagarism?
And you have all rights to feel so
Or were you like mugged as well
Although I do feel obligated to send this
I'd beat the hell out of them, it'd be actually therapeutic.


YES
I dont understand how you didnt accidentally injure some people
The first time I saw that in PyGame I was cry laughing
It's in a game? Noice.
It's for getting the rectangle or general area of a sprite or object
Ahh I see.
I've tripped into people before
Just stumble over my own feet
Is React Native just for making phone apps?
Yeah, pretty much
Dang
You'd use plain old react for web apps
I don't know if it's valence has increased
Plome reminds me of Nanami from JJK
"Use moderate effort where moderate effort suffices."
Damn, he also sounds like him, and looks like him. HEHEHE
Hemlock i tried to run your profile picture thru my edge detection and well turns out its not happy with small images
Makes sense
It's because you have too few pixels.
Looks like the anon mask
I'd like to put forward a petition for sketchy hemshake.
if it sounds like a duck and quacks like a duck...
Yay, interface analogy.
Anokhi taught me about those with ABC class.
Nice
Upsie
My bad
shitpost?
Oh, I missed the one above it
Ohh, post about, ehemm, got it.
Formula 1 baby formula
That should be a brand.
My bad, didn't realize this was your project
Watch the years fly by with Formula 1.
Appareantly its not workin anyways
Carry on
Try with the image I sent.
This is funny 🤣
Hemsketch.
Its scetchy when the contrast is low but we'll see
like a Picasso
Anti-Hem
Download the NFT
Its not that bad
That turned out really cool
Oh my good sah (sir), don't be gauche (sips tea).
I shall ownth the oil painting.
It looks good. I think it'll help if you add a sharpening filter before you run your algorithm.
Basically, you'd want to control how much information you can extract.
For most cases, this would suffice, but depending on the data, you may want more features (lines).
Certain cases don't require color, so this is useful.
Verily, I do declare that I shall rightfully acquire ownership of the oil painting, as it befits my noble standing and esteemed lineage, with a touch of British accent to grace the proclamation.
Gasp! I shall not! I challengeth thou to a gentleman duel.
@wind raptor Yeah the sugar free ones
They use sugar alcohol
They will FLUSH you out
|| class Nobleman:
` def init(self, name):
self.name = name
def issue_challenge(self, opponent):
print(f"Gasp! I shall not! I challengeth thou, {opponent.name}, to a gentleman duel.")
def accept_duel(self, opponent):
print(f"Ah, a challenge is issued! Very well, I accept your duel, good {opponent.name}. Let us settle this matter with honor and grace, as befits gentlemen of our stature.")
Creating nobleman instances
nobleman1 = Nobleman("A.C.E07")
nobleman2 = Nobleman("Rodentus_01_")
Issuing and accepting the challenge
nobleman1.issue_challenge(nobleman2)
nobleman2.accept_duel(nobleman1)`
||
damn its formating
Use
!code
sup babes
Long time no talk
yeah I've been busy with school
Well u still cant talk hemi😂
Nice
yeah we vibes
Oh.. I am C: but i enjoy it regardless
I've got another 18 exams from now to June
