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
| <section id="references"> | |
| <h1>References</h1> | |
| <!-- | |
| Feel a little dirty about my usage of the <br /> tag here, however | |
| I would argue that the content is very "address" like, there for making | |
| its usage justified. :-) | |
| --> | |
| <!-- DCU --> | |
| <article> |
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<stdio.h> | |
| #include<stdlib.h> | |
| #include <sys/types.h> | |
| #include <dirent.h> | |
| int main(void) { | |
| char *curr_dir = NULL; | |
| DIR *dp = NULL; | |
| struct dirent *dptr = NULL; | |
| unsigned int count = 0; |
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 <iostream> | |
| using namespace std; | |
| class Shape { | |
| protected: | |
| float area; | |
| float perimeter; | |
| public: | |
| virtual void display(); |
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
| #!/bin/sh | |
| SSH_PUBLIC_KEY='insert_your_ssh_public_key_here' | |
| function add_ssh_public_key() { | |
| cd | |
| mkdir -p .ssh | |
| chmod 700 .ssh | |
| echo "$SSH_PUBLIC_KEY" >> .ssh/authorized_keys | |
| chmod 600 .ssh/authorized_keys |
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
| var steps_prevVal = 1.0; | |
| var steps_prevprevVal = 1.0; | |
| var steps_peakLow = 0; | |
| var steps_peakHigh = 0; | |
| var steps_samplesSinceHighPeak = 0; | |
| var steps_samplesSinceLowPeak = 0; | |
| var steps = 0; | |
| var peakMinSamplesBetween = 15; | |
| var highLowPeakDiff = .2; |
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
| var form = cloudStack.dialog.createForm({ | |
| context: context, | |
| noDialog: true, | |
| form: { | |
| title: '', | |
| fields: args.manuallyInputtedAccountInformation | |
| } | |
| }); | |
| $wizard.click(function(event) { |
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
| ; <<>> DiG 9.7.3 <<>> @ns1.dynadot.com m.quew.me | |
| ; (2 servers found) | |
| ;; global options: +cmd | |
| ;; Got answer: | |
| ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 25381 | |
| ;; flags: qr aa rd; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 3 | |
| ;; WARNING: recursion requested but not available | |
| ;; QUESTION SECTION: | |
| ;m.quew.me. IN A |
