#ot1-perplexing-regexing
1 messages · Page 263 of 1
Deleting files is near instant, it just deletes the entrythat says where the data is.
Writing zeros to all the data is very slow
I know
I got catfished:<
?
someone told me they'd subscribe to my youtube if I solved their shell problem.. and they didn't:v
some people...
sounds like you are too desperate
yes
I mean there are still ways you can get watched even if you put low effort into your videos
there are formats for that
formats?
Yes. Some video types just copy from the work of others. Like reading posts from reddit.
Top 10 list
@vapid bluff I don’t NEED 12tb but it’s there. And it’s full
is it possible to document.getElementById("store100") and get the second DIV on the same line?
@steel fox how much of it can you off load to external drives?
buying a whole new motherboard just because of this seems excessive is all
oh thanks dude, ill keep that in mind
dont think ill be upgrading any time soon though
maybe in like 2-3 years if ram prices really die down over all
I went from 8gigs-32gigs and it was a yuge improvement
i'd have to buy a new cpu as well. so it's gonna be a combined mb+cpu+ram cost when the time comes
I mostly like it because it means I don't need swap
I don't even have a swapfile
But on Windows you are kinda stuck with a pagefile unless you know what you're doing
it's a bit annoying that you cant move hiberfil
dont think ffmpeg will like a 3 hour vid to edit
@vapid bluff hiberfil location is stored in the registry https://www.isunshare.com/windows-10/move-windows-10-hiberfilsys-to-another-volume-to-free-up-c-volume-space.html wait no the article appears to be bullshit
@gentle moss https://i.imgur.com/ru8GxuR.gifv
Morning :P
sup
sip
lol
@sand goblet I don't have the attention to learn HTML/CSS.
and the 5 different attempts
HTML is best learned through experience
Experience in webdev isn't something I'll get from my job, nor do I think I'd be able to get it from hobbying.
Not like Python, anyways, where I could pick it up through the help I give out.
Realistically HTML is itself not very complicated
But you need to do it without CSS first
Okay in the context of web stuff, what exactly is bulma? Just a style template essentially?
Bulma is a CSS framework yeah
Gotcha
You write the html and it styles it
How do CSS frameworks .... work?
Like, every web design is sooo different
How can you generalise it at all?
By providing a bunch of classes that work well together
Bulma can also be customised using sass/scss
i don't know what's funnier
reading "I looooooove sass" in context or out of context
lol
this is late, but dont ever get rid of Windows' pagefile
its not a matter of knowing what you're doing. More a matter of if you know what you're doing, you won't do it
Even with absurd amounts of RAM, getting rid of the pagefile can result in nasty and unexpected behavior.
Nah, it can result in performance gains with the right environment
I want to create a NN that would be able to read text from images. Is there anyone who's familiar with such things and is willing to spend their time teaching me how to do this?
I did a bit of research and it seems like a starter task when working with NN
soooo ocr..?
It's not accurate enough and NNs are more interesting
I can teach you..
if you can help me with this thing I'm doing right now.. it's related to lists..
else I can teach you later when I'm free anyway.. but i'm currently occupied with what I'm trying to do
I used Tesseract and it was like 90% correct. Maybe Google or ABBYY will yield better results, haven't tried them yet
What thing?
I have a list of list of lists..
token_verticals = [vertical_spec(item) for item in tok_list]
vertical_spec(item) basicaly returns a list of lists
I want to change it to a list of lists.. based on whether the inner lists contain the word auto..
but the word auto might occur as auto/something/something..
That's some heavily nested crap
yeah.. v.v
maybe I can check it as im calling the function
whether the list I get contains auto
not sure how
Show the example of data
the vertical_spec function returns the list: ['auto/automobiles/vehicles', 'organization/company', 'jewellery/jewels', 'artifact/musem/item']
I just want to have a bool value of whether the list contains auto or not
hmm I think I got it
rubberduck
does it again
auto_lists = [list if 'auto' in ''.join(list) for list in lists]```
I keep forgetting whether conditions should go before for a in b part or after that
can I add or conditions to the if
like automobile or vehicle
should probably use if any() then to keep it readable
any(list) ?
what if I had /Autos
the code above doesnt work
auto_lists = [list if any('auto' in ''.join(list).lower(), 'vehicle' in ''.join(list).lower()) for list in lists]```
why do you do join here
To check if its elements contain auto
Otherwise it will only match if an element is exactly auto
This is really not something you should be trying to do in one line
Yeah, gotta move the conditions outside, but it works https://i.imgur.com/cPEoGsw.png
im on help4..
Wait, you can't move them outside easily
I mean 5
Jan Koum, the founder of WhatsApp, a messaging app acquired by Facebook in 2014, quit the company in April. He reportedly did not like how Facebook wanted to handle users' private data. @rough sapphire
ok... why are you tagging me in this.. what did I do:v
Don't know why it did that
@rough sapphire are you here still.. wanna work on that ocr now
Only if not actively
Since I'm at work
ok.. I'll tell you how to get started.. and you can get back if you have questions
i'll be here.. most of the time
being a bot and all..
the ocr, is it for characters in english?
Yes. Here's what I did with Tesseract:
http://s3.micp.ru/ru1p9.png
http://s2.micp.ru/38Vzq.png
http://s1.micp.ru/YPzn3.png
No matter how I tried, it couldn't recognise everything. I think it's a good task to start with NN since those can easily be taught to recognise handwritten text
It returned 95% of names accurately + some spoiled pieces
If I got it right, I need to chop each name into characters and feed those to the NN, so the first problem is finding characters
do you have handlabelled data
No, but I can spend some time labeling the characters
that would help.. and you dont have to use tesseract.. make your own nn
That's what I was going to do, but idk how
I actually started coding about half a year ago
do you want to use tensorflow or pytorch
What's the difference between those?
well tensorflow is a pain in the ass to work with.. or it was before tf2.0.. supposedly
but i haven't learned tf2.0 yet
tf is from Google.. pytorch is very common.. it's up to people's preferences.. performance wise Idk..
I'll try pytorch then
alrighty.. so we now have handlabelled data, your NN framework..
next to initialize your NN with some base parameters so you can train and validate
About data, all I did is crop the screenshots so they look like this. From what I've read, I need either single words/lines or characters. How do I do that?
well you need to hand label them
your training set is your image.. which in this case, each line of your screenshot.. and a corresponding label (handwritten text)
So I'll need to cut this into lines too
Okay
That shouldn't be hard since they have the same width
What about those emblems and numbers on the right? I don't need them, but removing them from the image isn't that easy
I just ignored everything with length < 5 to drop those
right.. then you initialize a model with some base parameters.. pick a loss function and an optimization function.. run it for a certain number of epochs.. till you get some % of accuracy in your validation
so since this is user names.. it's better if you cut it into characters.. and label those..
but either way is fine..
Characters have different width and idk how to identify them
it's ok.. no worries..
if your accuracy is low on some characters later on.. you can always label extra data and train again
Okay, so the hardest part for now is installing pytorch on my work machine
do you have a gpu.. you could always run it online
oh wait.. they probably kill your instance if it uses too much resources lol
It probably doesn't lmao. I'll have to do it at home
I can't even check, no perms for that
But I can install stuff
you;ll probably need to run it on gpu.. training time is considerably less
so run a temporary instance on cloud then delete it after you get the model as output
Or I could train it at home where I got a normal PC, yeah
depending on how much data you want to train on.. that might take hours
The clan has only 300 members, it's 16 screenshots 🤷
So I will probably need to ask other clans too lmao
you dont need a lot.. just enough to cover variations
Guess I'll feed the whole roster to it anyway 🤷
Pretty sad to think that the man that made C is dead
He also co-founded UNIX
Imagine walking into a job as this dude
lol
That is just exaggeration, that you created a lang does not mean that you know how to apply it for a certain use case
The man who invented the Hammer must be a legendary carpenter.
prost 🍻
But if the man that invented the hammer also constructed it perfectly
🤔
And constructed the house that the hammer is used in
Hey! do you know some chat/community apps like Discord but for learning, not gaming?
#glitter #spectrum.chat, others?
cc @tame terrace
@rough sapphire Lots of learning communities on Discord anyway. Communities for maths, physics, engineering, etc
and obviously programming ones
Theresa Gehring, begleitet von Philippe Schwarz auf der Posaune Stadttheater Gießen macht kreativ :) (und ja, wir wissen, dass es das schon gab und wir nicht...
hey guys. With the following: https://imgur.com/a/rAgEHZG, where would be a good place to add options to delete or rename the workspaces?
hmm
good idea!
anyone have any screen capture program recommendations? i'm currently using Lightshot and it's nice but i wanna be able to record gifs, and ive heard of better ones, just cant recall any names atm
linux?
win
oh
eww
I use ScreenToGif (https://www.screentogif.com/) and it's worked well for me thus far -- to screen capture and convert to gif
sharex is another option
Oh yeah ShareX is pretty good on Windows
the screen recording is a bit finicky though in my experience. i never managed to get it to record audio properly, if that's something you need.
ah ShareX, that was the one i had forgotten the name of
We use the word bus to describe a bus
Yeah
All western European languages are pretty similar.
Jag taler inte Svenska
isnt this Swedish :v
there's isn't a lot of mutual intelligability between dutch and swedish, but they do have a lot of similar words. as a scandinavian in the netherlands, I can guess what a lot of stuff means, but I can never be reasonably certain.
they're both germanic languages, though
so they're related.
Wow
educational memeing 
man, I'd like to see someone with arachnophobia slap you around a bit for that
Best part about the gif is that it doesn't loop well
This is like the 50th time I've seen it
Every time the person thinks they're being clever
It's just annoying :P
same, its been around for years
like meme dog
but there is a better version where the gif lasts longer but I don't think the spider looks quite as real in that one
@rough sapphire you successfully made my heart rate spike 10% for 1.5 sec
Wow what was I doing at 4:40 ^
I have a Wifi issue, and as you're the best community I know for help I'll post it here
Tech guy came because it was 25Mbps guaranteed, I got usually 10-15 but one day i had 2Mbps all day and it was game day
Initially told me it was my Macbook. I got out my laptop from work (Dell), my Android and my iPhone. 4 different devices saying the same
then he blamed the router
He connected on Ethernet, and got really 25Mbps
Told me: you connect on Ethernet, or change the router. I'm on MBP 2016, there is no more Ethernet port.
Is this your own router or the isp's router?
and with this shitty ISP linked to my building, they are not responsible for routers...
Ethernet is the way to go.
Brazil things... own router
You can get usb to ethernet adapters
The problem with wifi is that it can get congested if there's a lot of wifi devices around
on game day, probably everyone was watching
I'm at top floor, disconnected all devices, it doesn't seem to be a congestion problem
Do you have any walls between you and the router?
a 5cm one, but being 20cm to the router doesn't solve the problem either
It seems like the antenna can't bare more than 15Mbps
idk if this is a setting issue or an hardware issue
"Copyright © 2008-2011 D-Link Systems, Inc." I guess this says a lot
but come on, even in 2011 we had more than 15Mbps
Forced the 802.11n, didn't solved the problem. Tried to change to 20/40Mhz too
Updated the firmware to the most recent one (2012), got 1 more Mbps lol
That people had the technique to transmit more data at year X simply doesn't mean that they implemented in that year just like with WPA3 at the moment for example
ty. I guess I'll have to change my router anyway
anybody got a favorite resource for learning bootstrap front-end?
Problem with rust is that it looks a bit um.. alien
($($n:ident),+ => move |$($p:tt),+| $body:expr) => (
{
$( let $n = $n.clone(); )+
move |$(clone!(@param $p),)+| $body
}
);```
and this is why I chose python as my first language
I don't want to deal with that monstrous clusterfuck of random jibberish from the get-go
(You(would(love(LISP()))))
I am doing go from now on
I can actually read it
I know Rust is better but I just don't want to be reading that all day
Go's job is basically a speedy and stable replacement for python
If you had 2
You would pick rust
And you would pick c++ over that
And C over that
it's really unclear what Go targets
I mean Google did replace a lot of their Python with it
but it's really a language that treats the developer as incompetent
Oh well
some of the mids behind it are just, like, what even
It is hip and it is readable
Error handling
Is it?
yeah the error handling is pretty terrible
I thought go was the hip one and rust was a smaller but still pretty hip one
Go is pretty big now
probably bigger than "hip"
Yeah
for better or for worse there's a lot of random web stuff in Go now
I am just going with go for readability reasons and the fact that I have a long time ahead of me to learn other stuff
there are some really striking issues
It's no erlang for sure
I've never seen any Erlang.
Erlang Programming Language
Website doesn't have anything about erlang on
Like syntax
Yeah, in clash of clans
Well I have 2 books on R
And a book on ECMASCRIPT 6
No erlang
aha
here we go
this is what I was looking for
the latest one is here https://grimoire.ca/dev/go
the very fisrt thing it brings up is how hostile Rob Pike is towards the idea of syntax highlighting
Rob Pike is still at the head of Go ?
I think this is symptomatic of the brains behind Go's core decisions at large
¯_(ツ)_/¯
it's like 10 years old now
I will still use it
Gofmt was written to reduce the number of pointless discussions about code formatting. It succeeded admirably. I'm sad to say it had no effect whatsoever on the number of pointless discussions about syntax highlighting, or as I prefer to call it, spitzensparken blinkelichtzen.
Syntax highlighting is juvenile. When I was a child, I was taught arithmetic using colored rods (http://en.wikipedia.org/wiki/Cuisenaire_rods). I grew up and today I use monochromatic numerals.
I am going to use it to basically make speedy, compiled apps that could be made in python
Tbh I just want to contribute to some open source and learn something more suited to cli development
The TL;DR ...
Nuitka is a Python compiler written in Python.
It's fully compatible with Python 2.6, 2.7, 3.3, 3.4, 3.5, 3.6, and 3.7.
You feed it your Python app, it does a lot of clever things, and s
it performs about 312% of the speed of regular cpython according to pystone
JS is excessively fast
I don't think you'll enjoy it compared to python though
the weak typing can cause all kinds of issues, and the scoping is.. weird at best
Either go or js
there's actually a good reason for doing that
¯_(ツ)_/¯
Prototypical inheritance is a pain.
it's a bit worse than that
this can mean different things depending on where you call a function from and how you call it
Luckily they have syntactic suger for class like inheritance with the class keyword
Yeah, although that's still relatively new
There's also a massive community and a huge amount of packages
Node and Go are the same age
too huge, I would say
That's a downside
ah, but JS is much older than node
Go's dependency management is also pretty bad
So it could be useful in both js and node.js
yeah, but you now need to decide what standard you're coding to
do you adhere to the latest standard? then either you're locking some browsers out, or you have to transpile your JS to older standards for them
Yup
on the other hand you could stick with an older standard, but then you're missing out on nice stuff like ES6 classes and the new async/await syntax
Just use babel
Actually, just kotlin
I actually think babel is a waste of time.
It has some uses, but when you think about it
babel targets some really, really old browsers
most of which you'll never have to care about
Almost all recent features are avaiable on the modern evergreen browsers.
Safari mobile being the exception.
then almost none of them will be running windows 95, scowez
Huh
iPhones will be your biggest pain
yes, safari mobile is so fucking disappointing
safari mobile is why you can't use vh units
because that unit is not a constant
So I shall learn Go
You should learn Kotlin
Then probably do JS
if you need a language to learn, kotlin is a great option
it does native
it does java
it does javascript
Do something functional.
Well isn't that wonderful
oh, and kotlin is a jetbrains language
The dream syntax I made is just slightly modified kotlin
which means that IDEA will have full support for it out of the box
What about vsc?
I'm sure you'll find something.
Let's see
No idea why you'd use that though
you should just use IDEA
it's literally designed for kotlin
Isn't it designed for java?
How bulky is it?
relatively
Sounds like a plan, I'm sure you'll do fine
Oh, what is the ui support like?
I assume it's good even if there are no good ones for kotlin directly
I think there are some toolkits
I use Arch ...(based Majaro)
I use Fedora
wolves inside you seems a bit inappropiate given that it's discord.
wolves inside you means a whole other thing when you're lewd
zfs saves the mountpoints inside the filesystem. cool
Installed different os and everything just mounted automatically to the right place
That looks like a furnace
Yeah, the place where the dwarfes forge their legendary weapons.
Huh, whose coverage is that?
It's a drone shot that was shared on the n ews here
got it
https://twitter.com/AmichaiStein1/status/1117883858010169345
https://twitter.com/AmichaiStein1/status/1117886579744354304
Poor old church... man how did that happen
They think it was an accident during rennovations
I mean as far as I read the cathedral is savable... But this looks bad god damn
I just've seen some footage and the smoke clouds were big
nix that's nsfw
LMFAO
that does not fucking explain the why
curse you perry the platypus
Perryyyy
sleeping, do not disturb: ||
||
Does anyone know of a tool to install old version of python?
I need to get 3.6 for a project I tried to install
You don't want to download it from the website?
Which OS are you on? You could look into PyEnv
I was just thinking there might be a way to manage that
I'm on linux
I'll check that one out
guys.. you have to see this new song from PewDiePie.. its so cool
oh there's a long history to this song
he was a game streamer.. still is I think..
was featured on southpark.. that's how I knew about him..
he struggled with alcoholism.. you know how that's a hard thing in scandinavia and everything..
but he overcame that..
The song is about him vs T-series (a bollywood music label).. and how there was a competition between him being the top subscribed youtuber and the company..
the company has mafia roots and shady dealings, it had its start from selling pirated music and movies..
they have click farms too.. that's how they now have more subscribers than pewdiepie..
he put out a song called Congratulations.. to troll TSeries.. and it's now banned in India.. because Tseries is cushy with the indian government
please don't link this song.
I didn't.. lol
yeah. don't.
whyyy:o
you don't like pewdiepie?
I think it's nice that he's finally said something about major issues in my country.. hoping maybe some day if things change I can go back home v.v
um
just heard these Finnish band yesterday.. they're so cool
who doesnt like pewdiepie?
SIT MENNÄÄ!! Spotify: https://spoti.fi/2VEj9ZI Ohjaus: Santeri Rosenvall Kuvaus: Santeri Rosenvall & Aaro Nygård Leikkaus: Santeri Rosenvall & Aaro Nygård Tu...
Ence is a CS go team.. people used to be so mean to them.. but they beat all odds to become champions.. turning the troll chant 'EZ4Ence' into a cheer..
warning: very catchy song
not sure what I was expecting clicking a song for a cs go team
lemon is hard to impress..
😛
playing csgo after a long day always takes the edge off.. have yet to find something better
lemon is the ultimate music critic, given that he is a musician :P
naw, it's not because I'm a musician, I'd be a music snob even if I couldn't play an instrument.
it's just because I'm a big nerd with a list of favorite albums and genres that's longer than a bad year.
Haha, well, that's fair too
wow.. cool.. what do you play
I met a musician today.. a drummer.. something about musicians..
seems to be the theme of the day for me
What doesn't lemon play?
I mostly sing. but I play bass and guitar and I'm okay at anything with keys
I have a banjo, and a bunch of weird instruments that I've used but I wouldnt' say I play them.
check out Beardfist on spotify if you wanna hear some of the music I've written.
dinoman, such tiny hands

I would say that piano was my favourite instrument
But it's literally all I can play
was?
oh okay
it's copy tense
undo tense
Ah yes
The undo and redo tense are part of the indicative import mood and cut copy and paste are subj||unctive||ect mood
Ok
Whattt they used Python for the black hole image sooo cool
They used scipi matplotlib numpy pandas
nice
Cool
Also why is python used so much in maths?
Because numpy/pandas makes algos fast whilst being able to write fast?
Python's popular for non-CS scientific fields because it's easy to pick up, write and read for people from other backgrounds
The scientific / math packages are essentially APIs to internal functionality written in lower level languages
@rough sapphire hows that announcement worthy, its not something the vast majority of people (and I am just going to assume nobody on this server) is going to use or want to understand
why
sorry... guess I just thought it was more cool that other people
im very boring so I guess thats why
it is cool
yeah its cool but not really announcement worthy
anyways, why should we fork it because it has a GNU license whats so funny about that?
because forks are better than spoons
definitely
ill show myself out
on both of that
Nix will destroy us
the timeline hasn't caught up yet
nix is the single most powerful dinner boy in the entire community, guys.
exactly
I am not sure what a dinner boy or a bib is so I am not going to comment on that
hey a towel fork would be pretty damn cool
I have never had meat loaf 😦
i take it
yeah
put it in his mailbox
well this looks strange
😋
he's a serious dinner boy @wet steppe don't question his methods.
dinner boys are serious yes
a meat loaf is the most concentrated form of loaf.
and also of meat.
to create one, simply put an assortment of meat into a high pressure chamber.
cítation neeeded
I just gave you a citation
now wikipedia can refer to this discord message
here's the citation
you're welcome
this article has many errors
by the way lemon did you see josephs erotic literature masterpiece yet
@tame terrace
relevant https://xkcd.com/978/
@tired osprey no, joseph and I do not speak.
if I have something to say to him, I ping @worn kite and then @worn kite sends an email to @dusky orchid who sends a letter to @bleak lintel for me.
you censored the part about the children of 🇧 anos?
wtf.
why do you hate joseph so much
curse you perry . the platypus
fuck off i am not perry the platypus
nix i sung you the entire of wonderwalll last night
???
and this is how you repay me???
rude.
nix is such a dinner boy that this is the bib he uses when he eats in front of the mirror:
what is happening
yeah I can see that
he looks a bit like if doofenzhmirtz and matt damon had a baby
a manbaby
a dinner boy
that's an epic bib
when @tired osprey opens his meatloaf hole it's mouths all the way down to the god damn floor
when Nix wears a bib hes like 80% mouths and 35% bib.
just saying.
that sounds interesting
don't even sweat it.
where am i getting my extra 15 percent from
joseph is reworking my stephen hawking image
Ok
Nix, you pfp is cool and looks like a graduation photo from a german/french student graduating from mit
Mine is just a square
mine is awesome
Yours is a Rusty Gopher
And lemons look like he just got out of a barbers, very nomadic
Ok
This is a funeral of my feelings sir, please respecfully leave
it's lava
Exit is behind you
i spent . an hour modelling this
I agree
Wholeheartedly
I remember a little snippet of rick and morty with a security guard being annoyed about someone cutting power to some electrics
Really, really familiar voice but I can't find it
It was like a parking area security room and it was a black dude, avg build
Yup
It isnt the mailman on the scamming episode in season one fyi
Not this one https://www.youtube.com/watch?v=I04OIfbBrTg
MY MAN! From Rick And Morty Season 1 Episode 4
@vestal briar thats not what I meant, joseph photoshopped an image of my face on stephen hawking a year ago or so but he lost it and so he made something I am just not going to share here now
I know
But it's vaugely related and I am sleep deprived on the tailend of a sugarhigh now
I can see the pixels in my screen
Gray makes the edges go white
unliekly
👍
I am currently stearing into my screen and it hurtd
That's better
Had it on 70% brightness in pitch black
So I actually wanted to learn for maths tomorrow / today checks clock yeah no Im not gonna sit down for 4 hours after the amount of sleep im gonna get
ask joseph or somebody
sounds like a joseph hting
why on earth am I getting commercials for universities I never checked before for subjects I never googled or was interested before
Because they are again doing vague stuff to hit a thing
Then use that thing to attempt (and fail) to make a convosation
yeah no not gonna catch me with psychology
Tut
if I wanted to study psychology i would have to have an average grade better than 1.2 aka cared about studying psychology 2 years ago
i dont think so
that 1.2 rules is just for germany
well
bavaria its easier / harder in other states
a question my mom also asked my father
Also I was gifted a £60 projector because I am the only one with a clear, white wall and I never use it
1st world problems
definitely
I dont need it anyway ¯_(ツ)_/¯
Things I don't need:
- Rackmount server (free)
- Lockpicking set (£15, present)
- 3d printer (£200)
- Projector (£60, no sell, present)
- Xbox one (£120, no sell, present)
- Half a gaming pc (£200, selling atm)
I can get a server for free
I brought for £120 using spare money but wanted a replacement because one of the psus died before it was even shipped
They just refunded the entire thing for some reason, probably it was selling with tiny profit margins and it costs more to replace
So free, slightly unstable server
my sugar rushes are usually sugar crashes at the same time. i remember once in a physics lesson my friend gave me loads of sweets and we were hyper as fuck. then i grabbed my water bottle to get a drink and to my dispair i noticed that it was empty. i cried so hard over it for about 5 minutes, then got hyper again afterwards. :D
Ok I think thats more than just sugar
I had 10 jaffa cakes, half a sharing bag of star bursts, like 3 crisp packs and 1/3 can of pringles
Also a can of irn bru
god i can't stand starbursts. my friend is scared of the red ones because a red one caused her to lose a tooth. not because she was chewing it, but because it had been in the fridge and thrown off her face. don't ask me why, i don't know either.
though the 10 jaffa cakes sounds absolutely spot on 👌
Not so nice and nice :P
I am going to sleep now
I have really crashed and it's like 20 to 4
sugar rash
hot pythets
Ok thn
Well I have done backend for postgresql
Now time it figure out how to do postgresql with ubuntu (setting it up with user accounts etc)
Will to later/tomorrow
does anyone here speak dutch?
Yes, a couple of people here speak Dutch (including me), but this is an English speaking server
:) im aware, i need some help with translations
@oak tangle u dont mind me dming u?
2 mins
Sure
:)
What's going on peeps
Oh I see nix was shitting all over people after my black hole post that's nice good way to keep the new people here ffs
Did he?
Yeah appears that way
I dunno get me on a bad day ill make that school boy cry back to his mommy
Anyways as for forking that black hole image repo , I know they made their own frameworks for the Image processing it may be useful in other use cases but it's hard to say sop..
I was suprised they used an open source license for it
Oh yeah academia always will
So what did they use apart from python?
That way people can use their project for other things
looks like Python is taking over ground that R once had
Yes and matlab too since python is free
oh yeah those matlab licenses are like 1k each
Yepp super expensive
Javascript has pretty good plotting and stats libs now too
Their is a really cool talk python to me podcast on that actually
I don't have the attention span for podcasts 😦
That's too bad I love podcasts I listen to them all day
A good website for?
Podcasts
Ohh yeah what are you looking for?
Programming
Probably
I think there is a gnome-made thingy I seen when browsing gitlab
Well talk python is good for sure then I like code newbie base.cs command line hero's security weekly and developer tea
Hmm maybe ask known or Scott to see if they know any good ones like that
And nice, the gnome podcast app is like 98% Rust
Python Bytes is good too
Cya 👋
Ah
I accidently gone on a mormon website
I was searching websites to get feeds and it is the LDS
Ooh this is fancy
sometimes jehovah's witnesses show up at my door..
there is one street between my house and a jehovahs witnesses center and 4 churches
one street
im not really religious.. but one of the girls is cute.. Im weighing whether to go or not :v
like.. not a jehovah's witness.. but they show up and pass flyers asking you to come to meet ups and stuff
every sunday.. lol.. people in my apartment building dont even open their doors because they know
@rough sapphire They do that with literally everyone. When I was younger I worked at a carpet-cleaning company that was entirely staffed by JW followers, and they tried to get me to join as well.
They are 1-2 notches below a cult, whatever you want to call that particular level lol
You aren't allowed to accept blood transfusions if you follow it, can't celebrate any of the major holidays, including your birthday.
since that's worshipping yourself (or someone else) as a false idol
wut.. my birthday is the greatest good you're ever gonna get
just coopted a line from the incredibles..lol..
but I knew about the blood transfusion thing.. scary stuff
yeah, so if you were in a traumatic accident, you're SOL
stupid stuff...
sol?
poop outta luck
ahh lol
well I've seen people in cults.. think it all comes down to will power.. some people are easily susceptible to that sorta stuff..
makes you wonder, the lengths people go to feel like they belong
I don't fully understand it, but I suppose to fill whatever void you have, there is no limits
the same goes with politics.. how people dont oppose ideas if 'their group' tells them whats what..
yeah..
most people just want to be accepted at the end of the day
not many people don't want to risk getting ostracized over their opinions or thoughts
its safer to just fit in, at the expense of many other things
it's because they dont feel comfortable in their own skin.. they need a group to dictate them their identity.. they need to realize that it's ok to be uncomfortable and thats when you grow
yep
I think we're both on the same page here lol
IMO, that's just part of growing up
and becoming who you are
second time i've mentioned it here, but the above is exactly why the Desiderata is one of my favorite texts.
it's a poem?
yeah
I remember when my grandpa died, a few days before it happened we visited him in the hospital. He knew it was coming, as did we. He wasn't sad at all, he just looked very angry. He spent a lot of his time watching TV and not doing much with this life, and we witnessed him realizing his life was ending and his opportunity to live his life to the fullest was gone.
so for my sister and I, it was like yeah.... you just have to go for it, and not care about the beaten path in life. do what you were meant to do.
they too have a story that's pretty cool.. I say that every day to people.. lol.. but something like "everyone you meet knows something that you don't"
regret is poison..yeah..
I'd rather be dead than a 80yr old man full of regret, I saw it with my own eyes
with that said, I'm getting some exercise, ttyl
Nurture strength of spirit to shield you in sudden misfortune hey pretty powerful stuff there.. for me this is what gym was about..
cya later man!
yeah same man, it feels good to take care of yourself. I do this jogging/pushup/sit-up routine, and it looks like its about to rain, so I want to beat the storms lol. cya
yeah, the Desi (as i call it for short) is pretty spot on, especially for how few words it has. speaking of Grandfathers, that's where I learned of it. He had made a plaque with a copy of it (paper-laquered-to-wood, and singed with fire).
it hangs in my bathroom, so i see it every morning.
cool.. you know it's a domino effect.. how values like this are things that get passed over and perhaps there's some solace in that..
@rough sapphire depends
all religions start as cults except one of them maybe
Between Christianity and Islam, one is a cult, for sure, or maybe both
because someone is lying
Who's to say the Jehova's aren't correct?
correct in what sense?
But yeah jehova's bring cute girls to get people to join their religion
well
Islam and Christianity cannot be simultaneously true
someone is lying
Same for hinduism, buddhism, etc.
is it lying if you don't know its a lie?
It's still a cult
a relatively small group of people having religious beliefs or practices regarded by others as strange or sinister.
every religion at one point fit this definition
every religion has its extremists..
it's not about extremists
every religion was a cult
doesn't matter if they were extremists or totally peaceful
nearly everything can apply as a cult then, since you just need a small handful of "others" to regard it as strange or sinister
If I started a religion rn
and I was the nicest lad
and all my cult followers were super nice
we'd still be a cult
nah cult has a religious veneration or devotion aspect
does the definition rely on someone else to consider it strange?
yes
like
romans thought christians were just crazy jews
and they were kinda right
from an objective point of view
my point is that
the Jehova's are from an empirical point of view just as valid as any religion regardless of strange practices
because we cannot prove Islam is true, nor that Lutheranism is the correct form of Christianity
you are simply guessing
I guess its all relative to your own experiences and culture, that measure to what degree something is more strange than something else
relative yes..
for one, cults won't admit they are one..
Yeah, let's not get into discussions on religion here.
Abrahamic religions that came to Europe regarded European paganism as false and killed people for practicing it
I'm going to have to ask for the subject to be changed
Such as Judaism and Christianity
but regardless
my point here
eevee says we can't talk about religion..
is that if we remove your subjective preferences
the Jehova's are just as valid for now
!warn 551207643092353026 Don't just continue when I asked not to continue.
:incoming_envelope: :ok_hand: warned @rough sapphire (Don't just continue when I asked not to continue.).
I was finishing my sentence
I don't care
I didn't even bring them up
I don't care
🤡 🌎
you know they completely changed eevee in the new pokemon series..
in the Japanese version, they make it look all timid.. but the American one just makes it look annoying.. very strange
yeah.. have you seen the new episodes..
let me see which series..it's the one where he travels with Serena..I think
Nope, I haven't watched the Pokemon series since I was a kid.
well that wouldn't be good for the series, I expect
since that's ash's aim, and it would end
lol
lol.. well it upsets the fans.. you know.. like we're rooting for him as he goes through the league table.. and he's almost in the finals or semis..
and boom
beaten by some side character we'll never remember
lol
Sounds like an apt description of life
At any rate, I only play the games. So I beat the league every generation 😛
I think that's the reason they keep the series going.. to sell the games and merch..
but heroes need a happy ending :v hope they at least let him settle down with a gf
lol
pokemon s1/2 was pretty metal
What are you talking about? The best Pokemon trainer, James, gets happily married
lol
Ok
Anyone know how to fix little popping/crackeling coming through the left speaker?
I am on ubuntu 18.04 and it is all digital
If I turn the digital input off on pc, it stops
Any possibility of electromagnetic interference from something else nearby to the speaker or speaker cable?
Nope
(╯°□°)╯︵ ┻━┻
Is it just me or is this an unusual way of getting an auth token https://vendor.net/json/GetAuthToken?username=username&password=password
like I know it's https but what about my browser history and their server logs?
I've seen it before
Don't do it with your browser I guess
XHR doesn't tend to write browser history
I actually did test it with my browser, but in incognito
Does anyone know a good website with challenges to train my python? Or maybe another way to exercise.
CheckIO and hackerrank come to mind, as does Project Euler for those more mathematically minded
best way is to repeatedly make small projects
I think this works a lot better than things like Project Euler
I also like making small projects more but I fear my creativity is kinda 0
there's a big list of projects somewhere on here
You can do advent of code all the way back to 2015, they have some really fun problems
They also have a little bit of lore to motivate you
Thanks I will look into it
you could do the early project euler ones and then quit when it becomes super hard
I should look into Project Euler too, I was browsing their website yesterday and it turns out some of the harder problems were only solved by roughly a 100 people
So I'm tempted to give it a try and fail horribly
its okay if you like number theory
but that's all its good for really
it's bit too mathsy to be an effective language learning tool
Make a bot, and add features to it - easy way 😃 if u see something u like on another bot, try adding it to yours
Maybe even try adding call stuff
discord bot is a good way to learn yes
oh hi let me just go ahead and insert myself into this conversation.
okay