Integrating Python, C and C++ - 0 views
[Tutor] is "fold" same as "reduce"? - 0 views
-
### def reverse(l): return reduce(lambda x, y: [y] + x, [[]] + l) ###
Date and Time Representation in Python - 0 views
pyWinAuto - 0 views
-
pywinauto is a set of python modules to automate the Microsoft Windows GUI. At it's simplest it allows you to send mouse and keyboard actions to windows dialogs and controls.
Voice recognition - 0 views
-
Speech Recognition may be possible with COM. I found an example of how its done in Python.
-
Looks like foom is busy. Anyway, here is the verbatim translation of the script foom linked. I can't test it myself as no mike is installed on my machine. If you hear "Starting Succeeded", then, try to say one/two/three. NEED CoHelper.ahk.
6.5.1 Itertool functions - 0 views
-
6.5.1 Itertool functions The following module functions all construct and return iterators. Some provide streams of infinite length, so they should only be accessed by functions or loops that truncate the stream.
blog.bjrn.se: TrueCrypt explained - 0 views
-
he most popular cryptographic software for Windows is probably TrueCrypt. In this article I will explain how TrueCrypt works and as a by-product a working Python implementation will be provided. This article is written from a programmer perspective and the math will be kept to the minimum. The emphasis is on how TrueCrypt uses cryptographic primitives such as AES and SHA-1, not how the primitives themselves work.
Screen Shots - Wingware Python IDE - 1 views
Eval - 0 views
Non-Programmer's Tutorial for Python - Wikibooks, collection of open-content textbooks - 1 views
TANGO Project - 0 views
Human-Readable Encryption Keys - 0 views
-
in PyCrypto: >>> key = os.urandom(16) # Generate 16 random bytes (128 bits) >>> bin_to_hex(key) # Show the key in hex (32 characters) '61aa60e43a5e7fdb4b86a4897b52a0dc' >>> y = RFC1751.key_to_english(key) >>> y # Show the pass phrase version of the key 'BUSY BARN RUB DOLE TAUT TOOK ALTO PRY KIT WALL MUG CURT' >>> # The transformation is always reversible >>> bin_to_hex(RFC1751.english_to_key(y)) '61aa60e43a5e7fdb4b86a4897b52a0dc'
-
Human-Readable Encryption Keys
« First
‹ Previous
261 - 280 of 474
Next ›
Last »
Showing 20▼ items per page