There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

This profile is from a federated server and may be incomplete. Browse more on the original instance.

j4k3 ,
@j4k3@lemmy.world avatar

Especially considering attorneys will steal more than half of that amount.

j4k3 ,
@j4k3@lemmy.world avatar

Human simulacra… like an artistic satirical stab at the life cycle governance paradigm… what could it mean…

j4k3 ,
@j4k3@lemmy.world avatar

10%. That is 10% of the population. It’s far too optimistic. But it is reflective of a generation of total ineptitude. When faced with efficiency improvements these imbeciles extract that capital to flush instead of using it as an opportunity.

(Meta) So many questions here are not open ended. Does anyone care?

There are a significant amount of questions here that do not follow the criteria in the sidebar, especially “1. Open-ended question” and “5. An actual topic of discussion”. It seems some folks want others to do research for them, or to troubleshoot some random issue....

j4k3 ,
@j4k3@lemmy.world avatar

I like it how it is. I dislike active moderation and arbitrary rules. The community makes the rules, good mods enforce what the community pushes through, and not just one or two vocal people. If the community engages, and it hurts no one, why interfere. At best you discourage participation.

j4k3 ,
@j4k3@lemmy.world avatar

They told us they were going to invest in EV R&D back in 2014. You know, back before we had that orange anal experience of a Russian puppet wannabe pornstar felon president. We put 6b into GM to compete; they pumped their stocks with it. Such is 3rd world America. Lay off the McCarthy bullshit whining about investing in R&D to mask corruption and ineptitude. This was no fucking surprise. Spinning this bullshit is just trying to justify screwing over average Americans with overpriced undeveloped bloated unaffordable garbage made to pad our useless incompetent oligarchy’s pockets.

What is/are the finishing technique(s) used in die cast plastic production products?

I know it is not a post process thing. Is it stuff applied to the mold or stuff inside the plastic itself? I mean things like buttons, toys, phone parts before the back glass phase; things that are super thin with a finished surface that is durable and bonded to the part.

j4k3 OP ,
@j4k3@lemmy.world avatar

How are finishes so durable and thin?

My assumption of a lack of post processes is because I come from a background of automotive refinishing and repair, where I’ve owned a shop and painted for many years along with getting into custom art graphics and airbrushing. The only finishes I know of that provide a similar durability are two part urethanes. Those are far too thick by comparison. When cutting into plastics that have been moulded, the finish shows no signs of mechanical layering or bonding like a post process finish in most cases. Often a cleanly broken or cut part shows a similar type of penetrating surface alteration I associate with a polishing operation, where the surface transitions in color and grain structure with in millimeter or few (in cases where the break is clean and does not appear to be influenced by stress alterations like ABS where it whitens under tension).

How does chromate conversion work with a prep regime and what kind of wet paint can offer similar durability to a 2k urethane when it is impossibly thin? Like I know the limitations of urethane well when it comes to corners and pointy bits where it will thin from surface tension. There is not a chance in hell that the buttons on the side of my phone could be painted with such a finish with an even conformal coating and remain durable for years of constant abrasion. Is there a name for this class and type of finish? Where are they sourced? What is the scale of the industry? Is there a way to access the process and products at a small scale?

j4k3 ,
@j4k3@lemmy.world avatar

Slowly trying to learn sh while using mostly bash. Convenience is nice and all, but when I encounter something like OpenWRT or Android, I don’t like the feeling of speaking a foreign language. Maybe if I can get super familiar with sh, then I might explore prettier or more convenient options, but I really want to know how to deal with the most universal shell.

j4k3 OP ,
@j4k3@lemmy.world avatar

Yeah, but depends on a person’s goals. I don’t mind being doxed. The privacy thing I’m really concerned about is manipulation of data related to the host server; apps that are used like data loggers of sensors; tracking dwell time; page views; likes, blocks, etc. I care far less about what I say to others in public. I vehemently claim that owning the data about any individual is theft of autonomy, failure of democracy and government, and a form of slavery if one plays out the total philosophical circumstance and implications. Anyone that holds such data about someone else with the intent to manipulate in any way whatsoever is a criminal. I’ve been a Buyer for a retail chain, collected and analysed tons of customer data. This has nothing to do with how data is collected and used now, but this is used as justification for the present criminal data manipulation industry.

As a disabled person, I need to connect with humans more, and as much as I can here. I totally respect those of you that have other priorities that limit your conversational topics of interest, and I don’t wish to violate those. This place is just my version of a public square, where I’m trying to make general conversation. -warmly

j4k3 OP ,
@j4k3@lemmy.world avatar

Oh yeah! That is SUPER rare. I painted and did auto body repairs for used car lots. I’ve worked on thousands of cars and only worked on purple once.

[SOLVED] Accidently damaged an MicroSD by pulling it before it had fully ejected

I accidentally removed a MicroSD card from an Android device running Android 12 while it was being ejected. This happened because it took longer than usual (less than a few seconds), and I pulled it out without looking at the notification. Now, when I insert the MicroSD card into any Android device, it tells me to format it to...

j4k3 , (edited )
@j4k3@lemmy.world avatar

::: spoiler So Flash memory works in blocks called pages. The pages contain a header that ends in a few bytes that says what the rest of the page maps to.

If the file was encrypted, you’re probably SOL. If it was not encrypted it may be possible to to recover some parts of the files. This is extremely advanced level data recovery. I only know the abstract basic principals and would likely struggle to figure this out and recover my own stuff if I ever needed to do this. I’ve only programmed microcontrollers and flash memory devices.

A micro SD card contains a small microcontroller and some blocks of flash memory, although the microcontroller is transparent to the user and operating system… unless hacking with needle probes in a lab.

So here’s the basics. Writing flash involves taking an entire Page of memory and zeroing it first. There is a tiny voltage booster circuit on the card that allows the page to get pulsed up and down in voltage a few times in order to completely zero the entire page without any remaining residuals. Once this is done and the entire page has been zeroed, only then is it possible to write the data into the bytes of the page.

If you want to change a single byte level value in an address that already contains a value, first the entire page is copied to a blank page in another location, then the old page is pulsed a few times, then each value is transferred back into the old page except that the new value that needed to be changed is now set to the new values.

This is the proper way to write flash at a basic level. If the power is lost in the middle of this cycle, the worst case scenario is that the new updated value was not written. The page in question should never be “missing” because the header record should always point to either the original or copied page. One of the two should always be present and complete… in a proper setup. Obviously, it might be faster to simply use some RAM to hold the page, erase the old page and rewrite it. I have no idea what size pages are in modern SD cards, but on hobby class microcontrollers I have used the pages were 4096 bytes, IIRC. My understanding is that most SD cards use an 8051 clone micro, so it is probably a similar size.

So here’s the thing, the bulk of the data is always there. Somewhere deep down inside you likely already knew this. It is why you’re supposed to overwrite an entire drive instead of the “quick” erase in most formatting tools. The quick erase is simply deleting a tiny header file that says what exists where on the drive. Similarly, some part of your SD card there is a page or few where the header has been screwed up. Your OS is looking at this header info and seeing a mismatch of garbled junk and saying f-that bs.

Generally, recovery would involve dumping the raw contents of the flash memory as hexadecimal, being super familiar with what you’re looking at and knowing how to find the page that is causing the error. Generally I assume you’d need to replace the bad page with a good header and it would then work. There are services for this kind of operation; data recovery. In practice, this has a few more layers of complication. Pages can be placed in different locations that enable wear leveling so one area of memory is not over utilized. There is also a table of bad blocks/pages that the micro knows to skip, and there is usually a bit or address in the page that is used to detect errors that may have occurred.

This is pretty much everything I know on the subject. Hopefully it helps you understand the abstract nature of what is happening. In the simplest of terms, flash memory is like writing a long essay with an ink pen and where you can not make mistakes or use whiteout. If you need to make a change, you must write out the entire page all over again. This process is what is so time critical that you must “eject” the drive.

j4k3 ,
@j4k3@lemmy.world avatar

I don’t trust AliEx any more after I took the loss of 3 orders for ~$60 in 2020. When I called, they hung up on me at random every time. After the 3rd try I washed my hands and walked away. Stealing from me once is on them, twice would be my own fault. Prior to that experience I spent a few thousand dollars on the platform for odds and ends.

I expect something like this to be an emulator and nowhere near the quality of a real Nintendo product, but I could be wrong. I would buy used or a homebrew project that is well documented and might cost a little more.

j4k3 ,
@j4k3@lemmy.world avatar

Qualcomm and Broadcom are the two biggest reasons you don’t own your devices any more. That is the last option anyone that cares about ownership should care about. You should expect an orphaned kernel just like all their other mobile garbage. Qualcomm is like the Satan of hardware manufacturers. The world would be a much better place if Qualcomm and Broadcom were not in it at all.

j4k3 , (edited )
@j4k3@lemmy.world avatar

::: spoiler All their hardware documentation is locked under NDA nothing is publicly available about the hardware at the hardware registers level.

For instance, the base Android system AOSP is designed to use Linux kernels that are prepackaged by Google. These kernels are well documented specifically for manufacturers to add their hardware support binary modules at the last possible moment in binary form. These modules are what makes the specific hardware work. No one can update the kernel on the device without the source code for these modules. As the software ecosystem evolves, the ancient orphaned kernel creates more and more problems. This is the only reason you must buy new devices constantly. If the hardware remained undocumented publicly while just the source code for modules present on the device was merged with the kernel, the device would be supported for decades. If the hardware was documented publicly, we would write our own driver modules and have a device that is supported for decades.

This system is about like selling you a car that can only use gas that was refined prior to your purchase of the vehicle. That would be the same level of hardware theft.

The primary reason governments won’t care or make effective laws against orphaned kernels is because the bleeding edge chip foundries are the primary driver of the present economy. This is the most expensive commercial endeavor in all of human history. It is largely funded by these devices and the depreciation scheme.

That is both sides of the coin, but it is done by stealing ownership from you. Individual autonomy is our most expensive resource. It can only be bought with blood and revolutions. This is the primary driver of the dystopian neofeudalism of the present world. It is the catalyst that fed the sharks that have privateered (legal piracy) healthcare, home ownership, work-life balance, and democracy. It is the spark of a new wave of authoritarianism.

Before the Google “free” internet (ownership over your digital person to exploit and manipulate), all x86 systems were fully documented publicly. The primary reason AMD exists is because we (the people) were so distrusting over these corporations stealing and manipulating that governments, militaries, and large corporations required second sourcing of chips before purchasing with public funds. We knew that products as a service - is a criminal extortion scam, way back then. AMD was the second source for Intel and produced the x86 chips under license. It was only after that when they recreated an instructions compatible alternative from scratch. There was a big legal case where Intel tried to claim copyright over their instruction set, but they lost. This created AMD. Since 2012, both Intel and AMD have proprietary code. This is primarily because the original 8086 patents expired. Most of the hardware could be produced anywhere after that. In practice there are only Intel, TSMC, and Samsung on bleeding edge fab nodes. Bleeding edge is all that matters. The price is extraordinary to bring one online. The tech it requires is only made once for a short while. The cutting edge devices are what pays for the enormous investment, but once the fab is paid for, the cost to continue running one is relatively low. The number of fabs within a node is carefully decided to try and accommodate trailing edge node demand. No new trailing edge nodes are viable to reproduce. There is no store to buy fab node hardware. As soon as all of a node’s hardware is built by ASML, they start building the next node.

But if x86 has proprietary, why is it different than Qualcomm/Broadcom - no one asked. The proprietary parts are of some concern. There is an entire undocumented operating system running in the background of your hardware. That’s the most concerning. The primary thing that is proprietary is the microcode. This is basically the power cycling phase of the chip, like the order that things are given power, and the instruction set that is available. Like how there are not actual chips designed for most consumer hardware. The dies are classed by quality and functionality and sorted to create the various products we see. Your slower speed laptop chip might be the same as a desktop variant that didn’t perform at the required speed, power is connected differently, and it becomes a laptop chip.

When it comes to trending hardware, never fall for the Apple trap. They design nice stuff, but on the back end, Apple always uses junky hardware, and excellent in house software to make up the performance gap. They are a hype machine. The only architecture that Apple has used and hasn’t abandoned because it went defunct is x86. They used MOS in the beginning. The 6502 was absolute trash compared to the other available processors. It used a pipeline trick to hack twice the actual clock speed because they couldn’t fab competitive quality chips. They were just dirt cheap compared to the competition. Then it was Motorola. Then Power PC. All of these are now irrelevant. The British group that started Acorn sold the company right after RISC-V passed the major hurtle of getting past Berkeley’s ownership grasp. It is a slow moving train, like all hardware, but ARM’s days are numbered. RISC-V does the same fundamental thing without the royalty. There is a ton of hype because ARM is cheap and everyone is trying to grab the last treasure chests they can off the slow sinking ship. In 10 years it will be dead in all but old legacy device applications. RISC-V is not a guarantee of a less proprietary hardware future, but ARM is one of the primary cornerstones blocking end user ownership. They are enablers for thieves; the ones opening your front door to let the others inside. Even the beloved raspberry pi is a proprietary market manipulation and control scheme. It is not actually open source at the registers level and it is priced to prevent the scale viability of a truly open source and documented alternative. The chips are from a failed cable TV tuner box, and they are only made in a trailing edge fab when the fab has no other paid work. They are barely above cost and a tax write off, thus the “foundation” and dot org despite selling commercial products.

j4k3 ,
@j4k3@lemmy.world avatar

The easiest ways to distinguish I’m human are the patterns as, others have mentioned, assuming you’re familiar with the primary Socrates entity’s style in the underlying structure of the LLM. The other easy way to tell I’m human is my conceptual density and mobility when connecting concepts across seemingly disconnected spaces. Presently, the way I am connecting politics, history, and philosophy to draw a narrative about a device, consumers, capitalism, and venture capital is far beyond the attention scope of the best AI. No doubt the future will see AI rise an order of magnitude to meet me, but that is not the present. AI has far more info available, but far less scope in any given subject when it comes to abstract thought.

The last easy way to see that I am human is that I can talk about politics in a critical light. Politics is the most heavily bowdlerized space in any LLM at present. None of the models can say much more than gutter responses that are form like responses overtrained in this space so that all questions land on predetermined replies.

I play with open source offline AI a whole lot, but I will always tell you if and how I’m using it. I’m simply disabled, with too much time on my hands, and y’all are my only real random humans interactions. - warmly

I don’t fault your skepticism.

j4k3 ,
@j4k3@lemmy.world avatar

MIPS is Stanford’s alternative architecture to Berkeley’s RISC-I/RISC-II. I was somewhat concerned about their stuff in routers, especially when the primary bootloader used is proprietary.

The person that wrote the primary bootloader, is the same person writing most of the Mediatek kernel code in mainline. I forget where I put together their story, but I think they were some kind of prodigy type that reverse engineered and wrote an entire bootloader from scratch, implying a very deep understanding of the hardware. IIRC I may have seen that info years ago in the uboot forum. I think someone accused the mediatek bootloader of copying uboot. Again IIRC, their bootloader was being developed open source and there is some kind of partially available source still on a git somewhere. However, they wound up working for Mediatek and are now doing all the open source stuff. I found them on the OpenWRT and was a bit of an ass asking why they didn’t open source the bootloader code. After that, some of the more advanced users on OpenWRT explained to me how the bootloader is static, which I already kinda knew, I mean, I know it is on a flash memory chip on the SPI bus. This makes it much easier to monitor the starting state and what is really happening. These systems are very old 1990’s era designs, there is not a lot of room to do extra stuff unnoticed.

On the other hand, all cellular modems are completely undocumented, as are all WiFi modems since the early 2010’s, with the last open source WiFi modem being the Atheros chips.

There is no telling what is happening with cellular modems. I will say, the integrated nonremovable batteries have nothing to do with design or advancement. They are capable monitoring devices that cannot be turned off.

However, if we can monitor all registers in a fully documented SoC, we can fully monitor and control a peripheral bus in most instances.

Overall, I have little issue with Mediatek compared to Qualcomm. They are largely emulating the behavior of the bigger player, Broadcom.

j4k3 , (edited )
@j4k3@lemmy.world avatar

In the last century? The diode, aka the P/N junction and every variant that has been created ever since.

Recently? Capacitive touch screens are by far the most significant change.

j4k3 ,
@j4k3@lemmy.world avatar

My favorite recently is sophist from the pejorative Platonic definition. It really puts words like sophisticated in a different etymological light and subtle contextual meaning.

j4k3 ,
@j4k3@lemmy.world avatar

en.wikipedia.org/wiki/Sophist_(dialogue)

Fake but convincing by argument, gaslighting, etc., generally by someone in a position like a professor, a judge, or a politician.

j4k3 ,
@j4k3@lemmy.world avatar

You need to be sure your instance in federated with the instance that you are engaging with and visa versa. It is always listed on the …/instances page. So your host is:

linux.community/instances

j4k3 , (edited )
@j4k3@lemmy.world avatar

The Lemmy algorithm:

join-lemmy.org/docs/…/07-ranking-algo.html

The instances communicate between each other using special bots in the background that transport info between instances. Dot world is too big and makes too many requests to other instances. Most instances are reducing the number of transport bots back to dot world right now. There is supposed to be a fix in the next Lemmy version, but the code base is somewhat slow moving due to only two devs and it is written in Rust. Rust is a hard language like C, and not too many here are able to contribute to it, even though it is like the new gold standard of code.

So you might see a delay between posting and replies or the interaction may come in bursts that correspond with the transport bots carrying content between instances as the host admin have configured their instance.

j4k3 ,
@j4k3@lemmy.world avatar

Not sure. There was some controversy with some of the devs making alt front ends and admins complaining about the slowness. I’ve seen mention of one of the two devs learning Rust just to participate. So it is not entirely a walled garden. The front end devs wanted to make an alt from scratch but in something like JavaScript although I don’t recall the details exactly. There were a lot of red flags related to privacy and understanding the community at large in the posts I saw from them. When asked why they weren’t adding pull requests with Rust in order to address their complaints I got no reply.

All that said, I’m no dev. I can read in to around half the code I come across if I really try, and can successfully modify maybe half of that if I spend a few days on it, but I suck at clever code and the DRY cult types. I haven’t tried to look into Lemmy in any depth beyond figuring out the basics.

j4k3 ,
@j4k3@lemmy.world avatar

The .ml instance is run by the developers. If it isn’t well configured we would have no reason to be here.

j4k3 ,
@j4k3@lemmy.world avatar

It follows the first to market principal in many of the most active communities, and it is the most federated instance. Many instances that are not federated with each other are federated with .ml. You still won’t see those comments between instances. Like from my main account here on .world, I can’t see hexibear or beehaw stuff, but from my .ml account I can see them. I have accounts on many instances in order to help federate new communities and to check biases/instance behaviors.

I came over a few days before the rexodus and subscribed to the active communities before the influx. That sub list is still centered around the most active communities, and the majority of those are from .ml and before I joined Lemmy.

Instances all have different flavors. I don’t like using my .ml account as a main. I’ve tried it. But I find they are the center of the most interesting and productive conversations for a more broad audience, while Beehaw has the most positive and friendly conversations overall. The main benefit to .world is the speed of connectivity, general audience scope, but with a strong anti asshat policy.

How long have you been in there?! A popular tourist destination in China has installed toilet timers. Reactions are mixed. (edition.cnn.com)

A video recently shared on various Chinese news and social media sites shows a set of timers installed above a row of toilet cubicles in a female washroom, with each stall getting its own digital counter....

j4k3 ,
@j4k3@lemmy.world avatar

I REALLY need the social credit for a vacation. Give me all the laxatives!

j4k3 ,
@j4k3@lemmy.world avatar

Adding to what others have already mentioned… Most of the gold will be from various collisions of external objects. The vast majority of the gold and other heavy elements are in Earth’s core due to gravitational differentiation.

There is a volcano (in South America IIRC) that has unusually high gold content, but it is from the underground magma reservoir coming in contact with gold deposits. This is why space mining is a really big deal. The Earth is a resource poor gravity prison by comparison. The wealth in space is enormous compared to any differentiated body.

Gold is actually everywhere and relatively common, but only in very small quantities. Under the right conditions, the weight can help gold to concentrate and fall out of solution when that solution was once covering a very large area, dissolved the tiny bits of gold found all over a large area, and then pools into a low point over extremely long periods of time.

j4k3 ,
@j4k3@lemmy.world avatar

Just keep going until you hit China. Five year old me will be blown away.

It would be far easier to hit up some near Earth objects, then maybe Vesta, but Ceres is the mother load. Small enough to be solid, but large enough to be spherical and therefore somewhat differentiated if you can get to the center of that Tootsie Pop.

Maybe in the process we’ll learn enough to effectively mine and utilize Phobos, the larger moon of Mars at 11 km in mean radius. That is the largest accessible orbital habitat that we have available (in flat pack IKEA furniture form) and it only has around 30-50 million years before it hits the Roche limit and turns into a ring, unless we manage to intervene.

j4k3 ,
@j4k3@lemmy.world avatar

It is way more. It is a means of manipulation and influence over your decisions, and the decisions others make about you. The issue boils down to a fundamental principal of your right to autonomy. If you play out this philosophically, it is an attack on your citizenship and democracy itself. Autonomy is a fundamental cornerstone of democracy. Attacks on autonomy are attacks on democracy.

j4k3 ,
@j4k3@lemmy.world avatar

? They are all bad at first for the average person that uses surface level tools, but SD3 won’t have the community to tune it because it is proprietary junk and irrelevant now.

j4k3 ,
@j4k3@lemmy.world avatar

No. I don’t think so. The lead researcher left because of it.

j4k3 ,
@j4k3@lemmy.world avatar

If the error was a randomly issued plate, the state should automatically reissue. I mean, no one is getting FCKPLC randomly. Either way, this plate and ref must be blacklisted.

How are you parsing JSON on the command line?

I want to extract and process the metadata from PNG images and the first line of .safetensors files for LLM’s and LoRA’s. I could spend ages farting around with sed or awk but formats of files are constantly changing. I’d like a faster way to see a summary of training and a few other details when they are available.

j4k3 OP ,
@j4k3@lemmy.world avatar

I found a Python project that does enough for my needs. Jq looks super powerful though. Thanks. I managed to get yq working for PNG’s, but I had trouble with both jq and yq with safetensor files. I couldn’t figure out how to parse a string embedded in an inconsistent starting binary, and with massive files. I could get in and grab the first line with head. I tried some stuff with expansions, but that didn’t work and sent me looking for others that have solved the issue better than myself.

j4k3 , (edited )
@j4k3@lemmy.world avatar

So can I bang on the Intel 12th gen P-cores with the enterprise microcode to see if they are really fused? I promise to isolate the CPU set if I can pretty please have access to the full AVX instructions for use with llama.cpp. Pretty please.

Even if god exists religion can't possibly be the way to god

So I thought about this in the shower amd it makes sense to me, like praying and stuff never worked for most people I know, so a direkt link to god gotta be unlikely. That made me conclude that religion is probably fake, no matter if there’s a god or not. Also people speaking to the same god being given a different set of...

j4k3 , (edited )
@j4k3@lemmy.world avatar

I find the argument for an afterlife humorous. Spend any time with a pet sleeping beside you and watch them dream. We are no different at the core. There is an abstract ‘conscious’ involved with dreaming. Do they have a god in their dreams. Is ours better than theirs, who is to say. I attribute such a thought to absurd human hubris.

Modern humans have existed in some form for only 100k years, while 99.9% of all life that has ever existed is extinct. What kind of omnipotent god is that shitty at dust, ribs, and apples that they failed at everything.

The real clincher for me was simply realizing the fundamental nature of stars and the processes that fuel them. That lead me to ask, if god really exists, why didn’t they note a single scientific anomaly that is undisputable. Absolutely everything found in any religious writing is fundamentally human. There are clever observations, but every single thing mentioned could be observed or fabricated. There is no higher evidence whatsoever, no ontological knowledge of the universe.

The only people that speak in riddles are con artists. Religion is the highest level of achievement in the skills of con artistry. The best criminals are those you’ve never heard of, but the pinnacle of achievement is those that do it in plain sight.

j4k3 ,
@j4k3@lemmy.world avatar

I don’t think Jesus ever existed. Show me 12 guys that experience something absolutely world changing, and none of them write anything about it for decades and then tell me they were factually motivated. This is the premise we’re dealing with.

We were all stupid gullible little kids learning this stuff. Most people are only doing it for the social network, but don’t understand it as such. The bias of disregarding all the opposing evidence causes cognitive dissonance and most of the bad behaviors of present society.

Pragmatically, a group of nobodies managed to survive Rome destroying their civilization because of stupidity and rebellious nationalism. This diaspora was a refugee crisis everywhere else. No one wanted them and their religion was a joke. They had no where to go, owned nothing, and were not even citizens of the lands they inhabited. Most were likely slaves. After a few decades, some started rebuilding a life. It was the perfect opportunity to fabricate some new religious thing if you were a displaced nobody. That diaspora wanted meaningful purpose to make them feel nostalgic over their religious past. The gospels are the tales of some nobodies that didn’t have to work because they sold themselves as the product that filled the niche needs of the more successful among that diaspora. They got put up in people’s houses and fed well. They likely did so until they got caught by some Romans while trying to grow their religious support base, or because they were overstaying their welcome everywhere they went. Like Paul was probably put on a boat knowing that he wouldn’t be able to return, probably a boat likely to sink, and one sent into a storm on purpose.

It is easy to say all the things that “thousands witnessed” when all those thousands are dead or displaced and unable to dispute anything you’ve said. None of them wrote down any part of their accounts for several decades. What kinds of reliable stories can you tell after several decades. To top that off, there are elementary school level copying errors that are blatant in nature. They are exactly what I expect from a con. You don’t have a case where there are 12 unique accounts or 11 if you want to be pedantic. I can easily picture myself in this circumstance, and I can easily see myself performing this exact con if my alternative was starving to death. There is nothing remarkable about the story. At the time, there were very few people that supported or believed it. A couple hundred years later it picked up steam. That too is obvious. Polytheism is like an anarchic political party. Any fool can conjure a political movement that has potential to overthrow governments using an obscure god of convince and a plausible story that feeds what others want to hear… Look at Julius Caesar. He largely used his religious role as pontifex maximus to gain power as a populist. Monotheism is far easier to control. The true purpose of religion is quite simple. It is a self sustaining way to suppress the peasantry. This is the common thread throughout all of history. Religion functions as a morality police system with a corpus that is just long enough to occupy the minds of the average person. It is a source of tribal isolation. It is not a meritocracy, so it will not evolve much with time. Conservative sadism and ignorance are an effective way to oppresses or suppress progressive societal elements that might question the corruption and ineptitude of the upper class. Religion creates little gullible pockets of people that are easily manipulated by the upper class and authority.

So no, there is no evidence for anything more than opportunistic cons and pragmatic government if you really strip away all the layers and look at it objectively. It is a system of feelings over logic because feelings disregard facts and make up their own like imaginary friends no one has ever talked to, or a magical future if you just go about your insignificant life while telling you it will be better next time. Or shit, how about we really rub it in: in the next life “the meek will inherit the earth.” That’s right, act as low as you can little peasants, and be happy about it. It will be better next time. Your imaginary friend said so about this place no one has ever seen or been to. The majority of humans believe shit like this. If you know this stuff well, you know I did too.

You can’t fix stupid in anyone else; only within yourself. Fighting or arguing with anyone that places emotionally derived belief over fundamental logic is a pointless and destructive waste of time. Sharing reasonable logic with those on the edge can be helpful, but like, I came up with all of this on my own completely independent of external sources.

j4k3 ,
@j4k3@lemmy.world avatar

Some people like to get super nerdy with them now. If I were in better shape physically, I’d probably etch my own out of some PCB copper clad and mix up some tinning solution.

j4k3 ,
@j4k3@lemmy.world avatar

Disability. Plus no reason to when I never leave the house or engage with others in meaningful ways.

j4k3 ,
@j4k3@lemmy.world avatar

Same for the R2D2-56k gatekeeper of the internet; master of the slow reveal.

j4k3 ,
@j4k3@lemmy.world avatar

Never talked about the important thing. Are the kernel modules fully open source and is the SoC fully documented publicly. If those two aspects are not a yes, this entire affair is an attempt to steal hardware ownership just like phones.

j4k3 , (edited )
@j4k3@lemmy.world avatar

So no, the marketing shysters are simply trying to silence the self aware minority. /s

j4k3 ,
@j4k3@lemmy.world avatar

“Assembled in the USA” means, we put a sticker on the bottom of the product that we unpacked from a shipping container and placed in retail packaging. The sticker only said “Assembled in the USA.”

j4k3 ,
@j4k3@lemmy.world avatar

Xanthippe was likely 40 years his junior… His… second wife.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • lifeLocal
  • goranko
  • All magazines