At the end of the day, they still want their shit to work. It does, however, make things very uncomfortable in the mean time.
- 0 Posts
- 37 Comments
mkwt@lemmy.worldto Programmer Humor@programming.dev•When 'Pass the Interview' = 'Cancel My Flight'23·24 days agoAs far as I know, the MAX software fully complied with its software requirements. The problem was crappy system requirements, and Boeing actively lied to their pilots to conceal that they added a brand new automatic flight control system that can push the elevators down independent of the autopilot and stick pusher.
That last part is what sent people to jail.
mkwt@lemmy.worldto Programmer Humor@programming.dev•Git, invented in 2005. Programmers on 2004:1·28 days agoBoth git and svn started around the same time, in or about 2004.
Within section 2.1 choose only one subsection to follow. Those are all alternative bootloader options.
The bootloader subsection chosen in 2.1 on this page should match what is done in Configuring the Bootloader. The default path on that page is GRUB, which does not require any systemd components.
If following the GRUB path, follow instructions in 2.1.1 and skip the rest of 2.1. This is not at all clear in the handbook.
I believe that sys-kernel/installkernel is a utility script internal to the Gentoo project that can be configured to work with various bootloader solutions, including (optionally) systemd, and that is what this section 2.1 is talking about.
This appears to be an out of order dependency in the handbook
Violates CERT C ENV33-C.
Windows was never oriented around “just works”. That was Mac. Windows’s main selling point is that it never becomes incompatible, and that has largely stayed true. You can still to this day insert the disk for some proprietary application from Windows 2.0 and it will still install and run. Try that with another operating system!
No. For several reasons.
Fortran is older than Basic and C. In fact, Fortran is more or less the first high level programming language. The first Fortran compilers date to the early 1950s.
Fortran was created mainly for the purpose of linear algebra: operations with (giant) matrices. Linear algebra is used to compute approximate solutions to ordinary and partial differential equations, and this is a major part of what people needed computers for (and still do).
Programming concepts like subroutines, functions, if statements with blocks and else clauses… All of those were not in original Fortran because no one had thought of them. These things entered Fortran over time as they became popular, and goto slowly became less popular. Syntax from the punch card era was replaced in Fortran 90, but it is still available as an option for compatibility purposes.
Structurally, I prefer to describe Fortran as like C, but with better built-in arrays, and no built-in general purpose pointers. Not having the pointers allows the compiler to do certain optimizations that C can’t. But C is the better systems language, because the pointers let you naturally express all kinds of data structures besides arrays.
I do like me some salami on toast.
Medical device programmers:
mkwt@lemmy.worldto Programmer Humor@programming.dev•every worthwhile link on how to implement your own squeeblerizer is dead and approximately 40% archived15·3 months agoAlso, on Gentoo Linux, there will be an ebuild that integrates all of the cmake options into the rest of the packaging system and manage the dependencies
I preferred the Facebook group “If 2,147,483,648 people join this group, then an integer overflow may occur” back in the day.
Of course. That bro is OG and gonna throw a chair atcha.
Aka “Windows subsystem for Linux”
Like any other convention, it’s not really a big deal either way. Fortran gets along just fine with 1-indexing.
Kill -9 is a command on Unix and Linux to send signal 9 (SIGKILL) to a process. That’s the version of kill that is the most reliable and has immediate effect.
Taskkill is a Windows command line program. I believe that taskkill /f uses the TerminateProcess() API. This is more forceful than the End Task button on the Task Manager. There is a different End Process button on the Task Manager that does use TerminateProcess().
TerminateProcess() is pretty reliable, but it doesn’t form part of the C signals stack on Windows like kill -9. So for instance, if you’re doing process control on Python, you need to use a special Windows-only API to access TerminateProcess().
mkwt@lemmy.worldto Programmer Humor@programming.dev•You've been asleep for a very long time17·6 months agoReally I worked a project once that just had post-its stuck to the wall. It worked as well as Jira does.
It used to be that 640K oughta be enough for anyone.
mkwt@lemmy.worldto linuxmemes@lemmy.world•What? No .exe? Aawww, fuck this man, I'm outta here...42·7 months agoThe Linux software you can get as a regular user from your typical Linux distributions is absolutely not any more secure on average than your typical Windows software.
I say this as someone who writes application programs on both systems.
I think it’s really debatable whether the Linux kernel is really any more secure than the Windows NT kernel. Linux advocates have pushed the “many eyes, shallow bugs” line for a long time, but high profile lapses seem to really have put the lie to that.
Someday the concepts will come and fix all of this. It has been foretold.