background preloader

Bash commands - Linux MAN Pages

Bash commands - Linux MAN Pages
Commands marked • are bash built-ins Many commands particularly the Core Utils are also available under alternate shells (C shell, Korn shell etc). More bash commands: Linux Command Directory from O'Reilly, GNU CoreUtils.SS64 bash discussion forumLinks to other Sites, books etc

TrueCrypt Locks Down Data In a Rock-Solid Vault By Jack M. GermainLinuxInsider 08/31/11 5:00 AM PT For data sensitive enough to warrant encryption, a tool like TrueCrypt is a great solution. The app creates and encrypted file container of any size on your hard drive or on an external drive. Once mounted using a super-strong password of your own choosing, files can come and go as you please. Leveraging Social Media To Boost E-Commerce Holiday Sales Addressing the power of mobile messaging, social media and other word-of-mouth technologies, this paper provides concrete advice on how to integrate them into an e-commerce business plan. TrueCrypt Linux users are blessed with a collection of file encryption tools. TrueCrypt does what any file encryption application is supposed to: It locks down access to your data so no one without a password or keyfile can grab it. It stores your data on an encrypted volume that lets you work seamlessly. Another essential difference with TrueCrypt is the level of security it brings to your data. Fixing It

C++ Programming/Exercises/Iterations Iterations[edit] Solutions requirements Solutions must: Use only standard C++.Be compilable.Be in accordance to general coding practices. (no esoteric demonstrations are required) and should: Handle error situations, even if behavior is not defined. Please do not add solutions that are 99% similar to another that is already present, if it is an improvement just add it to the existing solution. EXERCISE 1[edit] Write a program that asks the user to type an integer and writes "YOU WIN" if the value is between 56 and 78 (both included). int main() {int i; cout << "Type all numbers between 58 and 73: " << endl; cin>>i; if (i>=58 && i<=78) { cout << "YOU WIN" << i << endl; else cout<<"YOU LOSE!" EXERCISE 2[edit] Write a program that asks the user to type all the integers between 8 and 23 (both included) using a for loop. Solution Alternative solution by Bartosz Radwanski Alternate solution Solution in C Another alternate solution Failed solutions (correct them as an extra exercise) EXERCISE 3[edit]

Related: