> enable
# configure terminal
(config)# hostname nyhostname
(config)# exit
This file contains hidden or 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
| int lesHangmanOrd(){ | |
| char tempOrd[30]; | |
| int i=0; | |
| FILE * ordFil = NULL; | |
| ordFil=fopen("Hangman.txt", "r"); | |
| do{ | |
| fscanf(ordFil, "%s", tempOrd); | |
| strcpy(hangmanOrd[i], tempOrd); | |
| i++; | |
| }while(!feof(ordFil) && i<N); |
This file contains hidden or 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
| git update-index --chmod=+x gradlew |
This file contains hidden or 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
| server { | |
| server_name trailers.apple.com atv.plexconnect; | |
| location / { | |
| proxy_set_header Host $host; | |
| proxy_set_header X-Real-IP $remote_addr; | |
| proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
| proxy_pass http://metrafonic.com:88; | |
| } |
This file contains hidden or 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
| #include <avr/io.h> | |
| #include"ButtonPress.h" | |
| int main(void) | |
| { | |
| DDRB |= 1 << PINB1; | |
| DDRB &= ~(1 << PINB0); | |
| PORTB |= 1 << PINB0; | |
| int UBBRValue = 25; |
I hereby claim:
- I am metrafonic on github.
- I am metrafonic (https://keybase.io/metrafonic) on keybase.
- I have a public key ASCIrot8H9uXXB-SR-yNv7AacqmTx0QNO5sma6w961KmrAo
To claim this, I am signing this object:
This file contains hidden or 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
| This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account. | |
| Token for proof: | |
| [Verifying my OpenPGP key: openpgp4fpr:6a32a2945304076b649d4bb6d901e8e7fcc05cd2] |
This file contains hidden or 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
| #!/usr/bin/python | |
| import sys | |
| import getopt | |
| def usage(): | |
| print "usage: arguments [OPTION] [-c num | -s str]" | |
| print "Options:" | |
| print "\t-h, --help\tShow help" | |
| def calculateNum(arg): |