#ot1-perplexing-regexing
1 messages ยท Page 201 of 1
was implying past tense
who was
if u dont play league and hearthstone simultaneously its not even worth calling yourself a gamer
lmao
im on my alt
{"asctime": "2018-07-07T07:14:17Z+0300", "name": "geventwebsocket.handler", "processName": "MainProcess", "filename": "handler.py", "funcName": "log_request", "levelname": "INFO", "lineno": 242, "module": "handler", "threadName": "MainThread", "message": "127.0.0.1 - - [2018-07-07 07:14:17] \"GET /wiki/home HTTP/1.1\" 404 8705 0.016953", "timestamp": "2018-07-07T07:14:17Z+0300"}
I'm so sad
wait are we sharing screenshots?
good morning
no
oh ok
Oh, I remember that ticket
I wasn't a fan of their response
I mean you should know how your application is structured
But whatever I guess
I'll have to rewrite swathes of the site if we're gonna use flask 1.x
we could use ed
ed, man! man, ed
yeah just get Ed to do it
we would have to rewrite a lot of it
there's ed scripts?
we have a lot of things relying on url_for
including things that are actually data - eg, the wiki articles
@ebon quarry you can write your ed commands to a file and pipe them into ed stdin yes
sounds like going through a single CTRL SHIFT F and changing some shit
woah there
So I can write like
1d
s/hello/world
To script.ed
I would rather patch url_for and the registration functions in the superclasses personally
but that'd probably break a few other things
what
and pipe that into ed
that sounds like some mad scientist shit
can't we just use dashes instead of dots? :/
well it's either that or redo a bunch of articles, the code jam stuff..
I think they recommended slashes
but whatever we do, it's gonna look bad
slashes seem fucked to me
we are going to fork cpython and make a new builtin for preparing urls
We will get the speed benefit of C
cpython already has that.
way to go and crush my dreams
I think I'm using dashes in my other applications
it should be consistent
which are flask 1.0
but flask has made it impossible to be consistent
yes so consistently use dashes.
it doesn't matter what you do, the blueprint and route have to be separated by a .
Eek
so yeah we can't be consistent lol
that is not true.
it's in the ticket
it might be in the ticket, but it's not true.
how do you refer to a blueprint, then?
my blueprints and routes in portal are separated by dashes.
as I understand it, that's how it'd work, yeah, joph
interesting
do you have more than one blueprint lemon?
yes.
but I mean where exactly are you saying this needs to happen
because you wrote the code that sticks the blueprint in the name
it's in RouteView.setup()
cls.name = f"{blueprint.name}.{cls.name}" # Add blueprint to page name
so change that dot to a dash
aaaand your'e done.
for what matching. it's used in url_for
because in logging and a bunch of other places it doesn't show the blueprint most of the time
but it's registered before I add that to the class
flask doesn't use that attribute at all
it does use it in url_for
hold on, let me open pycharm
because all my portal url_for's makes use of that fact
blueprint.add_url_rule(cls.path, view_func=cls.as_view(cls.name))
we are supplying the name.
only after that is the line you gave
and strings are immutable, so it's definitely not using that
name is a required param
honestly flask's class routes are a big hack lol
but that isn't our problem
if self.url_prefix is not None:
if rule:
rule = '/'.join((
self.url_prefix.rstrip('/'), rule.lstrip('/')))
else:
rule = self.url_prefix
looks like they prefix it with a /
not a .
which I guess is why they recommend using slashes in the names?
afk sorry, gotta go shopping
oh wait no, that's not the thing
there's a '%s.%s' % (self.blueprint.name, endpoint) in here too :/
okay fine
personally though I actually think wiki.some/page looks fine, possibly better than wiki/some/page or wiki.some.page, but if we wanted slashes or whatever we could monkey patch it fairly easily
I like wiki.some-page
actually now that I'm thinking about it
wiki.some/page feels more fitting
the relevant function to monkey patch would be flask.blueprints.BlueprintSetupState.add_url_rule
because we have subdomain and endpoint
yeah I can live with it
it's just changes
and I don't like that flask decided to only break that with 1.x
what are monkey patches?
http://twitch.tv/beehivekay - Cooking up some delicious food! Sea bass with mediterranean tomato and pepper stew! Live in 5!
FYI
Since some people here could be targets
cryptocurrency fans
malware
๐
Of course, the code has to overcome the common sense of the victim as well.
well that's usually not the problem ๐ค
lol
hah
Ayyy you look cool there
that's because i am fucking cool
whats your problem
should watch the stream if you think i'm cool fyi

http://twitch.tv/beehivekay - About to cook the god damn pinnacle of this dish, the fish. Gonna cook the fish dish in this shish. Tune in.
FLAT VS GRIDDLE, THE DEBATE IS ON http://twitch.tv/beehivekay
cool and good
penis
Like 4 or something
24 pack of IPAs
One of the bottles is smashed but quite dry
The box was glued shut
There's gotta be a story behind it
nice
Did one of the factory workers enjoy a cold one?
So many questions
A mystery that will never be solved...
what you need help with bud
i just solve problems and i cant do them
and when i finally give up and see the solution
it is so complex or either it is so smart
that i could have never think it that way
๐ฆ
@short oar we all feel like that sometimes
but the intuition for finding such solutions comes from being a programmer for a long time
you definitely do develop a certain mindset that makes finding these things intuitive most of the time
but these tricks and things how do people think about it
i cant even imagine
and how do i get good at it
For example?
for examples
"tricks" things?
So are you talking about pathfinding algorithms?
short ways?
I don't quite follow
@short oar sorry
But pathfinding algorithms are more... math and logical thinking
I guarantee you people didn't come up with most of them
they thought really long and hard about them
probably much longer than you assume
Also some of these problems are easily solvable using recursion techniques (I think) you might learn when attending a university
in real life programming you don't use algos that much rly
@short oar can you show a small problem where you got stuck?
like this
one
@late acorn
Let me check
=[]
for i in range(0,N):
lists=[int(i) for i in input().split()]
grid.append(lists)
count=0
sum1=0
sum2=0
j1=0
j2=N-1
while(count<N):
sum1=sum1+grid[count][j1]
sum2=sum2+grid[count][j2]
count+=1
j1+=1
j2-=1
print(abs(sum1-sum2))```
and i unlocked the solutions
but couldnt understand
@short oar that's a problem that's not logically hard, it's not hard to understand the core task. What is hard, translating this concept of what you have to do "in real life", into code. And that is exactly what I called the programmer's mindset
It really gets much easier and more obvious, the more you work with data structures/control flow mechanisms etc. in Python
how do i get that kind of mindset?
ok so basically i study more
practice
and program more
ye
try figuring out nested loops, how you can access indexes and slice them, how you can index nested data structures etc. All these tidbits of knowledge will automatically come together at some point, and you have just a vague sense of how to solve the problem most of the time
I unfortunately can't comment on it. I assume this book is probably pretty complex and won't do as much to help you, as programming your own projects would
But sure, definitely try
as I said, I don't know the book
I see
regarding your problem: try to think of it this way to arrive at the conclusion yourself
You have a 2d maze
you know you want to index certain elements as coordinates
(1, 1)
(2, 2)
(3, 3)
you can see the pattern, you know you have n rows and columns
yes
now you just put that n together somehow with the required pattern in your head
Finding this approach to think about the problem, comes with practice
by solving similar problems
but i wont give up
Just like riding a bike
good!
i hope so
yes you shouldn't
programming is and can be very rewarding
and you can make really cool tools/utilities in Python
It will school you in thinking logically and seperating complex tasks into smaller, simpler ones
There's really only advantages to it, if you ask me
hey @bleak lintel, isn't this the best ruins dungeon music https://youtu.be/WrJFBmxHXuY?list=PLzFTGYa_evXiaNTcPSfBgbzTBTa2RsWzd
Music: Plop! Goes the Whirling Wizard Composer: Falcom Sound Team jdk (Hayato Sonoda, Wataru Ishibashi and/or Takahide Murayama) Album: Gurumin Original Soun...
lol
I actually super-love this game, but it's very weird
absolute donk and a half gdude

there's a coin slot in a fireplace in a dungeon
it eventually asks you to put a million coins into it
and then you get a maid outfit
what does it do? nothing
lol
It looks good, you scoundrel
this is a game where gear matters though :P
Fashion always matters 
haha
haha
but yeah I love that game
so weird, but pretty good
hey joph, rainbow coloured phantom can't swim
Music: Rainbow Colored Phantom Canโt Swim Composer: Falcom Sound Team jdk (Hayato Sonoda, Wataru Ishibashi and/or Takahide Murayama) Album: Gurumin Original ...
i am so confused
tetris
tetris?
not as old as tetris
did you see the new tetris for ps4?
oh no
is it like fucking peggle or whatever that way
ruined pinball for literally everyone
it wasn't pinball
but it ruined it
here's another odd one, lol
Music: Under the Sky Composer: Falcom Sound Team jdk (Hayato Sonoda, Wataru Ishibashi and/or Takahide Murayama) Album: Gurumin Original Sound Track Playlist:...
:P
@bleak lintel all I have to say to that is
WAAAA
WA-WA-WAAAA
WA-WA-WAAAAA
WA-WA-WA-WAAAAA
I was very confused when I got to the stages with that track
wut
Ah, it's by Michael Lucas
Of course
I got git commit --murder a few weeks ago, on my list to read
Wow
things that make me drink
Erotic technical books...a new genre
Yeah, that was something that Iโm not going to be able to unsee
draw the outline of a number 5
How does that help with tiles? ๐ค
Golden Corral?
i can link you a python repo that solves captchas
Unless it can solve recaptcha which I doubt
I don't think it would be useful at all
yes it can
Answer those questions two and at a solution you will surely arrive
I still am gonna doubt it
Since there are people farms for these which consist of people who work for 5 cent / hour
It is actually:
screenshot()
if there is a captcha checbox:
click(get captcha checkbox center location)
the images can be solved automatically too but requires a database with all the images
or ml / ai
you don't need all the pictures
you just need loads of similar ones
What's this?
Ah lol
No
๐ค
i really need to set up full disk encryption for my pi's sd card
yeah the issue is kinda that the rpi's io speed to the drive is pretty bad
hmmm
well I don't transfer that much
i need to set up disk encryption though
my backups are encrypted, but if I add samba the drive won't be encrypted
in the amazing 1 GB of memory on the rpi? ๐
do you know any good crypto "mappers" or whatever the name was again?
or well, recommend
No
Also my knowledge of crypto tools isn't the greatest anyway
Good luck and godspeed
thanks :P
so what methods have you guys used?
ive used the fastest out of them all, finding the captcha and then slooowwwly randomly moving towards it
No?
Well it has a delay
So you can't brute force
Whether there is a limit or not
@prisma gust no, it works great and never has to click the img because it doesnt act like a bot
it does take ~25 sec +- depending on the starting pos but other than that it works great
my implementation in java got updated
public class Nix extends Human implements Definer, Unix, Nothing, Crazy{
public String define(String toDefine){
if (toDefine.equals("bed time"){
return "Nix defines his own bed time fuck you";
}
else{
return "I dont give a shti";
}
}
}
please teach me, how to give a shti?
that is a joke from the first time i implemented myself in java
it should make a sound like that wrong-buzz from quiz shows every time you hit it and make a mistake
...
i've seen the "normal" giant enter key, but it looks like that's a plushie version?
the one i saw before looks like this
๐ณ
it's for people who really slam down the enter key after accomplishing something or if they're pissed off at someone they're chatting with
btw facebook needs a delete message feature
for when you accidentally send your crush hey
elon really needs to get off of twitter
ive brushed my teeth for the night, and its almost 2am, but i really wanna have a burger but dont wanna brush my teeth again cuz im lazy
is that ok?
the burger is literally downstairs, gonna eat it and then go back to bed
Probably, just dont make a habit of it
morning ๐
There are videos of all of runeys streams on his twitch afaik
๐
Yep yep
@ebon quarry Working on it now, last night I was a bit drunk sorry ๐
lol, don't worry about it
I know I'm a bit slow, sorry again :(
was just wondering
which jetbrains discord integration do the people here use? the one with 10k or 13k downloads?
Neither, I prefer being able to show spotify
or is it just goland that doens't want to work with either ๐ค
well I don't use spotify and mpd-discord-rp also doesn't really do as advertised...
RPC is a touch flaky, I think
alright let me try pycharm
Thats just discord telling you that it doesn't want you embarass yourself by showing you working with Go
nah, it also didn't do anything in pycharm
maybe it's just that drp is fundementally broken on linux ๐ค
do you have the thing enabled in discord settings to show your game

ok
sec
bruh
really just that one f'ing switch
god damit
now mpd also works

No
lol
Whatโs the best free lance site
Let me know if you find one lol
shall I make a bot in js or python?

Node
yes
got banned from the biggest creative minecraft server hosted by the bigget people in that industry
hmm
what ever i was banned on 2 discord guilds for the same reason lemon wanta me out of here
i feel you man
Refresher:
When I do something like, qty = item_qtys (where item_qtys is a constantly updated list) does qty at the end of operation reference the updated list?
Yes, right?
Okay that's what I thought
Almost done with one of my projects at work and these final few things are hurting my brain lol
People eat raw eggs right? Like iโm not gonna die if I didnโt fully cook my omelette?
you are already dying
:/
salmonella is rare in eggs in most developed countries now.
like, 1 in 10,000 in the US
Ok good
before you die
I know someone who had a hoodie with that on
"the yellow part"
tastes worse than semenal fluid
there's a word for that
yokel was slang for a rural person or farmer, right?
yoke is the all encompassing word for a thing that you cant be arsed naming
that yoke over there
that yoke over yonder...
My dict suggests that a yoke is that thing you put over the shoulders of an ox so that it can pull stuff though
Sure the quear yoke "Joseph" is not here
A yoke is a farm implement, meant for pulling
๐
As far as the colloquial usage he's detailing? never heard it here in New England area, or PA
@humble scaffold I am here
why u @humble scaffold ?
yes
good meme
pro here
I used to play Everquest (and FPS) with the direction arrows
due to lack of space for a mouse on my desk, lol ๐
Then I stopped being awful
mousewheel > touchpad
mousewhale
@humble scaffold what are people that use thinkpad nipples though? ๐ค
If you've got an expensive mouse with a heavy wheel that you can just spin and it will continue, then yes
@rough sapphire pervs
bruh
ooh think pad nipples
Dell has them in blue
they are really hard to game on id say higher than trackpad but under ball mouse
im gluten intollerant and i ordered a 16" pizza
o o f
Yes
that leads to arthritis
Carpal Tunnel is a form of an RSI
let your cat chase the mouse instead
probably because i use my wrist
but seriously, a coworker e.g. has some kind of "pillow" attached to his mouse pad, where his wrist rests on, which relaxes his arm
and supposed to hse elbow...
I hold my mouse with my thumb and ring finger alone, all movements are small
My entire forearm is lying flat on the desk
So it's not arched or stressed
also think of the overall position you're in, including chair and desk height, etc
Yes, like I said, lots of variables.
and do some stretching of the arm for a minute every now and then
elbow is supposed to be 90ยฐ or something
I'm 33 and have no signs of developing it even with as many ungodly hours of gaming/work/school
But that's more luck than intent
ya im 28 and ive had many days of 18+hrs of pc
is that more then 18 hours, or "18+"-hours... 
its 18 hours and more
lmao
y not both.jpg
so many kiddos on the internet these days o.o
anyone remember this: https://www.youtube.com/watch?v=R3CSZSUkjs4
This song is stil very good
https://www.youtube.com/watch?v=UWQquYjyRXY I am romanian and I understand the lyrics but here is a translation
yaaaaaaaaaaaaaaaaaaaaaaaa
that takes me back
python is a scripting language so you do you single character variable declarations
good morning



single name variables are useful
especially when u r making game with 1024 or so bytes for challenge or y know
โค code golf
I have never played one ๐ฆ
code golf is the only thing they are useful for
whats code golf?
essentially it's solving a programming problem in as few characters as possible.
like code in game?
clash of code
theres a website for it
your answer can be in a range of different languages
no
i mean, that clash of code thing sounds interesting
but code golf is just generally reducing something to the most dense format possible
yea the clash of code thing the winner is the smallest
for example:
print('\n'.join("Fizz"*(x%3==0)+"Buzz"*(x%5==0) or str(x) for x in range(1,1000))```
is a fizzbuzz one
looks fake
that's not even that golfed
yeah, it's not
bet you could do it in half of that
hmmm
I mean, someone here probably could anyway
tbh by using the join and shit it's probably not as good as just
for x in range(1,1000): print('fizz'* etc etc```
that's probably less characters
@lone otter has been known to golf a few things too
where is someone
where is the turkish someone
what did you do to isik kaplan
oh he was kicked
i see
looks like he was muted, then kicked, then rejoined and then left.
oh no
All the Turkish people have left us
turkxit

Carrรถt
The only friend I've made at school is Turkish
Was a random tidbit from a conversation a minute or two before lol
tied?
aww
I remember saying that 
does what need?
welcome to java
mc server 1.12.2 on docker

guess i'll use cuberite
@ebon quarry at which point will you stop crying about memory usage of modern applications which automate lots of stuff for you for which they need memory
in what world do any of the three terms you mentioned have anything to do with my question lol
nix
i have 500 mb available
fyi minecraft is actually shit when it comes to resource allocation
Especially if it's modded
unless java is loading in 500 MB of memes, it shouldnt use that many ๐ค
At one point for an entire update they had a 200mb/s memory leak
Minecraft should've never become popular because like
It's notch's baby's first codegame
The code is likely eldritch in nature
@ebon quarry if you're going to make a minecraft server
Plan for at least 4gb memory
Modded, more like 12
wew
Hell 4gb for unmodded is a really really conservative estimate
i'll just use cuberite
I remember I ran a really really modded mc server on a webserver and
There was 32gb available
It used up unironically 65 percent
And peaked at 80 percent usage
It was actually horrifying to behold
tfw dumb 32x32 pixel game takes up more memory than crysis
Hell is it even 32x32 or is it 16x16
it wont run if you give it too much
i can give its half of mine.. 16 but i gave it 20 one time and it crashed opening
Morning WrongEnd
MineCraft is one of those "wow, how does this even work" things
Anyone watched antman and the wasp?
Mornin rune
Hello guys
I can't run perl scripts using the #!/usr/bin/perl in my arch linux because the path do not exist
Even tho I installed perl package
Can somebody help me
Arch is doing you a favor right now. You just donโt know it yet
Apparently nothing works
@bleak lintel
It's a module for i3blocks
It had a prefix for a perl script
type where perl in your command prompt
/usr/bin/perl
you can just do perl script.pl btw
Ah it's another thing
oh, where does work on arch actually
it still sounds weird though
like WHERE PERL!??!?!? as opposed to, which perl?
lol
that's not an executable
but yeah
so yeah, not the same thing, and where won't work in bash :P
which where
Which which
use type
type is also a zsh feature
๐
which $(type which)
that won't work
ฮป which $(type where)
where: shell built-in command
First Gdude took the meme channel. Now heโs taking Josephโs fun
is this what the 80's sounded like
I think if someone heard a bit
they wouldn't catch the rude word
it sounds like "dooloomerang"
I was more worried about the fact it is 00:15am and everyone here is asleep kek
Who is everyone JoJo
whats jojo
Jonathan Joestar
bring back daddy seph
does anybody know a good piano song to learn
What level u at sorta? @rough sapphire
And you want like a classical song or modern music? Or a specific style?
@rough sapphire Gwyn's boss theme from dark souls 1
The Music of Dark Souls Composer: Motoi Sakuraba Track #22 This soundtrack comes with the Japanese Collector's Edition. All Dark Souls material belongs to Fr...
๐๐
A tip with tracks like this, you can always just search gwyn lord of cinder piano sheet music and use the first musescore result or something similar
But sometimes, searching it on YouTube is better (just piano, not piano sheet music)
And find someone that plays it how u like
And usually they have the music in the description
is there any way to make vim on ubuntu highlight python data types, brackets etc? I'm new to vim
@earnest shell you might have to search on how to install the plugin
Or use sublime instead
๐ ๐
is sublime better in your opinion?
๐
vim keybinds are the greatest
yeah I like the command mode vim offers
couldn't write code without them anymore tbh
well, if you know about it, it's super comfy
are you a vim user?
vim is for survival users
another question - does python on ubuntu not come with tkinter? I ran sudo apt install python3-tk but I still get an ImportError
@tired osprey well I use vim itself just for quick config edits, but I have vim keys installed on pretty much every editor I ever used
I use nvim btw
btw I use arch
I use zsh and arch btw
lol

i use a tiling window manager btw
I use gnome btw
smh
๐
burn it with fire
yes
it being jason and win10
โค

I am not woke
HI JOSEPH
I just got back
so no tkinter with python, then?
๐ค
from earlier: does python on ubuntu not come with tkinter? I ran sudo apt install python3-tk but I still get an ImportError
I don't use ubuntu
yeah, good idea! cheers
You know where to find it right ?
yeah it's on the subreddit
๐
hello guys i'm using this module i found on the net for my i3blocks bar
while testing it in a shell (zsh)
doing sh mediaplayer
I got this output
mediaplayer: line 25: syntax error near unexpected token `('
mediaplayer: line 25: `use Time::HiRes qw(usleep);'
I verified if Perl was ok and didn't find any explaination for this issue until now
does anybody know how can I solve this? I also checked Perl path using where
it's ok
so i'm kind of stuck rn also because i don't code in Perl so I do not have knowledge...
@rough sapphire why did you do "sh mediaplayer" if mediaplayer is a perl script
you got the error because you ran it with sh not perl
hey, can someone recommend the number of gigabytes I should give my just coding arch setup?
42
understood
but really, unless you install some humongeous stuff like idk, an android development suite or so, that should be enough for the system, some IDEs and general tools and you projects
more is of course not bad, if you have the space.
it's only python, vscode, node, and a few odd things
no android studio or intellij or anything
I'd say 10 is bare minimum to get it the system running properly, 20 to be usable for a while unless you do fancy stuff, 40 should be fine for a normal hobby dev setup
But if yuo can give it 60 or 100, that's surely better. One can't have too much space.
I wonder if there is a higher read latency with a higher capacity
ฮป ip neigh
192.168.10.254 dev wlp2s0 lladdr it:is:a:mac REACHABLE
192.168.10.100 dev wlp2s0 lladdr it:is:a:mac REACHABLE
192.168.10.110 dev wlp2s0 lladdr it:is:a:mac STALE
192.168.10.113 dev wlp2s0 lladdr it:is:a:mac STALE
I was also never informed arp was being retired for ip
thanks @worn kite got ubuntu installed and all programs working. 42 gigs is working perfectly
๐
I now have 3 oses installed on my computer lol
arch, ubuntu, win 10
Woah
it's amazing what you can do with 3tb lol
naa I use all of them
windows: gaming, ubuntu: most other things, arch: c and c++ development
it works well
why not dev on Ubuntu?
Lit ๐ฅ ๐
I do most dev on ubuntu
You should get Kali 
it's only c and cpp on arch
but why ๐ค
can you not c and cpp on Ubuntu 
I can yeah
I just find arch quicker compiling for some reason
also I feel cooler using arch 

yeah
it is less cred and more meme value
I am less likely to use Arch just because of how often I hear it
I'm fine with Ubuntu
It does give some cred, but there are real advantages to using a rolling release distro, and also in using a distro that isn't RPM/DEB based
the best reasons to use arch are the stellar package management, and the fact that it's so minimal that you end up with a distro exactly suited to your needs
ubuntu is fine, but don't expect it to work forever
I know enough Linux to be able to use it, manage it, and not care about it right now lol
Dependency hell will come for you, just as it does with every debian user :P
and then you can move to something a bit less silly
The only other distro I use for my classes/field is Kali
just because it's purpose-made
(and rolling live)
Yeah, I mean, setting up all those security tools can be annoying
then again, you probably don't use most of them
lol
I don't
I am not anywhere near that point in my career
It's a strange field to be in. A lot of what you do can be highly illegal, so finding how to do things isn't as easy
Just donโt get caught.
that's a good thing to say for basically anything
I mean, over the early years I've almost unconsciously tended towards telling the employer what they really want to hear
I'm a security major with very little real experience in programming, but I beat out programmers about to graduate their 4-year B.S. because I didn't inflate myself
this is especially true in some cultures, for example Japan
I was told that's why I was hired, but who knows if that's true
there are companies that connect with you on a human level and recognise that it isn't only them hiring you, but you "hiring" them
but they're few and far in between
and often, without solid experience under your belt, it's difficult to stumble upon them
This is my first job in the field
I feel extraordinarily lucky
They let me work. No one on my back
my first job was very shitty and I wasted too many years on it
Gave me a project and said, "tackle it."
now I can have the luxury of getting spammed on linkedin as soon as I put myself "looking"
I wish
you will. I've 10+ years in the field :]
I hope this internship really boosts my career
I'm just now getting in at 33 years old
I'm an old fucking man compared to these kids graduating at 21/22
Hm, I'm 2 yr older than you but I think nowadays as long as you can keep up to speed with the mind blowing pace of changing technologies, age won't really matter
and maturity can be an asset rather than a downside, for the company who can recognise talent
I think my ability to function as a human being and not an, pardon the "slur", stereotypical autistic computer nerd
really helps
being older also helps you manage stress
it can be assumed that most likely you won't crumble as soon as a project goes awry
nod
I just wish I had made the hard move of going to school full-time years and years ago
But working hard in a warehouse was just "easy" to stay in
Working for a shitty 4 man company was "easy" to stay in as well, friend
I didn't suffer through physical labour like you, but we could say it was the "warehouse job" of IT
It's finally paying off. Quality of life is astronomically better.
We have a gym here, showers, lockers, cafe
I can come in whenever I want
Leave whenever
that's cool
Getting paid more as an intern than I did working my ass off
getting paid as an intern is already good enough haha
I have an officespace to myself larger than my bedroom
in my country [of origin], lots of people are forced to do internships for free to gain experience
Which is an artificial gate to people already rich enough to work for free
well, it's either that or warehouse work if you want money. Or both
my country is also notorious for having "kids" living with mama and papa until the 30s
so the vicious cycle feeds itself
anybody uses i3blocks here?
they can do internships for free because their parents support them, and their parents have to support them because they can't find a paying job without experience
๐
not being paid for internships
sounds like the US
well except for engineering, engineering internships pay well in the US
i feel like there's no meme / shitpost channel.....
yeah. there isn't.
welp
although the occasional meme in offtopic is fine of course.
they can be conversation starters.
and conversation is good and also cool
I always link this whenever someone asks about a meme channel
fascinating
@tiny fiber Getting any voltage on the GPIO pins that are supposed to drive the servo?
Multimeter
Only when servo is supposed to drive?
well the 5v pin to ground gets voltage
The servo uses PWM so you might not detect it perfectly with the multimeter, but it should at least read on the multimeter if you have a max/min function on it
Oh, between pin 4 and ground
Pin 4 will get 5V, all the time.
Signal pin will get PWM signal (pulse-width modulation)
You should be able to read it if you have a multimeter with a range function, or max/min or duty cycle function
it just has current





