#ot1-perplexing-regexing
1 messages Ā· Page 350 of 1
The editor of the magazine he wrote for died and then the new one hated him
so he couldnt publish anything
OH oh oh oh
that'll happen I guess
One sec
at least he didn't do a Poe and marry his cousin
oof
yeah i read a bit he wrote about the people when he was in NY i believe, not lovely š¬
Provided to YouTube by TuneCore
The Innsmouth Look Ā· The Darkest of the Hillside Thickets
Spaceship Zero - Original Motion Picture Soundtrack
ā 2000 The Darkest of the Hillside Thickets
Released on: 2000-01-01
Artist: Bob Fugger
Actor: Bob Fugger
Performer: Bob Fugger...
Relevant
Yeah, The Horror At Red Hook which is set in New York is apparently super racist; I haven't read it myself, but I have read a retelling of it from a different perspective
which was a fantastic book
The name of his cat is.... less than tasteful
But on a happier note, The Darkest of the Hillside Thickets is one of my favorite bands of all time
They are amazing
I haven't read a single book this year - I kinda wanna go read Lovecraft, but I also need to do this stupid CodeJam
you mean in 2020?
by the way
Yeah
I often talk about irish politics in a more positive light than other countries
i read 19 books in 2019, planning to beat that in 2020 š
but we definitely have our own problems aside from that
like for example, https://www.thejournal.ie/narconon-ballivor-meath-4978207-Jan2020/?utm_source=shortlink
i have 2 on the way
scientologist drug rehab centre with no licensing or proven track record
2016, 17, 18 I read 50+ books. LIke 25 last year which was a failure to me
impressive
On religious grounds
and I need to do better htis year
Separation here is pretty good
the site was originally going to be a nursing home, and was approved for it
a couble of the books last year were pretty heavy though, worth 3-4 normal books, so shouldn't be too hard to beat
then these guys bought it
they still do prayers in both houses, and give bishops seats in the lords
and apparently a conversion doesn't require a new license
but it could be worse
Narconon bought the site after it secured a declaration from Meath County Council in 2016 that the proposed change of use from a nursing home to a residential drug rehabilitation facility is an āexempted developmentā and did not require a fresh planning application to be made.
good times.
Meath county to help those suffering from Meth county
@plucky ridge even in france it's hardly a clear separation, the church still has a lot of influence, presidents still get a title from the pope
haha
That'll always bother me
our health service has already stated that their methods aren't helpful and could be harmful
and yet here we are
(their method is literally just vitamins and a dry sauna)
I mean I hear a ton of Vitamin A will solve drug urges
And any other urges for that matter
hey, if it's good, more of it will be better
Well specifically Vit A is incredibly toxic in high doses
A statement given to TheJournal.ie by the HSE read: āIt comprises a series of interventions (āNarcononā) with limited or no basis in a scientific understanding of human physiology and brain functioning and may potentially be harmful directly (with overuse of vitamins and other products) and indirectly in that persons are engaging in an intervention with no evidence of potential benefit for them.ā
Random tangent just dove into my head: are sets a thing in C?
Okay didn't think so
I think you need a library or custom implementation
oh my god, hemlock, that reminds me
Yeah C++ not C
I had a friend over last weekend, a C developer
I showed him some kotlin I was working on
and he loved it
It's so clean
so over the last week he decided to start a major paradigm shift
and learn rust
???
haha
Null safety
yeah, probably
Probably what most appealed to him
Kotlin and C are solving different problems right But Rust and C are often solving the same things?
Sort of
Kotlin can solve the same problems too
Heās right tbh, cargo is great
Rust solves C's potential memory issues
it's just that Kotlin Native is still pretty early
Yeah that'll be interesting to see how that grows
yeah, it will
But honestly even within the JVM it's pretty powerful
Rust is safer too, isnāt it?
Yeah I'm very happy with kotlin
Both Kotlin and Rust boast null safety
Kotlin is obviously nicer to write than Java. But does that matter for the long term success? If it doesn't achieve wide range enterprise adoption, is it really gonna take off outside the sphere of app dev?
The fact that Google adopted it for Android is a HUGE boon
even large enterprise favourites like Spring have full support for it
But the thing is, the appeal of Java from a companies perspective is the ease of acquiring developers
I've been using Spark, a very popular light web framework, and that has a full Kotlin DSL
why would a company choose kotlin?
Null safety, still interoperable and compatible with existing Java codebase, faster dev time, yeah
you could just hire decent java devs and have them learn kotlin
it'd take a week, two weeks, probably
Hm, faster dev time seems to be the main argument in its favour
Well it's a lot safer, as hemlock says
Makes a difference
But if you have Java in your codebase, adding in Kotlin seems a bit iffy
the compiler forces you to write safe code, the null safe operators aren't the only part of this
actually kotlin can live alongside java in the same project with no issues at all
I didn't know about the safety stuff
Yep
I'm working on a big legacy project actually
JourneyMap, Minecraft mod, I'm working on a pretty large part, in kotlin, the rest of the thing is just java
the thing is like 6+ years old
If you're a company, you don't want to have to wait for your devs to learn a new lang and a new project at the same time. So I don't think the ease to learn is super important
Sure but that's easy to fix by adding typing, which you should be doing anyway
it forces you to write null-safe code, and there are cases where you have eg a when block and it'll force you to handle all cases
Rust does the same
Yeah, I don't have a great frame of reference for how important/not-important safety is in terms of larger enterprise projects
It's actually interesting, there are a LOT of parallels between the two
so I'll take your word for it
well trust me when I say that null pointer exceptions are the number one most annoying thing about java
haha
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
You seem like you've written a lot of Java, before Kotlin, did you enjoy writing Java compared to other languages?
I actually did quite like java
Liked it more than VB when I did it
but null safety is genuinely difficult because everything could be null
Weirdo ^^
and a lot of the time, it's not documented
because someone just forgot to write a null check in a library
and suddenly the app explodes and the compiler eats your cat
And it's damn near impossible to figure out why
yeah
So you just hope that your users don't do that thing
also, it's worth pointing out
As I've been encountering with our tax software
a lot of people talk about javascript being nested
as a complaint
but they haven't seen java
i have seen worse
java tracebacks can be several hundred lines on a good day
kotlin doesn't solve that problem obviously, but it is a pretty big indicator of how coupled a lot of code is when working with java
And dots.
there is one that looks like graph once flipped and zoomed out
dots everywhere
lol yeah, deep tracebacks, long tracebacks
hawt
i really like anonymous classes
What's the appeal?
they can be useful but you should really try to avoid using them
cant think of any other languages that have that feature
hemlock, say you've got a custom event handler class
thats more of a hacky obscurity than a feature imo
true
anywho, say you've got a custom event handler, and you wanna create a new subclass of it for one specific purpose
rather than defining a whole new class, you set up the instance where you need it, with some additional syntax to override one specific method
I guess my question is does that affect how it's built, its stability, etc.
it just a little quality of life thing that can make code more elegant imo
very much extra and unnecessary but cool
the way you do this in kotlin is via consumer functions, yeah
they're kind of like normal Units, but instead of taking it as a parameter, it's called as a function as if it was in the scope of said class
so you don't even have to define a class with any special syntax, it's just a Unit, and it has access to this
kotlin does generics better than java as well
I'll let the article speak for itself I think, https://kotlinlang.org/docs/reference/generics.html
also I still find it funny that the embed for the kotlin docs is just a giant kotlin logo
haha
// set up render loop
renderLoop = new UpdateLoop(1000/15) {
@Override
public void tick() {
super.tick();
content.repaint();
}
};
here @plucky ridge , found this in some of my old code.
rather than passing in a callback to trigger every tick of the updateloop, i just overrode tick altogether
var renderLoop = {
super.tick()
content.repaint()
}
I'm here all week
I'm not 100% on how to type hint that
let me double check
right, right
doesnt that only work for classes with one method?
var renderLoop: UpdateLoop.(Float) -> () = {
super.tick()
content.repaint()
}
and can you pass in arguments to the constructor?
kotlin doesn't have constructors in the java sense
not that you can't make use of them, but
anyway, you can then call this like
val renderLoop = ...
val loop = UpdateLoop(whatever)
loop.renderLoop(1000/15)
I realise that I messed up the logic you were putting across, but you get me
you can only call it like that in the given scope, of course
the given use-case here is obviously not that useful on its own, generally libraries will make use of it
they'll have a function taking one of these functions and make use of it
Spark's DSL does that
as for constructors..
in java, constructors are basically just methods
in kotlin, constructors exist only to set up the class and may not have any other side effects
class MyClass(val s: String, var mutable: List = listOf()) {
// Class code
}
they're basically just class arguments
if you need to run something on instantiation of the class, you can have an init { } block, which is what you have to do if you subclass a java class that expects you to override the constructor
class MyCommand : Command() {
init {
this.name = "my_command"
this.permission = Permissions.ADMINISTRATOR
}
}
I could go on all day tbh, but hopefully that helps
Interesting
I mostly learn about this stuff when I run into it
suspended functions are great by the way, you should see how JDA makes you do this in java
they couldn't decide on an async model so instead they gave you three completely different ones
I think they give you a Flux type deal, Promises, and Futures
kotlin's coroutines library provides an extension function, await(), for java's CompletableFutures, so I just did that
literally in the same file
gg vs code
oh Boomark
im an idiot
let these screenshots remain as proof of my stupidity
it actually gets worse cause i erased that and retyped it like three times
so i misspelled bookmark as boomark three times in a row
Sounds spooky
Maybe you're being haunted and the ghost is just really bad at its job
just imagine bookmark is written where he's kicking the wall
oh my god.
now i misspelled boomark as bookmark
the torture never ends
it's like... an antitypo
.bm 670305477422219284
Hmm
.bm 670305477422219284
Hmm
.bm 670305477422219284
It would be cool if one could click the emote on the first message and get the bm too
Ooh
Yeah
Feel free to open a issue then š https://github.com/python-discord/seasonalbot
That's a good idea
On phone, maybe later :p
^^
i will do it though . but with same hints or clean the hints ? @frosty berry
I don't think its gonna even pass
why my inbox is filled with this guy named SeasonalBot
.bm 670305477422219284
@rough sapphire i'm not sure what are the hints you are refering to š¬
(going to open that feature request now :P)
ah it was mentionned as a comment on the last feature request, maybe it's not needed then
np š
Found an intresting conspiracy cult website
"The black cube of saturn"
Is there a server like this for Java, or can someone answer a question I have in Java?
I know how to do what I need in python, but I am learning Java and cannot seem to figure out the answer
You can ask in one of the offtopic channels, yeah
I have two 3-digit ints, such as 374 and 493, and I need to compare how many digits match
Not sure about a server though
So in this instance they both have a 3
Turn them into strings and loop over them
You can use the same approach as you would in Pyhton, I can't give explicit code. But casting them to a string and looping over will work
What about without using a string, is there a way or no
Can also loop using %10, %100, and %100 instead - but thats more complex
The only way my friend thought of was making it 3 separate inputs and therefore 3 separate ints, like 3 7 and 4
then comparing them all like this
Deleted dumb pseudocode
Theres some pseudocode
that hopefully gives you the gist
wait no, not quite
I'm not properly extracting a single digit with the modulo
you also need some integer division, but, I can't remember that for now
I am trying to understand the path this is taking
Ok
my code is probably more of a hindrance than a help
so I'll just explain in words
First of all, what is your problem. How many digits do 10045 and 14500 have in common?
as in, do the positions of the digits matter?
Ok, so if you approach it as a string problem, for each character in the first string, you're comparing it to every character in the second string right - that makes sense?
The string problem is easy yes
Yeah, so the numeric analogy
I think I understand where you were going with the 1, 10, 100
If you do 374//100 you should get 3
meaning the first digit 3
You want to extract the digit in the 1s position, then the digit in the 10s position
Yeah, so you extract the 1s digit, then 10s, then 100s, 100s... and you do the same for the second string
the question now is how to extract that digit
which my poorly functioning brain can't do right now. But I think its something along the lines of tens_digit = (456%100)/10)
But the logic for this is the same in Python as in Java, so asking for help with the Python solution in a help channel should let you write the Java pretty easily
sushi
Thank you again, I will let you know if I get it
Is asking for help in DMs allowed?
!no-dm
Can I send you a private message?
No. We do not provide one-on-one tutoring - you can hire someone locally if you really need that. We also prefer that questions are answered in a public channel as it means that everyone else present is able to learn from them. If you're working with code that you are unable to disclose for any reason, you should try to make your question more general and write a separate, small piece of code to illustrate your problem.
Alright, thanks
Hm
CPU is throttling to 1.66ghz from 3.5ghz when running intensive tasks
Not heat related, i'm running at 35c idle and 50c max
American megatrends warning screen saying "cpu not supported by this motherboard" is on even though it is supported
It should be fine with my bios version as it was validated on the same build as my current bios
After some digging: https://forums.tomshardware.com/threads/asus-m5a78l-m-usb3-and-fx-8350-compatibility.2901862/ Looks like my motherboard can't handle the powahh (vrm overheats with a bulldozer cpu)
Guess what
@umbral lantern what
Update: ripped it apart at 1 in the morning and buying better motherboard
doesn't server icon do its animated stuff when i am here
or it only does when i hover over the icon ?
You have to hover over
whats the difference between BSc and BEng in computers?
I think there's not necessarily a difference in content. But the idea is a BSc focuses on the scientific side, and less on the practical applications
science vs engineering, as far as I've understood it science is more theoretical and engineering is more practical
Will there be a difference in jobs?
ohk
Yeah, I've heard arguments in favour of both letting you be more employable. My guess is 0 difference - and XX is right, always ask other people
(but you should triple check this with other people)
I did ethical hacking, which in practice is very practical, but it's a BSc
https://www.saxion.edu/programmes/bachelor/software-engineering-information-and-communication-technology
its software eng but its BSc
Virtually identical in terms of course content andĀ graduateĀ employment potential.
Strictly, BEng degrees have to be accredited by an engineering body (typically BCS or IET). This means that a BEng course has to cover certain topics like professional practice/ ethics, and there could be small restrictions on the type of projects available (eg, you have to have n hours of team assessments). These are really minor and you might need to do fulfil for a BSc anyway.
For the most part, they'll be identical, and you should be picking the right department, rather than looking at the degree honorary. If it's identical BSc and BEng courses at the same uni, go for the BEng -- it may give you a slight leg up in professional accreditation in the future.
in netherlands, almost all uni have BSc
It might worth noting that BSc's can be acredited as well. My BSc is acreddited by the British Computing Society
I originally typed that, then realised it was a bit dumb to read - haha
We have two variants when it comes to university bachelor degrees: Bachelor of Arts and (BA) and Bachelor of Science (BSc).
The latter is for beta-oriented subjects, while the former is for more arts-oriented subjects (humanities, social subjects, and so on)
We also have Hogescholen, but they don't award B.A. or B.Sc, but rather a "professional" bachelor or "applied" bachelor degree
Is it only the UK that does 3 year degrees as standard?
It's four years here
nay, bakalaureus (bachelor's) is 3 years in estonia as well
sometimes 4, depending on the course
3 year degree is already too long for me. I can't see how people manage to do 4 year undergrad followed by 2 year masters
We have three year bachelors and 1-2 year masters here (university) or a four year professional bachelor (hogeschool)
okay
hmmm i am thinking to drop out of school ;-;
it's a bad idea
and do what @rough sapphire ?
what do your parents think about it
pucha nahi kabhi
š
Keep it english @rough sapphire and maybe you should ask your parents about it š
Did a two years technicaly oriented CS degree, then worked ā2years, then got back to get an engineering degree (3 more years, master level).
I went back mostly because my then job wasn't very fullfilling (maintenance of shitty php/mysql apps) and most interesting job offers seemed to require a higher degree.
Going back to school wasn't easy š
Uh - I need ideas. What decisions would a caveman face?
a caveman?
how (and what) to paint on a rock wall
Friend or foe, when meeting another tribe
to put out the fire or not
how (and what) to paint on a rock wall
That one's great
and, what is fire? š
Friend or foe stuff is the bulk of what we've got
remember that making a fire wouldn't be an easy task for a caveman
To eat or not to eat, that newly discovered fruit
Thats another good one
so they would most likely want to keep it alive
did you remember your cave towel? š
"do I need a trephination š¤"
choosing the right cave
to rogan? or not to rogan?
what rock good to make tool/weapon
That one's good
How to woo the nice cave lady next door?
Try to understand fire or flee from it
Or both at the same time.
when you get an 10% in a maths test python pygame.quit()
does IOT come under computer science?
generally no, not in my experience
but, to be fair
IOT is "just computers"
if you wish to study IoT more in depth, you should look into a course which does embedded development
@oak tangle You installed the new powershell right ?
mine looks terrible
why do they keep changing it
the blue is fine as a default
now it just looks like cmd.exe again
its not powershell its powershell 7
is powershell 7 not powershell
Why does everyone hide the user id? Is it a really sensitive information?
I hate my name
Ah okay
not really , but i don't want it to be tossed around on internet
@rough sapphire I think the preview is being run via conhost.exe directly and not the powershell executable
as in
Han
if you open up powershell (old) and execute powershell 7 via it directly, it'll look nice
Whatās the point then
I'm guessing they decoupled powershell from conhost to prepare the move to their new terminal
@rough sapphire I've not installed the new powershell.
I barely use Windows and I'm using bash on ubuntu
Who was that then
Windows Terminal
The Windows console host (conhost.exe)
Components shared between the two projects
ColorTool
Sample projects that show how to consume the Windows Console APIs
oof it looks cool
.msixbundle
For some reason, I tried to update it, but I apparently canāt
and damn powershell in it loads faster then original powershell
only reason I used powershell was to install linux
got Kali at home.. and Debian at work
Kali in a VM, I assume
Windows subsystem
don't really care if I brick the installation.. I'll just install again:P
I don't think I'd recommend it for anything but its intended purpose tbh
That's a super weird way to use it though haha
speaking of which.. YT gave me a free Nest device.. but I can't set it up because it needs AP isolation removed on the wifi š
aside from the fact that it's required to manage it's settings from phone/laptop on the same network.. it probably wants to sniff packets..
but I don't have the AP isolation option on my router..
Oh nice, Google gave you a free Google device
maybe I should ask them for a free Nest router..
hmm then again I can't use my free internet on that... so sucks
WSL has too little of isolation between the host going on for me to be comfortable with running Kali in it
how do you mean..
Good point, hax
guests running in WSL can access various resources on the host directly (or at least it could when I was messing around with it)
WSL2 uses HyperV but I don't think that changes that fact
Hey @sand goblet, what was the name of the 2FA app again with could sync and stuff?
But you need to pay for it, don't you?
Fair enough
ERROR: Couldn't connect to Docker daemon at http+docker://localhost - is it running? I just started the service >.>
Nvm, need to sudo it
Is that normal?
Or it is just a permission issue?
you're not in the docker group
i recommend keeping it that way for security purposes
it's incredibly easy to escalate privileges to root using an account which is in the docker (and lxd) groups
What could be the issue if I get nginx 404 errors, even if I donāt host static files? I try to access an url that is supposed to be forwarded to a backend service I somehow fixed it apparently
NVM got it needed ()bot\seasons\evergreen\bookmark.py:34:29: E251 unexpected spaces around keyword / parameter equalswhat am i doing wrong here ?
This code jam got be back into the habit of writing code, but now I haven't got anything to work on
Make a sandwich robot
I'm too lazy to even make myself sandwhiches
Fair point
Make :-
Facebook for pets
Uber for mattresses
Tinder for pets
Yeah, this afternoon I was like "hurry up, you have to work on the jam - Oh wait, it is already finished?"
sooo who won ?
I've fone from 100 to 0 so quickly that its jarring
The real solution is for me to go get a job
but thats no fun
apparently our python program is using almost 20 gigabytes of memory
Probably a lot of it is swap/virtual memory
What is the best way to make a personal blog? WordPress, Static HTML, something like Jekyll?
"best" is not really a metric, these things exists because everybody has different taste
Ideally, I'd want something like Wordpress, but thats not old and decrepit - then beyond that I don' really know of any options besides static HTML
wordpress maintenance can be a lot, but it comes with a lot of tools, a complex interface to do whatever, it works.
oh wordpress is pretty alive
Its very alive, but every time I've used it, its been a pain in the ass
https://secure.readthedocs.io/en/latest/ is pretty useful š :
HTTP/1.1 200 OK
Date: Tue, 28 Jan 2020 08:50:31 GMT
Server: High-powered Toaster
Content-Type: application/json
Content-Length: 60
Strict-Transport-Security: max-age=63072000; includeSubdomains
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
X-Content-Type-Options: nosniff
Referrer-Policy: no-referrer, strict-origin-when-cross-origin
Pragma: no-cache
Expires: 0
Cache-control: no-cache, no-store, must-revalidate, max-age=0
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
the fuck dude?
Sorry
Aren't ducks and pythons a bad mix?
Not for the pythons.
Yeah kind of a one-sided deal
Before I start working on it - is there any disadvantage to making a personal website/blog in just plain HTML/CSS besides the potential annoyingness of adding things to it
Not that I can think of.
Though if you need js, might as well at least go with typescript.
You know, I think I've genuinely forgot what all you can do with just pure HTML/CSS
I might have to relearn all that when I get the free time
If I get the free time
I would recommend using a site generator like Jekyll
But you'd still have just a static site
Do you happen to know how easy it would be to switch to Jekyll after the fact?
As in, can I make most of the site, then just use Jekyll for the blog. But figure out the Jekyll part later. Or do I need to consider Jekyll from the beginning? I'll just not be lazy and learn Jekyll
Jekyll generates the site for you
You just need to provide templates, or use someone else's
I'm revisiting a large api I made with minimal-ish docmentation ~1.5-2k lines of api, schemas and db models
Very time consuming rewriting docs and learning what it originally done
Interesting note, it's supposed to be pronounced "GEE-cull"
Doctor gee-cull and mister h-yeddy
Swap the c and g
I seagull what you did there
Booo
Yes! Let the pun hatred flow through you!
@lime gazelle think we should continue over here
my apologies
okie!
if you need the value represented by those six bits then you cant have those extra zeroes
otherwise you get a freakishly massive number
so you gotta get rid of them first
a bit to 0?
110 >> 1 = 11
110 >> 2 = 1
110 >> 3 = 0
ok I get that 
I don't get why he's shifting the whole instruction 26 bits to the right and masking the top 6 off
like I don't get the result if that makes sense?
let's say your instructions are like this:
[6 bits representing operation][26 bits of extra data for operation]
in order to access those 6 bits you need to get rid of the other 26 bits following it
so you shift right 26 times, that way youre only left with the 6 bits
dunno bout the masking
would need to see some actual values to get a better idea of whats going on
like
he wants this whole ordeal, for example, to be equal to 0b001111
and the instruction is 0x3c093400
could i have a link to the video/article?
and the point in which where this is occurring?
https://youtu.be/uJ83pJfV6lY hour 3:07:45
Today we picked up where we left off in an effort to try to start running some instructions from the boot ROM. Will we make it today? Will we finally get code execution?
Episode playlist: https://www.youtube.com/playlist?list=PL-sXmdrqqYYcznDg4xwAJWQgNL2gRray2
Project repo:...
that whole line of code looks incorrect to me
looks like he's using logical and instead of bitwise and
and if you have a 32 bit number, and shift it right 26 bits, there's no need to do the extra masking
is it 64 bits or 32?
he doesn't know either
he's just winging it
he's assuming it's 64
so yeah
I don't really get it
ok, let's say it's a 64 bit operation
you have something like
[32 bits of some unknown info][6 bits representing op code][26 bits of extra data]
yeah
ugh discord froze
shifting right 26 makes the extra data poof
but masking the top 6 bits gives you six random bits of unkwon information?
not the opcode
no
one sec
you shift this over 26 bits, now youre left with
[32 bits of some unknown info][6 bits representing op code]
there it is
right, so if you're left with [32 bits of some unknown info][6 bits representing op code]
to get rid of those 32 bits you mask them out
he's not even doing a mask here though
but he masks 0b111111
he's using && which is logical and
yeah he corrects it later
101011
& 001111
= 001011
no wait
say the six bits are at the end, not in the front
no wait again
if he's masking 0b111111 that means the six bits are are the front
I'm dumb
I've decided I'd like to learn Vim - is writing non-code stuff (i.e random notes) in it a reasonable use case for starting out?
Probably in markdown rather than plaintext
that's fine
there are plugins to help with markdown, and i think the default handling is reasonable.
and yes, i do take random notes in vim, i have a plugin, vimwiki, which helps a bit in organizing that, but again, it's not essential, just makes things a bit more hypertext-y
(if you press enter on a word or selection, it creates a link on it and following a link creates or edit the page of that name)
should i be scared
@hoary turret About?
||boo||
the corona virus in east asia, natural disasters in australia, mers in the middle east, lassa in nigeria, ebola in the congo, iran in the brink of ww3, inflation in venezuela, repression in india, socialist extremism in the US..
there might be more.. but these come to mind _-_
ooh I didn't know eivl was a fan of DBZ
that reminds me, did i forget to turn of my game before i went to bed...
yeah im a huge anime fan Tron š
have you watched DBS
yes, everything
wow
and i watch it from the orginal release, no need to wait for the dub š
me too.. because it takes too long.. now I watch the dub on YT..
I wanted to watch the Broly movie at the theatres here.. but they didn't come out with subtitles.. lol.. missed out
@rough sapphire well, the term "hacking my X" has a lot of baggage with itself. the correct term for what you are doing would be more to enable homebrew. and that jig looks awful, you should enable auto-RCM as fast as possible so you do not damage your switch connector
there are fan made subs for broly i think
I ended up watching the dub online..
now the blue ray is out i see... so subs should not be an issue.
I wonder when the next DBS episodes are coming out.. it's been almost 2 years
im not sure there will be any more dragon ball super tv episodes
the next thing might be a movie
hmm could be.. but they make a lot of manga here, not sure how it's gonna fit in a movie.. I'd be happy either way if they just come out with something soon
if you have not seen Broly, then well... you should
I saw the dub
oh yeah.. right.. š
well. with grandma goku getting up in the years, that alone might mean that there will not be any more tv-shows
I'm sure they'll find a replacement.. like they did for Bulma
but it'll be very sad.. good thing is, Japanese women live very long
I have heard, but cant confirm, that if grandma goku quits, there will be no replacements for her.
Son Goku is a fictional animated character from the Japanese tv-show, movie, manga, Dragon Ball
he's based on Sun Wukong.. from the Chinese mythology.. Journey to the West
Son Goku is the name of Sun Wukong in Japanese
loosely based š
What, you don't remember when Wukong beats a communist army and go to space to defeat evil aliens
maybe i missed that part of my history lessons @autumn herald š
enslaved?
i remember it beeing good. but its been a while since i owned a 360
@rough sapphire I see you printed a jig
first things first
before doing ANYTHING
boot the Hekate payload and make a full NAND and separate prodinfo backup
and keep them safe
this is now your clean slate, your reverse pivot should you fuck something up or wish to simply stop using CFW
honestly I would never CFW my switch
I've heard nintendo are pretty good for banning people that use it
when it becomes obsolete it'll be a good thing to CFW though
what's the difference between grayscale, b&w and color images..
greyscale images do use shades to soften the contrast, I think
the difference only really matters in printing
I'm wondering more about representation.. in bits
where greyscale images can use coloured ink
and black+white do not
at least that's my understanding of it
Is Nintendo ban a bad thing
Like you can't play one of their 3/4 online games anymore ?
Their online games are excellent though, to be fair
some of them are console sellers
I'd be sad if I couldn't play Splatoon anymore haha
what ban
Dunno if the online feature for splatoon would kill console sell tbh
Maybe smash/last Mario Maker
most of splatoon's content is online
and I definitely bought a switch with the intention of playing splatoon
besides, it's also a ban from the store
I guess Nintendo doesn release any number of online play
Imagine i can't dowloads the bikinis in Atelier Riza š±
(I don't, it's a joke)
well I mean, the breath of the wild DLC was excellent
be a shame to miss out on that
That moment when you get forced out of your server because of your strict Fail2Ban setup
Well, I'm testing a new feature on one of my servers
and I've got a really strict Fail2Ban setup
I forget what it is, but it's something like - anything that isn't a 200 is allowed through 3 times in 30 minutes or something
and then everything that is a 200 is allowed 12 times in 5 minutes or some such
It's probably way lower than even that, considering I tripped it.
I agree with your switch commend @sand goblet, for that reason i have two, one with CFW and one without with online access.
but the point is still there, if you are not, do not CFW your switch š
Yup!
sure sure
i'll let you know that 2.50⬠virtual bikini is too expensive for the cheap fuck i am
it should be too expensive for people that aren't cheap too tbh
š¤
2.50⬠a virtual bikini? Oh yeah please!
Didn't know you wore bikinis, Ak
It is virtual, so I guess I can't really wear it haha
Make your body virtual too, so maybe virtual can wear virtual..
just don't turn into that guy that married his wii
yeah, there was this virtual girlfriend thing released for the wii in japan
one guy married it
``
I've heard nintendo are pretty good for banning people that use it
@sand goblet
It's very easy to avoid bans - basically, you have two OS partitions, one for CFW and one which is clean. The CFW one should always be offline, and the clean one can be used as normal
and that's pretty much all there is to it
there's also overkill solutions like Incognito which wipes the data off the NAND which Nintendo uses to fingerprint consoles, making it impossible for them to issue a ban
I'm sure they could just ban your account too
The swap doesn't sound like a terrible idea though
The whole thing kind of sounds like an unnecessary risk, though
I did softmod the fuck out of my wii
but I kind of had to
it couldn't handle dual-layer DVDs
I'm sure they could just ban your account too
@sand goblet
they could, but for whatever reason, they don't.
it's, like, never happened
all bans have been console bans
We'll see what happens I guess
Sure, I'd softmod stuff that's no longer supported
But doing it to devices that are still in active service just seems like playing with fire
i guess if the benefit you derive from it is superior to the price of the device times your estimation of the risk of it being banned, then it's worth it
Homebrew is great, but outside of the emulators, I don't see it holding up a console the same way actual commercial games do
Nope, just a way of extending the shelf life a bit
@rough sapphire i thought Nintendo had a sort of fuse that goes off when you hack the console and that's how they know
maybe i misunderstood tho
no, fuses get blown when you do a system update
even a "legal" one?
OFW checks the amount of burnt fuses each boot, if there's more fuses burnt than the firmware's check, it refuses to boot
to prevent downgrades
CFW patches fuse burns and checks
(as in, if you boot with CFW, you won't burn any extra fuses nor will the firmware stop booting if fuse count doesn't match)
the game cart module has its own fuses
er
well
I'm not sure what you mean
there's IIRC 128 fuses total
i was wondering if Nintendo system upgrades would count in the total
current latest OFW burns, what, fuses up to the 20th or something
so they can only do a certain amount of upgrades before burning all switch
ah okay
each major update increases the fuse count
so they can do around 100 more major updates if I'm remembering my numbers correctly
no excuses for programmed obsolecence then
they have the power to burn all fuses if they wanted?
scary
there was a sort of bricker going around a while ago which burnt all fuses
forcing you to forever use patched firmware to boot, bye bye OFW
i would burn them all in twenty years when i'll sell a switch remake š¤
huh, I did misremember
it apparently only has 32 max fuses
11 of which are burnt with the current latest fw
There are 256 bits in the set of ODM_RESERVED fuses, and there are 8 ODM_RESERVED. This allows for 32 fuses, or 32 future FW versions (provided they burn a fuse on every major release).
no
or opening the switch triggers somehting else
only with future hardware revisions
fuses are wayyy deep in the SoC
and tiny
you won't be replacing those
They're added to the board using industrial, computer controlled machinery
The likelihood that you'll have that much precision is close to nil
you'd probably need to change the whole chip, which is i guess one of the most expensive in the thing, right?
and basically impossible to source anyway
And the OFW will just burn them again anyway
Can anyone help me with a hardware issue I'm having? Pm me please if so, thanks
When I first got the components for this new pc I was sort of overwhelmed with the amount of stuff to do
But once you remember what you're doing its more add that to that then screw that in then stick some obvious looking psu connectors in
can never remember which front panel connectors go into what
only important one is the power button though.
i mean not really
my gf's power button broke so she uses a screwdriver to turn the pc on
Fun times.
my school's old lab's PC's power button are broken so we fuse 2 wires to boot it up
I just got a picture from some linus tech tips forum from DuckDuckGo Images
Seems the front panel stuff isn't polarized so put it in the right two pins or some cases 1 pin and it works
ay lmao I turn my PC on wires too
TIL the "Linus" in Linus Tech Tips is not in fact THAT Linus
what, Linus Torvalds?
or as my friend calls him, Linux Torvalds
... and I'm not sure he knows that's not really his name
but I never disabuse him of this delusion because it's amusing
It's the easiest name to get wrong in tech for me
When I think of Linus, I think "He made Linux oh and git, forgot about that"
git? isn't that the thing microsoft bought?
I seriously wonder how many people don't know or realize the difference between git and GH
A terrifyingly large number, I've found
among programmers?
do programmers qualify as people?
:(
non-programmers who know about a bit of the field don't really know the difference
I think I had to explain it to my sister when she started with JavaScript iirc
I think it's an easy mistake to make and I've seen a lot of confusion about it among beginners here
I mean, most a lot of people first learn about git in the context of GH
of course programmers aren't people
I think it can be easy to understand if you mention other services, such as gitlab
way too many people think git and github are the same
uh, oh, I never did man git before
GIT(1) Git Manual GIT(1)
NAME
git - the stupid content tracker```
git add confusion && git commit --allow-empty-message -m "" && git push --force --set-upstream brain permanent-memory
git commit -m is a habit I really needed to beat out of myself
it typically makes for crappy commit messages
-m is an inline commit msg?
oh. For some reason I never did that.... I do however, pretty much always git commit -a
and someone said it is bad
I think you can specify multiple -m arguments that get concatenated as separated paragraphs or something
I've recently started becoming more picky about my commits, but habits haven't quite caught up yet (I can be slightly chaotic jumping from thing to thing)
That means I need to do a lot of interactive git adds to pick right hunks to add/commit
I try to avoid using the command line for git
Since I find it a lot more inefficient than a keystroke or two
I don't mind it
I don't like most visual git tools, unless it's for more complicated merges
with the command line, I can just type in what I want to do; I don't have to look for it in some gui
I already know where everything is in the gui
Yeah, that's fair
Which one you use gdude?
let me guess, pycharm?
I recently installed git kraken
It has some nice visualization for branches and merges
huh
You'll notice it if it does it to you, I had it completely messing up file encodings
well tbh I don't use it to commit/push
but I like it's visual representation of branches/merges
commits
PyCharm/IDEA do have a basic visualiser
But it can be handy to have something more in depth, yeah
is it part of free tools?
ah right, I never explored it
It's always good to poke about
g, do you happen to know if it's possible to have pycharm default to an empty index when opening the commit window
as in, not have to untick everything manually if i just want to commit 1 change
I don't know, honestly
its just one click, sure, but its annoying to do all the time
Maybe the GitToolbox plugin has something for it
But I don't think I've seen an option
yeah i haven't seen an option either, it makes me upset, i committed changes accidentally a few times because of it
I feel like the majority of commits I make are more than one file
kwzrd when first saw you I read your name as kwargs
Do try GitToolbox by the way, it's super useful even if it doesn't have that option
ok sure ill give it a try, thanks
i feel like i need a user's manual for pycharm lol
Haha, understandable
doesn't help that i used to use eclipse for java
wish i switched to jetbrains earlier
You could use it for Python too to be fair
If you just want to commit one file, you can right click on that file to commit it. Although I think im misunderstanding
But I like jetbrains better
Oh yeah
Try using the double shift thing
It might have a commit file option
i like the commit dialogue, i just wish it didn't default to having all changes staged
Double shift gives you something you can type into for actions, files, settings, etc
I should use it more, it's super handy, I just forget about it
ill look into that and the git toolbox tomorrow, thanks
byee sleep tight
I used sourcetree exclusively (and just sort of dealt with the bugs), however, I've moved over to GitKraken and (aside from having to pay to use private repos), the only issue I had was when I had a cloned repo stored inside of a BoxDrive (or any other cloud service equivalent) directory. besides that, it's been working pretty well for me.
i'm about to burst a nurst
i've been trying to get the IP header for IPV6 packets using sock_raw for 3 days now
IPV6_HDRINCL does nothing
For IPv6 (address family of AF_INET6), an application receives everything after the last IPv6 header in each received datagram regardless of the IPV6_HDRINCL socket option. The application does not receive any IPv6 headers using a raw socket.
literally why
do i give up and just include libpcap
should do it anyway
winsock sucks bowls
have you seen their incredibly crappy broken implementation of af_unix?
oh shit. did some more reading. so IPV6_HDRINCL doesn't work on linux too?
lame
yeah this is on linux
copy-pasted from windows docs as they should be pretty uniform
as this is defined in the standard
i still maintain that winsock sucks bowls :p
Is there really no simple 2d Array in Kotlin?
I can't figure out a 2d array of objects
my blind cat's eyes reflected back a funky pattern
I want one.
A blind cat? How does it manage?
Telepathy, just like all other cats.
she knows the house well and gets around by smell
does he make weird noise?
she meows very loudly and not like a normal cat would
Going louder and louder and louder
How do you know she is blind ?
my dad's do, because it can't hear himself?
Cats don't really listen to you, i guess it makes less of a difference
They do listen to things like food though
you can wave your hand in front of her and she won't even flinch
it makes sneaking up on her super easy though
My cat comes running at any rustling plastic
sneak cuddle i see
was she blind and deathdeaf at birth?
death at birth.
she's gotten more "affectionate" the older she's got
oh no
That's so metal.
@wheat lynx no, she was fine before
she's 20 years old now.
20 yearsssss
do cat even live that longer ?
That's pretty old for a cat.
i imagine some cat with a cigar and a raspy voice somehow
"the mice i seen son, you wouldn't believe"
Some guy in America regularly keeps cats till they're over 30, and he does it by feeding them weird shit like coffee and bacon and stuff
How often do you come outside ember?
That'll give you like 10 years total.
Then who was that guy
who dances to nicki minaj in tokyo subways
Tron i believe
i dance to overly loud music
So i have to give a speach on topic
How to beat bad moods
Since you guys mostly frustated over some piece of code
what do you guys suggest about it
thought it said mods for a second
that's for saturday nights
You can't
physically speaking , mods and admin are still humans
not gods
don't know about š he is god
You seem to be misinfomred.
no its salt-die who is a machine
Bad mood is solved by solving the cause of the mood, or accepting you can't and focusing on something you can.
Is that true that girl's mood swings a lot in mastruation cycle ?
(sometime it's as simple as getting some sleep)
Well, i do think it's true that hormonal balance changes can be challenging to handle
it's quite certain yeah
depends on the hormone though
even though being short of insulin makes people touchy too
Some handle it better than others, i'm glad i don't have to handle that first hand, just deal with the second order effects (the mood of the affected person)
So we have these fruity smelly sketch pens for drawing
and as a kid , the sky blue color's smell was damnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn addictive , its so perfect one can easily smell it for hours and hours and still want more , it smells just perfect anyone want
I used it a lot in my school time to escape from reality and spend some time alone , near the windows
Does that go along with your loud music on Saturday nights?
@rough sapphire you were probably getting mildly high off that shit dude
^
'mildly'
