Demolishun said So I have been setting goals for my interaction with people on devrant. I had the goal of getting someone to spray liquid out of their mouth in response to something I posted. I believe I had one person self report on this (maybe two). My next goal was getting someone to shit their pants in response to a post. I figured with @b2plane here my chances were a lot higher. As of Nov, 2024 nobody has reported on this. That goal still stands.
Maybe some new goals for this next upcoming year should be:
1. get someone to rage quit (not sure this in a good goal)
2. get someone to "dad splain" to me
3. triggered downvotes (I have had some in the past, so this is a recurring goal)
4. inspire anti-posts (some of you are natural inspirers it seems, respect)
5. actually create funny memes (maybe not possible, shitposting will continue though)
Does anyone have ideas for some good edge lording goals?,Staring at computer trying to figure out why I can't read a float from modbus. I swapped the bytes correctly for my platform. I also ensured the endianess of the words matched my platform (byte endianess is not the sames as word endianess, fml). Was driving home thinking about what could be wrong. My mind saw this code:
uint32_t newint;
for(int count=0; count<2; count++){
newint |= words[count] << count;
}
Then I am fuck! It should be:
newint |= words[count] << (count*16);
This was later turned into float. I kept getting values in the 1e-40 or some shit. Now it makes sense. The upper word was not set.
This is such newb shit. Fuck you newb shit I should just know!
Reading more I realized that the endianess of words can vary between devices even though the spec calls for big endian words. Fuck you non-compliant vendors! So I gotta add a flag for fucked up devices. Fine. The pay off is a generic way to add modbus to our opcua server. I want this easily editable in the field. For now it is readonly. So that makes it nicer.
Just a little torqued that I solved this driving home instead of at work. Too close to the code. I think tomorrow I will have my boss review it to tell me of other logical crap I missed.,How much trouble am I asking for in allowing for very large strings in attributes of json data?
I went and looked at the maximums for the string in json strings. I cannot see any real limitations. I did see if sending json data to a browser that it should not be more than 40MB. That seems excessive. I also checked my internal data types. The string can hold 2GB. Then there is a the server it will be served from in OPCUA. Which I saw discussion of strings in the 77KB range.
We are using a json file to configure what points to read from a modbus device. I am adding fields for name and notes. I could limit these fields, but part of me wants to see if some customer tries to make the world burn. For the most part we will be editing this file. But the customer may want to as well.,So this just happened and I am mystified as to how. When I talk on the phone with my cell phone in my left pant pocket I get a sensation of being poked with a hot pin in my leg about 1 to 2 inches above the phone. It almost feels like the sensation of a bee sting. It happened the other day as well. I did not have this sensation with my 4G phone I just retired. My new phone is 5G. Its the most random thing and I would not have believed it. So I search a bit and some dude has been experiencing some weird phone related pain for like 20 years. Of course, none of the replies are constructive. Just assholes poking fun at someone who is trying to understand what they are experiencing.
I checked all of my clothing and there is nothing like a pin or anything stuck in my clothes. The temperature outside is about 32 degrees. So nothing actually stung me. I am going to be pissed if its actually my phone. Going to try putting it in another pocket to see what happens. My hope is its my clothing pulling on a damn hair or something. But it didn't do this at all when walking around the building without my phone. Just when I walked outside.
I can still feel the pain lingering in my leg with my phone on the desk. I checked and the spot where I scratched at it is red. Just another weird thing to deal with I guess.
I always thought electrosensitives were nutjobs. Now I am not so sure.,Anytime I see a reference to Elder Scrolls VI on reddit I do a "RemindMe! 5 years".
I also am predicting it will be absolute shit.,To anyone I offended this year:
Work on yourself so I don't gotta do it again in 2025.,This is too perfect...,Frustrated that my build system wasn't recognizing a file change I added to my code. It kept telling me that a function didn't exist in the linked object (linker error). I checked everything and stared at this shit for about 15 minutes or more. The signature matched, the function existed, the relevant source files existed. I was starting to imagine impossible scenarios. I cleaned the project and recompiled. No errors, everything linked just fine. Fuck you? I guess...
So I decided to needed to walk around so I went into my bosses office.
me: I don't want to program anymore.
boss: What do you want to do?
me: Shovel shit.
boss: They are the same thing.
me: True...
TLDR: Tool and possibly skill issue results in frustration and humor.,The memes just write themselves sometimes...,Why do we post here? Is this just an outlet for our intrusive thoughts? A therapy session for things we can't articulate in meetings? Being able to say controversial things we are not allowed to say other places?
It feels like this place exists outside of time and reality. It really is refreshing, sometimes frustrating, and sometimes really offensive. Things that exist here that would not be tolerated elsewhere:
1. alternate ideas of software, sometimes politics, theories of existence, people liking javascript
2. ostream (I love you man)
3. bullying
4. saying what you really feel
5. telling people to fuck off
What would we do without this place?
Meanwhile my intrusive thoughts:,I installed VSCode in Linux. I keep finding thing about Linux that make me think its kinda shit. Maybe its just Gnome, but I don't know.
So I startup VSCode. Blank screen. I do a search and find its gpu shit. I start it up with argument to disable gpu accel. Then I go into settings and turn of gpu accel. It now works. Cool that it has these options.
What made me install VSCode. I installed VSCode because I wanted a decent json editor. I search for Linux json editors and I am bombarded by online editors being pushed by Linux websites. Who the fuck in their right mind is going to use a fucking website editor for json data?
I "had" a decent json editor by running notepad++ under wine. But since I turned on GPU in Linux Wine shit just doesn't work correctly anymore. Which is the whole reason I went looking for an editor.
How can a platform like Linux take itself seriously when turning on GPU accelerated drivers breaks every fucking thing in the OS?
Why did I enable GPU accel drivers in Linux? Because updating to 22.04 caused all my java apps to draw incorrectly. Enabling GPU fixes this shit. So I enable GPU to fix one thing and then it breaks a bunch of other shit.
This shit right here is why I have trust issues with Linux.,Dude1: What is up with Thomas E. Kurtz?
Dude2: Basically? He is dead.
Dude1: Dude...
RIP,LOL, all the PDF enthusiasts are going to BlueSky!
Buahahahahaha!,I don't know if AI makes people dumber. But it lends me to believe that people who swear by it might be dumber.
Time will tell how useful the code generators are.
I should go play with chatgpt today...,Used to think I was a hot shit programmer. Self taught (mostly) and could make all sorts of shit happen. Then I started reading other people's codebases. I got a huge dose of humility. Learned a lot from other codebases in the process. Eventually after a lot of languages and lot of practice I got a programming only job. Started reading through the codebase. Holy shit there are way worse programmers than me. There is some really good code in there too, but 20 year old wtf code too. I assume my perspective comes from seeing what good code can be. I still have a lot to learn though. That is the fun part. You can spend a week on a minute detail of one language or one concept.
So here are a few fun questions:
1. What is the worst code, codebase, or programmer you ever met?
2. What it the best code, codebase, or programmer you ever met?
I have seen a few codebases on github that just told me to walk away. Some of the best code I have found has been in game engines. Probably because I look at a lot of game engine code (sampling bias).
The coolest library I have used has been Construct (Python lib). It is a reversible protocol library. It can deconstruct or construct a data stream.
Leaving the off by 1 or more error in my post.,Took week off work. Didn't do shit on my projects. Just played Skyrim and became and ultra wealthy merchant than raises people from the dead. Found a mod that let me manage up to 512 corpses so they won't despawn. Placed a bunch of dead people in Dragons Reach to traumatize Balgruf's children. I put a fucking dead mammoth and giants in there! lol. Now I want to make some plugins for Skyrim written in C++. Been wanting a generic networking plugin. Guess I should have done that last week. I keep thinking of things I want to do in Skyrim I cannot do. Helps me make my list of features for my own games.
I avoided devrant all last week. I lurked a couple of times, but didn't really participate. Hung out with family and killed stuff in game.
Last night I air fried some leftover turkey using onion dip, fried onions, and a little bit of flour. Turned out really well.
I feel pretty good after just doing mindless shit for a week and hanging with family. Got another week coming up in December. Need to work on side projects though. I actually want to program stuff now. Was getting so I didn't want to look at code before.
What do I see when I get back? @retoor is a new user and has an alt that is a bot too. Did anybody die? Did anyone come back to life? What the fuck is wrong with you people? (retoorical question I know).,"Microsoft Visual Studios 2022 Community Edition"
or
"Microsoft Visual Studios 2022 Communist Edition"
Get to work on porting C++ code to C#. It will be a fun change of pace.,Weekly Friday Fuck You All!
Have a great weekend! Fuck you...
Enjoy extra sleep if you can. Fuck you...
If you have a "fuck you" moment to share, please do. Fuck you...
It can be a "fuck you" or a "fuck me" or "wtf you" or any kind of "fuck" moment.
Also, one last thing: FUCK YOU!!!,So I am doing some learning of C#. I wrote an https server in Python for a specific task. Now I want to convert it to C#. However, I do want it run as a server, but want some limited controls on it as a window. So I am looking at C# solutions for desktop applications. It seems to be a cluster of unsupported and bug ridden. I don't know if I should do: WinForms, WPA, or Maui.
I don't want to spend a lot of time learning a new gui system. I want stupid easy shit controls. I don't want to html anything.
So I guess I want something for C# that is stupid easy gui builder that barely runs. After reading reviews I just don't know what fits this bill yet.
At least my python server is running...,It is 2024 and C# doesn't seem to have a simple way to parse json data into dynamic objects. It wants some husk classes to read into. I will have to find a good third party library for this. I was thinking C# would have this, but no. I see there is something from asp stuff, but I have no clue what I have to import to get that.,What I learned about C# this weekend:
1. I am shit at C#
2. There is a nice selection of libraries both from Microsoft and third party.
3. I like a lot of the design decisions to not make foot guns. Like you can't use an int as a bool. You must be explicit so you don't have hidden type conversions.
4. WPF isn't terrible, but it took me a bit to figure out how to make sure the front end can see changes by triggering events when a property changes. I knew this was a thing, but it took forever to figure out how. The new terminology for things is tripping me up.
5. I am shit at C#.
So what do I get out of 1.5 days of banging my head against the wall? An https server that simulates a hardware device and exchanges json messages back and forth. It does what my python code is doing now.
I found a nice library for https:
https://github.com/chronoxor/...
I learned quite a bit reading the code from this library.,3 pm salami and cheese...,What kind of soup do programmers eat?
Alphabit Soup,I am experiencing deju vu:
https://reddit.com/r/csharp/...
dude: Why doesn't C# do this dynamic "like" thing?
community: How dare you like something from another language?! Don't you know C# is strongly type?! Dynamic is a curse on your children! <gets out torches and pitchforks>
random dude: Why don't you use <this method> to do this?
dude: Thanks "random dude", this does what I was looking for with a bit different syntax than I was expecting.
lol
Programmers are awesome!,Just learned that the existing US administration is going to restrict AI to a just a handful of allowed companies. They are talking about limiting AI like they did physics during WW2.
If you don't hate your government then you don't know the evil shit they are doing.
Not sure what will happen come January.,My boss uses chatgpt to code all the time. I watched his workflow and he will use chatgpt not for code, but to act like a search engine. He seems to be effective using it like this.
I struggle to include chatgpt in my workflow at all. I am using it to help learn C# to clarify things I cannot find in search. It doesn't always help.
So I have mixed feelings about using it in my work flow.,Merry Christmas, everyone!
I would send you all Hawk Tuah coin, but I just spent my bonus shopping for ungrateful people. Okay, they aren't ungrateful, just unappreciative.
Anyway, gonna try and avoid devrant for probably a week.
And for you other assholes: Happy Festivus!,So I decided I needed to tell you all a funny Christmas story.
I got a bunch of shirts for Christmas (not surprising). A couple of them were t-shirts and one was a red plaid shirt that buttons up. So to show my appreciation to my wife for the gifts I decided to wear a t-shirt and the plaid shirt (left unbuttoned so you can see funny t-shirt). I put them on and went to talk to my wife in her office at home:
me: Do you know what I would do if I had a wife like you?
her: I dunno, what?
me: Two Christmas shirts at the same time.
If you don't know the reference here is a link:
https://youtube.com/watch/...,So I am navigating the hellscape called vcpkg. It is a hellscape to me because I don't understand fuck all about how its supposed to work. It has things like manifests and keys which point to repo commits and other weird shit.
I am trying to learn how to get it to install boost.asio today. It keeps installing this old as fuck version 1.80 instead of latest 1.86. I try specifying the version in the vckpg.json file of my project. Then it starts throwing hands and saying it doesn't have port shit for other boost libraries. I try to provide versions for those and it throws more hands. I search and search to no avail. So I give up and let it install 1.80 and all its dependencies. Then its starting fucking erroring out compiling boost.coroutines. So I search on that. Nothing of substance. Just flabbergasted at this point. Does boost work at all with msvc?
I am looking through the errors and is says run "vcpkg update". This fails because I am in manifest mode. Why didn't it give me the command for manifest mode, is it stupid? Then I find the command for manifest mode: "vcpkg x-update-baseline". This updates it commit number is some random file I don't know about. Still don't know what the fuck that does. Then I run the config again on my vcpkg.json. This starts installing boost-asio 1.86. Okay, that is what I wanted in the first place.
So I let it run and do its thing. It installs everything and compiles everything. Its all ready to go. At this point I am like what the fuck is this shit. I don't really want to learn any of this shit. Yet there is someone somewhere that probably can't get enough of this. At work I will probably eventually need to learn this, along with cmake, and all its quirks. It just makes me tired to learn this just to get to a point to write one line of code. I am sure vcpkg will save me time and energy at some point. But 2-3 hours of guessing is annoying at best.
The last time I used boost on windows I just downloaded the source and built it. It was simple and then I just had to provide paths. vcpkg is nice in this respect. Especially when I upgrade the library.
I don't know what the point of this rant is. Getting tired of fighting tooling I guess. Already learning black magic trying to setup my build environment for making skse plugins. Docs are almost non-existent. I did find a discord with some cool people though. Respect to the trailblazers of this art.,Want to give Google a giant "fuck you" to their AI results?
https://arstechnica.com/gadgets/...
I now have a custom google search that Firefox defaults to. It looks like I don't get AI results on first try. YMMV,I am using a bunch of vcpkg based cmake projects in visual studio. I realized I don't understand how any of this works from the ground up. So I found this article:
https://learn.microsoft.com/en-us/...
This was an interesting trip getting this to work on a newer version of an auto generated cmake project in vs. It took a bit to understand how to make the vcpkg preset work with the existing generated presets for debug/release x86/x64. Then I had the additional pain of figuring out how to include only the things I actually want from boost. I kept seeing conflicting methods because cmake versions keep changing how it is done.
I am glad to say after much swearing I finally figured out the modern way of using cmake with vcpkg and vs. It is very satisfying when everything downloads, configures, and compiles. I think vcpkg will be not that bad to work with. Still don't understand manifests yet.
Right now my libraries are not version selected. I should probably do that before it decides to install the next latest version of boost or something.,Doesn't taste like coffee...,I have had tacos 2 days in a row now. They are so good from the Mexican roach coach I get them from. I have eaten at various restaurants in the area and the dang tacos from the roach coach are better than any of them. $2 a taco man! I don't care if its cat. There used to be cats that hung around their bus. Haven't seen them in a while though...,My current computer is starting to overheat playing games that used to run fine. Like thermal shutdown I think on the GPU. So I need to have the thermal compound redone. Then I will be out a computer while this is being worked on. I would have a local shop do it, but would rather a vendor that sells thousands of computers do this.
I am thinking I might buy a newer computer and then send the current one in for repair. Then let my kids use this one when fixed. I just got this one where I wanted it disk and setup wise. I also would be stuck with Win 11 on the newer computer. Everything I do on my home computer is windows centric. The people I support, the stuff I run, everything. That is the biggest negative in getting a newer computer. I would rather buy one with windows 10. But they won't even sell that anymore.
The newer computer is much nicer though. 4070 over a 3060. Newer processor with 32 threads. Thinking of going 17" screen instead of 15". So I like the idea of the compile times being faster.
I am loathing the idea of setting all my programs back up again. This sounds like a nightmare. I don't even like thinking about it.
Fix the old reliable thing and/or get the new shiny toy. What bothers me is that it has only been since 2021. I don't remember having to redo heat sink compound on older computers. I keep reading this is a thing. Wtf is happening to the compound? Is it made to fail?,This is to me the most amazing tattoo I have ever seen. This dude got a mini lemon on his head and he made lemonade with it.,Found a meme about @retoor,Mind Blown...
So I was in a meeting with another dev talking to a customer. He instructed the customer to open a command prompt in Windows. Then to use the SSH command. In my mind I was assuming he had told the client to install SSH beforehand. Later I started thinking about it and did a search. Apparently Windows 10/11 have a version of OpenSSH installed by default. I had used Windows 7 in the past and always installed git shell to get this. So in my Windows 10 I did the same thing. git shell also supports aliases and other nice *nix like scripting features. So it is always a win.
So hear I am realizing SSH is installed by default on newer windows systems. Like damn, I never thought I would see the day. I think I still prefer git shell, but having SSH by default is nice to know. I know they got the subsystem shit to get Linux. But not everyone wants or needs that.
I probably should learn what is in Windows these days. lol. I mean, besides malware.,If I've offended you with my posts I am sorry.
I honestly didn't think you could read.
Also, its FUCK YOU ALL FRIDAY!,Okay, this just fucked with my brain. We are supposedly seeing organisms (including humans) doing better in radiation fields.
https://youtube.com/watch/...
Not so sure about the ending, but I am also messed in the head about some of the thinking going on with consciousness. I suspected our thought processes are not completely body bound. I guess if the mind is interacting with a separate entity then it would need a physical mechanism. I dunno, seemed really speculative.
This guy usually does a rug pull and shows how everything in the beginning has doubts. He didn't do this on this one.,So I think I figured out something that may be a huge game changer in the gaming industry. TES VI has taken more than a decade to even be a thing. We got an announcement a few years ago about TES VI, but really nothing since. At that time they said TES VI would be in production after Starfield release. Another odd thing they said was that the technology needed to create TES VI was not quite ready yet. I am unsure as to when they said this last bit. I think before they mentioned Starfield release. What is this tech?
I think to understand what this tech is you have to go back to the roots of TES. One of their early games was called Daggerfall. I think this was TES II. The next one was TES III Morrowind. Then TES IV Oblivion. Finally TES V Skyrim. What has been happening on each release? The world of Daggerfall was huge, it was also generated content. That was the only way to go to that scale at that time. Then Morrowind came along and was big, but no where near Daggerfall big. Oblivion came along and decent size, but I think it was still smaller than Morrowind. I think similar with Skyrim. The worlds were getting more detailed, but due to shear manpower it became expensive to fill these large worlds.
I think you have probably figured out where I was going with this. What is the missing tech TES series wanted for large worlds? I think AI is the next big step for generating large worlds like this. From generating textures, terrain, models, cities, forests, etc. Obviously there will be procedural gen mixed in with this.
People keep wondering why TES VI is taking so long. I think Bethesda wanted to go big again on its worlds. But at the scale they wanted to do it would take way too much manpower to create all the assets for the game under any kind of budget. TES V has made them a shit ton of money. So maybe they have the wiggle room to do something truly groundbreaking with TES VI.
Anyway, that is my guess. They were waiting for the AI tools to be available to go big on their open worlds.,Day 69 of "learning C#" or "this isn't C++":
Spent an hour maybe trying to figure out why I can't see Trace/Debug messages in the Debug output in WPF app. I have been doing a lot of testing in a Console app and Console.Writeline does what I need for testing and understanding how it works.
Today I am working a WPF app. I am using Trace/Debug.Writline and I get nada. Read up online and it "should" be working. I am compiling for Debug. I think, do I gotta actually run as Debug session to get output? Well, um, actually fucking yes. I know I can get console output if I want by changing app type/option or some shit. Its a group project so I don't want to mess with that for now.
Fuck you C#, WPF, visual studio! Whoever the fuck thought that was good default. I mean it probably is a good default performance wise. Fuck you anyway. lol,So this conversation went to HR territory really fast:
ITGuy: Do you have a cable I can borrow?
me: Maybe, why?
ITGuy: My brand new cable won't work on this printer.
me: <hands my super long cable to him>
ITGuy: Hey that worked!
me: I will test the other cable.
ITGuy: <leaves>
me: <finds no issues and works fine with my computer testing with a speed test>
me: <talking to other guy> I think maybe he didn't plug it in all the way. Sounds like a personal issue.
OtherGuy: Wait, what?
me: I think anything I say after this is going to sound bad.
OtherGuy: Yeah, I think so too.
Things I thought about later:
My super long cable worked, but the ITGuy's shorter cable didn't. Maybe he needs training for plugging in cables?,I have noticed that most of the mentally ill posts on here are from Javascript devs.,dude: Super Bowl!
chick: Can I have the soup in the bowl?
chick: <Jumping out of bathroom naked>
chick: Super Pussy!
dude: I will have the soup.,I am so naive about LLMs. I wanted to know if I can just make one trained on text I produce. I don't even know what that means. But I read that it can take a huge effort to train one.
The more I read about this subject the less I understand. I assume some are available commercially:
https://github.com/eugeneyan/...
But I don't even know what that means. If I wanted to make an LLM to handle text interactions with NPCs what are we talking about here? Is it a multi-gigabyte file? Do I have to worry about what it was trained on? I don't want one that has infinite knowledge. I don't want it to have any frankly. I want to provide its reality as the sole creator.
The problem is I don't even know what the question is to ask it properly. I assume I need something that teaches it english, but then what comes after that?,So I uninstalled Xbox App off my computer like a week ago. Today I get a notification to check out XBox Game Pass. So I find in notifications it has separate app or thing installed to notify about shit like that. So I removed that.
I also don't like the pos Game Bar. It won't let you uninstall in apps. So I searched and found this command:
Get-AppxPackage Microsoft.XboxGamingOverlay | Remove-AppxPackage
Good bye MS POS Gaming Overlay. Good bye Gayme Pass Notifs.
So I am on Pro version of Windows 11. Is this shit not able to be removed from Home version? What a garbage future we are in.,Going to be drawing patterns during a weld using a high powered laser. This pattern determine the shape of the laser point. Not sure on radius of laser output. Probably mm/um in size. Won't be able to "see" the pattern. Anyway, I suggested default pattern chains: 666, 420, 69. So far nobody really likes those options. Maybe I will do emojis.
I think I will need to optimize pattern distance between points. So I might get to do a real algorithm for this. I have not seen the requirements for this part yet. But I am thinking maybe A* for shortest path to next point. Or maybe some flood fill. Could be fun. It would be wild to use a gaming algo to melt metal. lol,So today I was trying to get a java program to run in Linux that needed a bat file to run in Windows. I was looking at the file and didn't know what it would take to do all the commands in Linux. So I said fuck it and had my chatgpt account do the conversion. It actually did it perfectly and replaced Windows specific commands with Linux equivalents. It reworked the data and set environment variables correctly. It also ran the java program.
Unfortunately I think the Java program had made assumptions about the environment and used hard coded Windows style paths. Rather than using some paths in a filesystem generic way. So it just excepted when trying to read files that were there, but had wrong slash in filename.
It was a good test though. I may have chatgpt take a whack at other scripts I don't want to take the time to look up syntax.,I hate tech.
Trying to find a solution to problem in tech:
- 5 to 10 minutes searching for the correct terminology for the problem you are having.
- 5 to 10 minutes trying to find a solution.
- 5 to 10 minutes trying to find the correct terminology because the first terminology was wrong.
- 5 to 10 minutes finding the correct solution for your platform version.
- all the while dodging sketchy AI results
- Either you find a solution or you find it can't be fixed on your platform because X vendor is a POS.
So, this is not quite what happened today, but it pisses me off. I cannot imagine not being non-technical trying to use any platform this day and age.
I am trying to access data off of a backup. The data I want is in a user directory on a windows backup. I cannot get to user content because the user for the machine the backup came from is not known. I try with explorer and it says I need to elevate priv. So I do. It sits there and just spins icon doing nothing forever. The volume for viewing the backup is read only (actually a good idea, but annoying, can't change permissions).
So I remember that explorer artificially enforces permissions on folders. So I get Q-Dir which has worked in the past. So I get it installed and it fails to elevate privs. WTF! Everywhere I search I see no solution and shitty AI results. Then from the back of my mind I remember. Run Q-Dir as admin (which doesn't work on explorer due to artificial enforcement). So I do. It can access anything from the backup regardless of location.
WHY THE FUCK DO THESE BULLSHIT BARRIERS EXIST? It only causes frustration from users and locks people out of their data.
I hate technology.```