Dookieman12
This account is mostly for shitposting. Don’t take anything it says too seriously.
My notifications stay off because I don’t play chess with pigeons. Get mad.
All my OC is created with MS Paint (not Paint 3D). I know how to use “real” photo editing software, but I still prefer Paint for memes; I enjoy how its technical limitations add a problem solving element to the creative process.
I despise ads in nearly all forms. My art aims to offer the viewer a glimpse into how I perceive them. Colors are often inverted because inverted colors are often perceived as being “ugly” and “harsh” and I think all ads are ugly and harsh-looking.
I try not to spend more than 20-30 minutes on any one piece because I think spending any more time than that indicates a certain level of respect for the original source material I don’t wish to convey, and I want my art to have a certain “vandalism” or “graffiti” vibe to it.
- 22 Posts
- 227 Comments
The joke is the person making the comment. “Ha ha, look how ignorant they are.”
Dookieman12@piefed.socialto
No Stupid Questions@lemmy.world•If Vampire's are semi dead, then how come a steak thru the heart kills them if they are dead already? Do they still pump their own blood?English
105·1 day agoDude, it’s a fictional creature.
According to its technical definition, yes, a meme is an idea that transmits from person to person. According to its colloquial definition, no, when most people use the term “meme”, they’re referring to a screenshot. In the 2000s, though, it mostly referred specifically to image macros.
Yeah, they existed, but they weren’t mainstream and were mostly just simple image macros. In 2004, if you talked about memes in public, it meant you browsed 4 Chan or Something Awful, which made you a loser to most people.
Dookieman12@piefed.socialto
Ask Science@lemmy.world•Regarding the dark energy debate/question, has anyone factored for the output of the stars themselves?English
2·1 day agoThe name “dark”, in reference to dark matter or dark energy, has nothing to do with light or photons; it refers to the fact that they can’t be detected. We haven’t been able to build any kind of device that can measure either or even determine whether they are or are not present within a certain area of space.
As far as we know, they either exist somewhere within our universe, or the equations we’ve “proven” to represent the fundamental reality of the universe as we know it are wrong in some way.
If you ask me, either prospect is equally exciting and interesting.
Dookieman12@piefed.socialto
Ask Science@lemmy.world•Regarding the dark energy debate/question, has anyone factored for the output of the stars themselves?English
1·1 day agoThe universe is expanding. The rate at which it’s expanding is increasing. It should be increasing a lot more; something is holding it back, some kind of energy. We have no clue what that energy is or where it comes from because we can’t detect it. We only it know it has to exist because nothing else makes the equation balance. Since we don’t know anything about it other than it (theoretically) exists, we call it “dark” energy.
Relativity tells us that matter and energy are equivalent. Therefore, all energy has a corresponding particle. Particles have mass. All things with mass are “matter”. We have no information about the matter corresponding to dark energy, we only know it (theoretically) exists. Since we don’t know anything about it, we call it “dark” matter.
Dookieman12@piefed.socialto
Ask Science@lemmy.world•Regarding the dark energy debate/question, has anyone factored for the output of the stars themselves?English
5·1 day agoIf you know pretty much nothing and thought of this as easily as you did, I’d say it’s certain that scientists who have dedicated their whole lives to answering that question have also had the same idea by now or understand why the idea is flawed.
Dookieman12@piefed.socialto
No Stupid Questions@lemmy.world•Why are so many new programming languages being developed?English
2·2 days agoJust wanted to add, the reason JavaScript is on the web is because it’s designed to keep running, no matter what errors occur. This is the opposite of what’s desired from most languages, but the reason it’s a priority for JS is because the web page HAS to work.
This is the reason for a lot of JS’s quirky behavior, such as type coercion. In most cases, 1 + ‘cat’ should absolutely produce a terminating error. But, you don’t want someone visiting your site to have the page crash, so it’s preferable to return bad data than to terminate entirely, so you get ‘1cat’ as your output.
Dookieman12@piefed.socialto
Today I Learned@lemmy.world•TIL that target shooting could be causing brain injuries. Scientists are worried about this. English
3·2 days agoCame here to say this.
.50 AE and .50 BMG are worlds apart. Hell, even the difference between .45 ACP and .45-70 is pretty big.
Dookieman12@piefed.socialto
pics@lemmy.world•I bought a portable 30W solar panel to get ready for the apocalypseEnglish
3·2 days agoYeah, I think I meant Sodium-ion
Dookieman12@piefed.socialto
pics@lemmy.world•I bought a portable 30W solar panel to get ready for the apocalypseEnglish
13·2 days agoIt’s pretty easy to cry about bad math, but it’s a lot harder to figure out the right math.
Don’t worry, I’ll try to do it for you again a second time.
Power consumption varies. Use the average monthly power draw from the solar array, let’s assume for demonstration purposes 1,000 kWh/month.
Multiply that by the cost of 1 kWh from the power company, let’s say 20 cents.
In one month, that means you saved $200.
Let’s assume the solar equipment costs $1,000.
The answer is 5 months, or 5,000 kWh.
Sorry, I’ll make sure the free work I do for you is better quality next time.
Dookieman12@piefed.socialto
No Stupid Questions@lemmy.world•Why are so many new programming languages being developed?English
2·2 days agoIt’s really hard to give a less-than-book-length answer without simplifying a LOT, but I’ll do my best to be as accurate and comprehensive as I can while still offering a somewhat brief answer.
What you’re ultimately getting at is a concept called “abstraction,” which basically means “letting the language worry about it instead of the programmer.”
A computer operates using ones and zeroes, also called “binary”. These patterns of ones and zeroes are interpreted as either data or instructions depending on which processor register they’re sent to. Representing data this way is inefficient and difficult to read for humans. For single-digit numbers, it’s fine, but for sentences, paragraphs, entire programs, representing them in binary takes up a lot of space, so we “abstract” binary by representing it as hex code (base 16, zero through ‘F’). This allows us to show the same data in a more condensed way. This is only one kind of very simple abstraction.
Modern programming languages aim to abstract as much of the coding process as possible. Languages like Assembly that abstract very little are considered “close to the metal” because the programmer needs to do EVERYTHING manually. The benefit to this is that it’s very efficient; the program only does what it absolutely needs to do. The tradeoff is that it takes a LOT of extra time to do everything manually, the margin for error is very slim, and you’re pretty much on your own if things go wrong. Another downside is that, since everything is manual, Assembly needs to be written for the specific processor architecture you’re using.
C is only slightly further from the metal than Assembly, so it’s still very efficient, but misuse is very easy to do, especially by accident. The main benefit is that C code can be compiled. Compilation is a process that does many things, but one thing it can do is take C code and turn it into Assembly instructions that can be interpreted by a specific processor. So, you can write the program once, then compile it to x86, ARM, Mac, whatever. With Assembly, you would need to write a different version of the program for each architecture it would need to be compatible with. Doom was developed in C, which has a lot to do with the “but will it run Doom?” meme.
From there, different languages abstract different aspects to different degrees to make them more specialized to certain tasks.
C++ adds object-oriented functionality to C, slightly impacting performance, but making classes and inheritance possible without hacking memory pointers to behave the same way. C++ is typically used when high-performance is desired, but the code base is still very large. Thr Source engine, and thus, Source engine games like TF2, are written in C++.
Python and other languages sufficiently far from the metal have the benefit of being interpreted, which means the code you write is executed in real-time. This means syntax errors and such can be identified in real-time by your IDE. With C and other compiled languages, you have to wait until you compile your code to find errors. This makes Python ideal for developing many, simple programs where performance isn’t a (big) consideration.
C# and Java are interpreted, but also run inside special runtime environments, which makes them compatible with just about any hardware, but is very resource intensive. Unity engine games like Rust were developed in C#; Minecraft was developed in Java.
Haxe can be cross-piled to C code that can then be compiled to Assembly, allowing developers to write one program compatible with all gaming consoles (Dead Cells, for example) without the performance impact associated with languages like Java.
J and Lua are specialized to complex mathematics and simulations. Lua is the language used to create Beam.NG:Drive and Project Zomboid.
Dookieman12@piefed.socialto
Today I Learned@lemmy.world•TIL that target shooting could be causing brain injuries. Scientists are worried about this. English
3·2 days agoBased on my experience, which includes asking many, many cops from many, many different departments and jurisdictions all over the US, you’re correct. Every single one has told me that maybe 10 percent of cops practice at the range outside of qualifying, and only about 1 percent practice on a monthly basis or better, and those guys are usually on a SWAT team or high-risk fugitive apprehension task force, were prior military continuing their habitual training, or also moonlight as an armored car driver or some other high-risk private gig.
Dookieman12@piefed.socialto
Today I Learned@lemmy.world•TIL that target shooting could be causing brain injuries. Scientists are worried about this. English
4·2 days agoThat’s why I said “most cops”. Training requirements vary wildly from state-to-state, county-to-county, sometimes even department-to-department.
The three biggest cities in the US are Chicago, New York, and LA. Chicago is once a year, New York is twice, LA is four times a year, but only one has to be with duty ammo, the rest are with practice ammo.
I’ve heard of quarterly qualifying for SWAT officers or those on task forces that apprehend high-risk fugitives. But, for the most part, your standard beat cop or highway trooper is gonna be once a year.
It may shock you learn this, but, despite what the media portrays, cops in big cities spend 99% of their time doing rather mundane things like traffic enforcement, domestic disputes, and event security.
Dookieman12@piefed.socialto
Today I Learned@lemmy.world•TIL that target shooting could be causing brain injuries. Scientists are worried about this. English
411·2 days agoIt’s slowly becoming more known. The indoor ranges in my area have started installing ventilation systems, banning pregnant women from entry, providing lead-removing soap in the bathrooms, encouraging people to use it, and posting signs about it in the bathrooms.
But still, many people either don’t know or, even worse, know and don’t care because “I ain’t no sissy” or whatever.
Most effects of lead exposure are reversible with time though.
I think an even bigger problem that even more people don’t think about is the fact that leaded gasoline is still used in airplane fuel (avgas). If you fly for a hobby or live under a flight path, you very likely have more lead in your blood than the most avid of shooters.
Dookieman12@piefed.socialto
pics@lemmy.world•I bought a portable 30W solar panel to get ready for the apocalypseEnglish
31·2 days agoIndeed. They’re all the rage in China right now (I AM NOT A TANKIE). Some are predicting they’re the “next generation” of battery technology.
Dookieman12@piefed.socialto
pics@lemmy.world•I bought a portable 30W solar panel to get ready for the apocalypseEnglish
5·2 days agoHave you ever carried a backpack full of books? They’re heavy af. Probably easier to just take over the library and move everything else there.
Dookieman12@piefed.socialto
pics@lemmy.world•I bought a portable 30W solar panel to get ready for the apocalypseEnglish
23·2 days agoThen do that instead of asking random people who aren’t in any position to know.
Dookieman12@piefed.socialto
No Stupid Questions@lemmy.world•What is a real trip on acid like? Is there any comparisons in movies? I took 3 tabs once and it just turned the world literally black white and gray. Did I miss something like the euphoria or whateverEnglish
4·2 days agoIf you can find a place to buy it, 4-ACO-DMT is legal to buy and own and it metabolizes directly into psilocyn (the same chemical psilocybin metabolizes into).
Of course, you should always use a test kit to verify your purchase.
The good thing about this chemical is that you can dose it out and know exactly what kind of experience you’ll have ahead of time. With homegrown stuff, you never can tell. One button cap might do nothing, or it might make you trip your fucking face off; no way to know which one until it’s already happening. Sometimes, that’s part of the fun. But sometimes, you just want a guaranteed chill time. Not every trip has to result in ego death, naw meen?


Who cares if the program takes ten seconds to run instead of one when it only needs to run once and coding it in Python takes a few hours instead of a day or two in C?
If you need performance that badly, by all means, use C. If you have ten ideas for simple programs and just want to code them real quick without fighting the compiler and worrying about all the little shit that C demands from you, then there’s nothing wrong with using Python.
Everything in life is a tradeoff. Use the right tool for the job.