danhab99

joined 2 years ago
[–] [email protected] 4 points 1 week ago

Undeniably fair

[–] [email protected] 0 points 1 week ago (1 children)

If I have to put a thread object in a variable and call a method on it to start it then it's OO multi threading. I don't want to know when the thread spawns, I don't want to know what code it's running, and I don't want to know when it's done. I just want shit to happen at the same time (90% of the time)

[–] [email protected] 2 points 1 week ago (1 children)

I feel like it should push father, with a wider area of attack and cause some damage too, like 6s of afterburn

[–] [email protected] 0 points 1 week ago

On Linux most package managers download an index of every package, its requirements and installation instructions. This means I can search through it however I want.

How open would you guys be to scraping and compiling "search engine"-esq indicies on your local machines?

[–] [email protected] 3 points 1 week ago (1 children)

Cheap dumb andk easy solution: deep sea miners must comply with their home government regulations completely otherwise they lose international seas protections and government navys can sink these platforms for free!!

[–] [email protected] 9 points 1 week ago (5 children)

I've always hated object oriented multi threading. Goroutines (green threads) are just the best way 90% of the time. If I need to control where threads go I'll write it in rust.

[–] [email protected] 2 points 1 week ago (2 children)

Ok peace love and fuck google but serious replies only

Why do we devs need Android?

Most apps I build just display shit. They show prompts to the user to guide them through what I want them too.

I can't remember ever needing to implement some high frequency data processing onboard and even so. Webassembly and PWAs are getting better pretty dang fast (isn't figma a 100% wasm-pwa?) so if I actually needed those I could have those.

The last remnants of what a program could do on bare metal is like LLMs and visual processing. I'd also rather have those in a standalone app but soon we're gonna get some sort of WebNPU standard and (well) I might as well process images in webassembly (ノಠ益ಠ)ノ

Like imo browsers are becoming virtual machines with (what amounts to) an undefinably infinite app store.

When I freelance as an app developer I always encourage my clients to go the PWA route and then I wrap a PWA runner for the app stores because they only want to be on the app stores for marketing purposes and bc users are used to it.

Because that's all that these OSs are, just UI's wrapping a browser (in my humble opinion).

[–] [email protected] 1 points 1 week ago (1 children)

Yes but mitochondria live in the cytoplasm. I guess I don't have much of a grasp of size differences that small so it blew me away to think to find a life form inside of the organelle of another lifeform.. I thought things were too small at that scale.

[–] [email protected] 19 points 1 week ago (3 children)

Whole bacteria are found within an organlle

That is even more mind blowing to me

[–] [email protected] 16 points 1 week ago (1 children)

"why don't you just"

╭∩╮(︶︿︶)╭∩╮

[–] [email protected] 117 points 1 week ago (11 children)

I read this thing's entire wiki page and it's fascinating!!

  • Imo it's not even an animal it's just a collection of cells that can survive on their own but just don't want too
  • It will rip itself into multiple parts spontaneously because cells don't coordinate too much. They don't have dedicated neurons but they have a decently complex peptide based protocol.
  • You can put a single Trichoplax animal through a sive that is fine enough not to damage the cells but separate them, and the cells will reform into the same animal
  • They can reproduce sexually but they don't have any of the markers that all males of all sexually reproducing species have. Plus because they only ever sexually reproduce when there's a high density of Trichoplaxs, it's basically a pattern of Trichoplax cells choosing to break away and combine with other cells to create new individuals.
  • They're just about as simple as e.coli and they're the simplest animals with about 50mill base pairs divided into 6 chromosomes
  • They can take the organelles of the cells they eat just because. The wiki article calls it symbiosis but that implies that organelles are alive and I don't think they are. I think Trichoplaxs can just take tools from other creatures to use.
[–] [email protected] 4 points 1 week ago* (last edited 1 week ago)

I've been experiencing something like this too..

I'm really insomniac due to mental health stressors and chemical imbalances. I honestly might die if I don't use meds to put myself to sleep for 2 weeks straight.

That being said my meds are correcting the chemical imbalances. And I get to notice as I try to fall asleep after a high stress day I'll ruminate too hard and I'll stay awake after the "put-down" pill wears off, (then I gotta decide to give up on sleep all together or damage myself more with another pill).

I'm not a doctor (just traumatized). Ruminations come from anxiety sometimes, try to recognize what you're actually actually doing to prevent yourself from sleeping.

 
 

I have a massive terraform state I maintain for work. After learning about reusing resources using modules I adopted the same rule for terraform I have for other PLs "only call functions in the main func". Meaning I'm only allowed to declare modules that reference resources at the top level.

My problem is that I have modules calling modules all over the place, the average length of any of my resources is 8 names. I have values I want to share across multiple different kinds of modules that do different things. Currently I have a top level module called "constants" with output blocks to store every constant I need. It works to an extent.

The thing is that I had a similar problem when web developing in React. Prop drilling is a coding style in React where a component receives a prop just for the purpose of passing the prop to a child component, the receiving component doesn't actually need that prop for itself. React solves this by the context api which lets one component pass a value to any child component of any depth. How can we have something similar in Terraform? Even though every resource I have is defined once in code, it declares the same resources hundreds of times with different appropriate values.

I wish I could pass things like the dockerSecret to a kubernetes deployment 6 modules deep in such a way that that dependant component of a module waits for the docker secret to be created while other resources that don't depend on it can be scheduled to be created later. Prop drilling doesn't work all that well and it forces you to copy alot of code. Maybe modules aren't the best way to reuse resources.

I feel like HCL doesn't have syntax that would support such a thing idomatically. Maybe something like decorator syntax or a special type of block where you write a proper data, resource, or module block?

What do you guys think?

1
submitted 2 years ago* (last edited 2 years ago) by [email protected] to c/[email protected]
 

I just watched a TikTok about how people used to plug in things to their light sockets when electricity was first becoming popular. And they kept calling the plug a light socket, what rule says it's not a plug that screws in? And why shouldn't plugs screw in? We have material science to make plugs and cables hard enough that if you kick the wire it still doesn't come out. Electrical connections should be more secure. That's all I'm saying.

 

I use manjaro linux and I installed brave using the AUR repo. I keep hearing stories about how Brave is just another ad tracking software like Chrome. What I don't understand is why, like specifically.

Because I downloaded Brave from here. The code for Brave is here. I can build and install Brave and it will be the same as from AUR right?

Ok let me list my questions:

  1. If the sourcecode for Brave is open and is all I need to compile and run the software then where's the tracker. The code base is honestly to big and high level for me and my professional abilities but I'm not that great of a programmer, I'm just really good. If there are ad trackers or adblock-blockers then I should beable to see it in the code right? I just need help actually seeing these lines of code.
  2. I've used wireshark to monitor Brave in isolation and I couldn't see traffic that I would disapprove of. It is also very realistic that I just don't know how to recognize.
  3. Just because Google maintains chromium doesn't mean that chromium browsers have to track you. Chromium is opensource and it shouldn't cost much to comment out trackers. So wasn't this already done? And if not can we actually see the lines of code that track us?

Really what I'm looking for is help coming to the conclusion that these browsers are that bad for me myself.

 

I know every distro has its own package manager, some of them share the same package manager, you can even install other package managers.

Besides the source there getting the content from, the formatting of the download and compilation phases, and maybe even a specific programming language; I still can't wrap my head around why there need to be so many?

What rule says that every distro needs its own package and manager to install any package?

view more: ‹ prev next ›