> failed their strategic objective copium > It's their relentless deindustrialization that will eventually do them in Agree, China has already won, at this point a lot of the world sees them as a more sane option than…
Anecdotal but we certainly run flyway migrations with a high privelage user not the regular low privelage "app" user who can only SELECT UPDATE and sometimes DELETE. The fact that nobody does this doesn't mean it's a…
Mighty fine AI you have there, be a shame if something were to happen to it...
This! I've worked with a few developers I would consider net negative to their team and product, in that their removal would have increased 3-4 other team members productivity by say 20% each. Coincidently these…
Built with packages hosted on Microslop's NPM
I thought copy.fail is a privelage escalation exploit, become root from a regular user? Am I missing something? How would "node architecture" make people vulnerable to this? You have to have shell access to a victim…
In an interview with Zelinsky Trump asks "why haven't you had an election? " Zelensky : "because we are at war" you can see the idea percolating then. People think I'm a nutter for suggesting there just won't be another…
For machine tools I just use an oil can with a finer than normal tapered tip, this will depress the ball bearing in zerk / grease nipple fittings no problems, this also works with the ball oilers typically found on…
LSP (Language Server Protocol) a way for editors to talk to language tools to provide auto complete, warnings errors etc. this means the language tools can be written once and then any editor that has LSP support can…
Not even particularly elegant code, for example, opacity is clamped between 0 and 1 in in the very next line a bounds check is made anyway. opacity = (opacity < 0) ? 0 : opacity; opacity = (opacity > 1) ? 1 : opacity;…
> Never ending warnings you can't turn off and many other small things lead me to skipping small expenses and just eating them, because I can't be bothered to fight Concur. Sometimes I wonder if this is a "feature not a…
A common configuration is to pair a router with a managed switch that can handle VLANs and have a trunk port between the switch and router such a setup is called a "router on a stick"…
Using separate databases or schemas per tenant comes with the following problems * Managing schema migrations across every DB * You cant query across the DB, want to know some cross tenant thing for ops? That's now a…
For your "maybe slightly better is" what happens when the db commit fails? FK constraint or some such, now you have sent an email (called the API) and have no record in your DB Without two phase commits I would 1) Write…
Every single Russian citizen is in a position to protest the war, they are just too spineless
StoreJ (formerly Tardigrade) https://www.storj.io/how-it-works From https://www.storj.io/node Average Payout Per Month... Egress Bandwidth $20/TB Repair Egress Bandwidth $10/TB Disk Space $1.50/TB Audit Bandwidth $10/TB…
Thats my understanding, I initially thought MySQL root user as well
I assume they want to retain "ownership" so they can execute the extend and extinguish steps unopposed
Java has a few options... AWT (Abstract Windowing Toolkit) probably not recommended for new projects Swing JavaFX SWT https://www.eclipse.org/swt/ Unlike the others that draw their own widgets and don't use the OS…
Thats what I did, used second hand locoM2 units from a WISP for $20-40 each
Ha, tell that to anyone at *.microsoft.com I swear every link to a MS doc / MSDN site I have clicked 404s or goes to a home page
Don't modify input, sanitise output instead. The user entered <script> you should save that verbatim, but there are many output formats, HTML, SQL, PS (Post Script), XLS etc etc where you need to escape user provided…
Yea no runtime classpath scanning is a requirement for me, we do compile time eclipselink weaving etc which makes startups way faster
Totally agree, why i use https://www.dropwizard.io/en/latest/ with guice, generally waaayyy more explicit about whats going on
> failed their strategic objective copium > It's their relentless deindustrialization that will eventually do them in Agree, China has already won, at this point a lot of the world sees them as a more sane option than…
Anecdotal but we certainly run flyway migrations with a high privelage user not the regular low privelage "app" user who can only SELECT UPDATE and sometimes DELETE. The fact that nobody does this doesn't mean it's a…
Mighty fine AI you have there, be a shame if something were to happen to it...
This! I've worked with a few developers I would consider net negative to their team and product, in that their removal would have increased 3-4 other team members productivity by say 20% each. Coincidently these…
Built with packages hosted on Microslop's NPM
I thought copy.fail is a privelage escalation exploit, become root from a regular user? Am I missing something? How would "node architecture" make people vulnerable to this? You have to have shell access to a victim…
In an interview with Zelinsky Trump asks "why haven't you had an election? " Zelensky : "because we are at war" you can see the idea percolating then. People think I'm a nutter for suggesting there just won't be another…
For machine tools I just use an oil can with a finer than normal tapered tip, this will depress the ball bearing in zerk / grease nipple fittings no problems, this also works with the ball oilers typically found on…
LSP (Language Server Protocol) a way for editors to talk to language tools to provide auto complete, warnings errors etc. this means the language tools can be written once and then any editor that has LSP support can…
Not even particularly elegant code, for example, opacity is clamped between 0 and 1 in in the very next line a bounds check is made anyway. opacity = (opacity < 0) ? 0 : opacity; opacity = (opacity > 1) ? 1 : opacity;…
> Never ending warnings you can't turn off and many other small things lead me to skipping small expenses and just eating them, because I can't be bothered to fight Concur. Sometimes I wonder if this is a "feature not a…
A common configuration is to pair a router with a managed switch that can handle VLANs and have a trunk port between the switch and router such a setup is called a "router on a stick"…
Using separate databases or schemas per tenant comes with the following problems * Managing schema migrations across every DB * You cant query across the DB, want to know some cross tenant thing for ops? That's now a…
For your "maybe slightly better is" what happens when the db commit fails? FK constraint or some such, now you have sent an email (called the API) and have no record in your DB Without two phase commits I would 1) Write…
Every single Russian citizen is in a position to protest the war, they are just too spineless
StoreJ (formerly Tardigrade) https://www.storj.io/how-it-works From https://www.storj.io/node Average Payout Per Month... Egress Bandwidth $20/TB Repair Egress Bandwidth $10/TB Disk Space $1.50/TB Audit Bandwidth $10/TB…
Thats my understanding, I initially thought MySQL root user as well
I assume they want to retain "ownership" so they can execute the extend and extinguish steps unopposed
Java has a few options... AWT (Abstract Windowing Toolkit) probably not recommended for new projects Swing JavaFX SWT https://www.eclipse.org/swt/ Unlike the others that draw their own widgets and don't use the OS…
Thats what I did, used second hand locoM2 units from a WISP for $20-40 each
Ha, tell that to anyone at *.microsoft.com I swear every link to a MS doc / MSDN site I have clicked 404s or goes to a home page
Don't modify input, sanitise output instead. The user entered <script> you should save that verbatim, but there are many output formats, HTML, SQL, PS (Post Script), XLS etc etc where you need to escape user provided…
Yea no runtime classpath scanning is a requirement for me, we do compile time eclipselink weaving etc which makes startups way faster
Totally agree, why i use https://www.dropwizard.io/en/latest/ with guice, generally waaayyy more explicit about whats going on