Over 1,500 Coding Project Ideas
Below you will find links to over one thousand computer programming project ideas. Use this list to hone your coding skills or start building your online portfolio.
Below you will find links to over one thousand computer programming project ideas. Use this list to hone your coding skills or start building your online portfolio.
What is an Alias? If you find yourself typing the same command over and over again, you can create a shortcut for it called an alias. An alias can be thought of as a text expander. Creating aliases for commands that are really long is also a common practice. For example, if you type ls … Read more
Displaying private IP addresses You can determine the IP address or addresses of your Linux system by using the hostname, ifconfig, or ip commands. To display the IP addresses using the hostname command, use the -I option. In this example the IP address is 192.168.122.236. The ifconfig command can also be used to display the … Read more
To reuse the arguments from the previous command line on the current command line, use “!*“. The arguments are considered anything on the command line, except for the first item. Since the first item is almost always a command, then everything following is an argument. Using this shortcut can be helpful in a couple of … Read more
Editor Tutorial AbiWord AbiWord tutorial Emacs Emacs tutorial FocusWriter FocusWriter tutorial Geany Geany Tutorial Jed Jed tutorial Kate Kate tutorial LibreOffice Writer LibreOffice Writer tutorial Medit Medit tutorial Nano Nano tutorial Sublime Text Sublime Text tutorial Vim Vim tutorial
To run the most recent command that begins with a given string, use an exclamation mark followed by that string. For example, to run the last command that started with a “d”, type “!d“. Specify as much of the string to make it unique. If you have several commands in your recent history that begin … Read more