Recent Posts

Pages: [1] 2 3 4 5 6 ... 10
1
Off Topic / Re: Why do people dislike safety equipment?
« Last post by c[_] on Today at 09:25:00 AM »
So yeah, PPE is annoying, which leads to not using it, which leads to complacency, which can even lead to a toxic work culture.
Same experience with construction. Though I've never heard of people calling others out for wearing safety equipment more so not wearing them. And atleast in here on bigger sites you actually get a hefty fine for not wearing glasses and a helmet while working.

Also my hearing has regressed exactly like this. At start I couldn't be assed to fold my earmuffs on for short loud noises cause they are quite cumbersome and its just progressed to the point where I only wear them when drilling for long periods of time or when I'm listening to music. When I first realized that my hearing had become quite bad was when I got a construction student to come help me do something and I started to cut metal with an anglegrinder and the guy jumped and started holding his ears cause of the sound.
2
Off Topic / Re: Why do people dislike safety equipment?
« Last post by Nicepoint on Today at 06:27:47 AM »
I think it always begins from just the fact that most of them are a little cumbersome. That starts with not using ear protection around sound that doesn't immediately feel uncomfortable until one's hearing diminishes, which in turn increases the tolerance for loud sounds, rinse and repeat until you're half deaf.

I've worked at a lab and I can tell you that constantly wearing PPE like gloves and goggles can just be annoying, even though forgetting either just once could lead to permanent damage.

So yeah, PPE is annoying, which leads to not using it, which leads to complacency, which can even lead to a toxic work culture.
3
Games / Re: Retro Games
« Last post by Goth77 on Today at 02:51:23 AM »
yall ever play dragon force 1 or 2? stuff was fun
4
Forum Games / Re: Describe the above user's avatar with one word v2
« Last post by Goth77 on Yesterday at 09:40:30 PM »
invisible
5
Games / Re: IT'S OVER - Nintendo strikes down Garry's Mod workshop
« Last post by Goth77 on Yesterday at 09:39:48 PM »
I will say it's been super hilarious seeing all the "forget nintendo" reactionaries act up in the workshop in response; nothing says "stable member of society" like wanting to brutally disfigure random Japanese business men you have no true knowledge about because they (allegedly) deleted your Gardevoir OC dupe.
I personally don't wish any bodily harm upon anyone, but lets be honest, Nintendo is a real piece of stuff these days. The switch console itself is a flop in my opinion, it could have been a way better product. It still has the potential to be, but Nintendo is so far up their own ass they can't see the light of day
6
Off Topic / Re: Why do people dislike safety equipment?
« Last post by Goth77 on Yesterday at 09:33:45 PM »
"Lol that's not loud" ~ Coworker that was in the army, repeated by other coworker who apparently shoots guns without ear protection
lol. I guess it works both ways, some people are deaf as stuff, and some are highly sensitive to sound (or certain sounds)

when I was younger one of my first "taxable jobs" was working in a grain factory and they required you to wear ear plugs even though the machinery in the place was relatively quiet. I didn't understand it. After working there for a while I realized the true purpose of those things was to prevent all the damn grain dust from getting into your ears...
7
Off Topic / Re: Software engineering trends that annoy you
« Last post by Tyler66 on Yesterday at 07:16:12 PM »
I know you are not a web developer but I'll be blunt:

300mb of memory is a lot, sure, but guess what: I don't care.

The average smartphone has 4GB of ram. This means if the operating system takes up *half* of the RAM at any given moment, the user can run 6 apps simultaneously.

And that's on the average phone! No one is running these apps all at once!

Like I said previously, the ease of use and rapid deployment Annoying Oranges being able to multitask 1304 apps locally, which no one does. I wouldn't be suprised if in the future we saw a native OS/browser sandbox environment so apps don't have to ship with a web browser.
You know well that smartphones are not the devices we are talking about here. Nobody is going to gripe about devices which are by design not intended for multitasking. It's entirely apples and oranges.
On desktop will be running multiple applications (not including the 2 upwards of 3 digits worth of daemons/services that will be running in the background) all at once, most of which will not have the luxury of writing application state to disk when it's not in use. It simply does not work that way.

Having your webapp or website consume 100 MB to 2 GB of memory just because "everyone has at least x GB of memory" is absolutely inexcusable and is an awful mindset for any developer to have. It's also inconsiderate to the end-user because they will want to use other applications without having to throw down $250+ for a new set of 32 GB DIMMs. But as you said; you do not care.

This is an outdated stereotype from a time where ECMA standards didn't exist and the entire industry wasn't behind React. Web standards are very well documented and set in stone, a lot of the really annoying stuff is deprecated and Javascript is no longer the only language people develop with on the web. (I'll expand on this in my next point)Your idea that JS interpreters and HTML+CSS rendering is slow comes from another era, this is no longer the case. Web browsers have literally become one of the most optimized pieces of software ever made. I remember looking at the stats for how quickly JS has become in every engine available and being blown away by how far we've come. Your statement that "we should be looking for new replacements" is fairly ignorant because people have been pouring blood sweat and tears in optimizing the web. And guess what? You can run bytecode! You can run binaries!
And the fruits of the 3 have manifested in busy CPUs and monopolized memory space.

JS has been JITted to hell and back and yet still lags significantly behind other scripting languages like Lua and Squirrel. Sure, you can throw every last SIMD instruction, data-oriented design technique, -Ox flag, and inlined function at the problem for both the parsing and bytecode evaluation, but the end results still speak for themselves.

I still maintain that HTML+CSS are an awful bunch. Ever tried writing a parser for HTML? If not ask someone who has and ask if they had fun doing it. Better yet, interview people who have tried to parse it with regular expressions. DOMs in general are an awful way to lay out information on a screen. It worked well when simple static, linear pages ruled supreme, but is horribly inefficient for the dynamism of the modern web. CSS is just a giant band-aid to the problem.

And just because a bunch of developers put their blood sweat and tears does not exclude it from the consideration of replacement.
OpenGL was the arguably world-wide standard API for 2D and 3D rendering for years, and many man-hours were put into extending it and optimizing drivers for it, and worked well for what was required from it. Nonetheless effort was sought into a replacement that better matched modern hardware than the fixed-function pipelines it was originally intended for 30 years ago, which is how we got the infinitely better Vulkan API. You can say the exact same about the X Windowing System and Wayland too.

Every major browser supports WebAssembly! You can precompile any language and run it in a sandbox on the client-side just like JS.
WASM's IR is a step forward but still lags behind Oracle's Java bytecode and Microsoft's CIL from the few benchmarks I've seen. I don't hold it against that though, as it's still young and still has a lot more time to get better.

The reason apps are slow, is because companies prioritize profits and quick delivery over making good things. This is not unique to web development. It's just a lot more visible because people use the web a lot.
This was what I was trying to get at. Clearly there's a gap between the tools used and how they're actually being used, given the monument of issues plaguing web development. I doubt neither the developers or the companies are going to budge, so changing the tools to fit the demands of the modern web is the most clearest option, at least in my eyes.


I know I'm probably making enemies with all the web developers reading this. Sorry, I'm from the other side of town.
8
Off Topic / Re: Why do people dislike safety equipment?
« Last post by Rigel on Yesterday at 06:07:27 PM »
some people dont give a forget because they are already half deaf anyways and the sound doesn't bother them.
"Lol that's not loud" ~ Coworker that was in the army, repeated by other coworker who apparently shoots guns without ear protection
9
Off Topic / Re: Software engineering trends that annoy you
« Last post by Goth77 on Yesterday at 08:52:02 AM »
There's a problem in the industry of mature, popular products becoming bloated with unnecessary features and getting constant meaningless UI refreshes.
this is so true. first thing that comes to mind is windows itself. not to mention countless other programs that have done this very same stuff. core functionality should be top priority.
10
Off Topic / Re: Why do people dislike safety equipment?
« Last post by Goth77 on Yesterday at 08:40:45 AM »
There's nothing wrong with being safe & taking precautions to protect yourself on the job. Now, there are certain things some people can get away with like for example ear plugs - some people dont give a forget because they are already half deaf anyways and the sound doesn't bother them. same can be said about gloves, some people just have tough/callused hand skin so it doesn't bother them to go without.

I've done quite a bit of home and commercial construction/renovation related jobs and 2 things I always prioritize are safety glasses and a breathing mask - a lot of people underestimate how important these 2 things are especially if there are a lot of particulates in the air space, which there almost always are. I've made the mistake of taking my safety glasses for granted and going without them only to end up getting something in my eye somehow that day, which is extremely annoying. never go without the safety glasses, your eyes will thank you later (by providing you the ability to see stuff)

like the ol' saying goes, better safe than sorry



Pages: [1] 2 3 4 5 6 ... 10