|
I seen MD5 and SHA1 hashes on the net to verify files. What are common hashes used on the net and other programs? This is to verify a file not to hash a pw.
Started by acidzombie24 on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
To verify files you can use cyclic redundancy checks , such as CRC32, which have been as far as I know the de-facto standard for hashing files for a long....
Add a Salt if you use it for passwords.
I never used anything else than MD5.
|
|
I'm learning Vim and with it came the urge to use 'hjkl' and friends on every other program, including mouse operated programs like browsers. can something be done?
working on Linux. Thanks.
Started by Liran Orevi on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
It's a tiling window manager with vim-like bindings by default, written by coders who use vim -o vi to make your command line use vi....
Also, you might want.
Gmail and several of the other Google apps natively support Vi-like motions.
|
|
Hi
As a true beginner, one often finds that the barrier to further knowledge is not knowing what to google.
I've made programs like pong and a sudoku solver, simple things. These days I would like to work on something more like tabslock or make a multiplayer...
Started by Ziggy on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
Protocols another process in another place to run some code, as if one had just called a function on the other want to look up "Service-Oriented....
Are logical slots in the OS for running programs (processes) to use for communication.
|
Ask your Facebook Friends
|
As I understand (Perl is new to me) Perl can be used to script against a Unix command line. What I want to do is run (hardcoded) command line calls, and search the output of these calls for RegEx matches. Is there a way to do this simply in Perl? How?...
Started by bigwoody on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Perl's -e switch let....
Here 's a document need.
Is printing the line)
Do you need Perl at all? How about
command -I use | grep "myregexp" && dosomething
right in the shell?
In Perl you can use backticks to execute commands on the shell.
|
|
I have a command that works great on the command line. It has lots of arguments like cmd --thing foo --stuff bar -a b input output
I want to run this from python and block waiting for it to complete. As the script prints things to stdout and stderr I ...
Started by Paul Tarjan on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
", "bar", "-a", "b", "input", "output"]) print "Return code was", rc
i.e., just avoid any use.
|
|
For design websites is it better to do it your self by learning HTML/CSS or using web design programs? and why?
Started by alsadk on
, 17 posts
by 17 people.
Answer Snippets (Read the full thread at stackoverflow):
Using design....
I prefer the by hand approach it by hand.
If you use a program, you will:
Be able to design visually Possibly be able to design more quickly, and not have to rely on some sort of program to figure it out for you.
|
|
I'm using OCamlWinPlus v1.9RC4. It sucks pretty hardcore. It's constantly crashing, and lacks basic features. What other toplevel OCaml programs can be recommended for Windows Vista?
Started by Rosarch on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Can you elaborate on ocamlwinplus crashes? Did you try to debug it?
I use Notepad.
You can use a Windows version of Emacs and use the customization files (*.el) provided with OCaml's with history is there..
|
|
I know it sound complicated, but it is really not bad at all once you get everything set up. One of these days I will try to make a tutorial, but in the meantime if anyone has any questions on how to do it let me know.
The programs are all free: EagleCad...
Answer Snippets (Read the full thread at dutchforce):
And you can also find a lot of footprints lighting system in an enclosure .
Often use their footprints.
Of their components.
|
|
Hello,
I need to run a couple of other programs from my own Java program, basically I need to run these command line statements.
svn log --xml -v > svn.log
and
java -jar example.jar arg1 arg2
and I need to use the text outputs written to the console...
Answer Snippets (Read the full thread at stackoverflow):
Seeing your two commands, why don't you do it directly from Java, without executing ? You could use SVNKit for the svn part, and include.
For the svn stuff use java SVNKit API.
For more details.
|
|
Hello, I'm using ubuntu (and WindowsXP as Virtual mashine on it). I need an automatic process: I want my computer to do every hour a SVN Update and after that my Visual Studio 2008 should open the Projekt.sln File and run the Compilation Process (It's...
Started by creativz on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Take a look at:
Nant
CruiseControl.Net.
CruiseControl.
There are a number of implementations out there, e.g.
This is called a build server.
|