How does this "killer code" work [closed] - windows

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I was reading a article about a database programmer, who after learning he was about to be fired put six lines of code that would delete everything on the company's main computer, costing them millions and putting them out of business.
7/30/96
F:
F:\LOGIN\LOGIN 12345
CD \PUBLIC
FIX.EXE /Y F:\*.*
PURGE F:\ /ALL
Can someone tell me how this code works and what language it is programmed in? I assume SQL?

It's just some (DOS?) shell commands. The point of the example isn't how clever the code is. The exact opposite, actually: apparently anyone with basic knowledge of this company's systems, and a beginner's knowledge of the DOS shell, could have done this. (Notice in particular that their admin password was "12345".)
The example may as well be made up, and possibly is.

Related

less: do not display "filename (END)" at the end of page [closed]

Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 months ago.
Improve this question
I need less to display a file without any additional formatting characters.
I found the --tilde option, which got rid of the ~ characters.
Now I only need to get rid of the:
(END)
or
<filename> (END)
at the and of the page.
I am happy to recompile less , if somebody can suggest what needs to be changed in the sourcecode.
I am using less 487 on Debian 10.
You configure the prompt with -P, for instance, this will no longer show the filename or END (but still the :):
less -P ''

RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 16 => What is form data precisely? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 months ago.
Improve this question
Hail all:
Though I am 52, and active with computers since 1986 (those were more oversized calculators, to be correct), i have no idea what is meant with Form Data.
I know, I know, this is insane, but i just never came across this before.
Might be, I DO know it, but by a different name, maybe Dutch.
Still I am quite stuck, to be quite honest.
Tried to google it, got heaps on information as to how to clear it, restore it, save it, unsave it, ... , but nowhere an in-depth explanation of what is meant with form Data.
Now, I am building a Batch File, for speed-cleaning of certain data, when my Firefox starts to get slow ... .
Came across the "erase Form Data" command, but nae clue as to what Form Data is.
Thank you.
Ben
That rundll32 command only applies to Internet Explorer and will not touch Firefox.
Anyway, form data is data entered into html forms like your name, address and telephone etc. These form fields are edit boxes, check/radio buttons and drop-down selectors.
Firefox has its own setting to clear form data when you close the browser. Form data is very low on the list of what slows down your browser...

What is the difference between sidekiq perform and perform_async? [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
When running UserMailer.new.perform, my mailer is sent and I get an email almost right away, but when I use UserMailer.perform_async, it spits back an object number and I never receive an email.
Can someone please tell me why this is happening and what the difference between these two methods are?

scheme r7rs-large interesting but... is it still in progress? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am trying to take a look at the status of r7rs large but I cannot find any information
in scheme reports page, etc, just a talk from 2013. I searched around with google without success as well.
Is it still alive?
Where can I find information?
What would be the tentative date?
What is the progress at this point?
Thanks.
You can read about the R7RS process on the R7RS working group wiki. R7RS-large is listed under the "Working Group 2" section of the front page.
In particular, look through the StandardDocket and ConsentDocket sections. Standard docket is for stuff that's under discussion (and eventual voting). Consent docket is for generally-uncontroversial stuff that's likely to get into R7RS-large without having to be voted on.
There is no firm timeline that I am aware of (though I'm not part of the working group and do not speak for them). The standard docket is quite long, though, and they will have to process through most/all of it before you have anything that you can call R7RS-large.

Is there a simple command-line one-liner that checks my current internet connection speed [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 7 years ago.
Improve this question
I would like a shell script that does a quick upload/download speed check of my current connection, similar to the functionality of the website speedtest.net, but without the flash and the fancy graphics. It doesn't need to be super fancy or accurate, just give me a rough idea of what I'm working with. Any languages that are commonly supported in any shell will be fine.
wget --output-document=/dev/null http://speedtest.wdc01.softlayer.com/downloads/test500.zip
wget-ing a large file is the way to do it. ie the above
you will see something like this:
3% [> ] 19,207,452 1.38M/s eta 5m 43s
according to this test mine is a 1.38m/s

Resources