This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Installation Steps | |
PART 1: INSTALLING & CONFIGURING APACHE, MYSQL, & PHP ON WINDOWS (WAMP) | |
---------------------------------------------------------------------------------- | |
1. Download WampServer from http://www.wampserver.com/en/ & install. | |
C:\wamp is a good location. Do not run WampServer yet. | |
2. Configure MySQL. The default MySQL configuration file is very limiting. Choose one | |
of the model config files that best suits your system and copy & paste it to "wampserver.conf". |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## From http://drupal.org/project/filefield_nginx_progress | |
## Define a zone named uploads with a 1MB size. | |
upload_progress uploads 1m; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# cpustatus | |
# | |
# Prints the current state of the CPU like temperature, voltage and speed. | |
# The temperature is reported in degrees Celsius (C) while | |
# the CPU speed is calculated in megahertz (MHz). | |
function convert_to_MHz { | |
let value=$1/1000 | |
echo "$value" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Close 28 | |
DEBUG: Outgoing: Writing CHANNEL_OPEN (18, session) | |
DEBUG: Parser: IN_PACKETBEFORE (expecting 16) | |
DEBUG: Parser: IN_PACKET | |
DEBUG: Parser: Decrypting | |
DEBUG: Parser: pktLen:28,padLen:10,remainLen:16 | |
DEBUG: Parser: IN_PACKETDATA | |
DEBUG: Parser: Decrypting | |
DEBUG: Parser: HMAC size:16 | |
DEBUG: Parser: IN_PACKETDATAVERIFY |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Sample initialization file for GNU nano. | |
## | |
## Please note that you must have configured nano with --enable-nanorc | |
## for this file to be read! Also note that this file should not be in | |
## DOS or Mac format, and that characters specially interpreted by the | |
## shell should not be escaped here. | |
## | |
## To make sure a value is disabled, use "unset <option>". | |
## | |
## For the options that take parameters, the default value is given. |