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/bash | |
| set -e | |
| repos=( | |
| s2n | |
| common | |
| checksums | |
| event-stream | |
| cal |
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
| // MSVC Version: 18.00.40629 | |
| // Command line: cl ctors.cpp | |
| // Clang Version: 3.7.0 | |
| // Command line: clang++ ctors.cpp -std=c++11 | |
| struct A | |
| { | |
| A() = delete; | |
| A(const A&) = delete; | |
| A(A&&) = delete; |
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
| curl "https://api.github.com/repos/ColdenCullen/doveralls/releases" | jq '.[0].assets | .[] | select(.name == "doveralls_${TRAVIS_OS_NAME}_travis") | .browser_download_url' | xargs wget -O doveralls | |
| chmod +x doveralls |
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
| Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions | |
| Set-StartScreenOptions -EnableBootToDesktop | |
| Enable-RemoteDesktop | |
| cinst toolsroot | |
| cinst DotNet3.5 | |
| cinst DotNet4.5 | |
| cinst javaruntime | |
| cinst nodejs |
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
| #define announce std::cout<< | |
| #define perchance if | |
| #define otherwise else | |
| #define what_about switch | |
| #define perhaps case | |
| #define on_the_off_chance default | |
| #define splendid break |
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
| using System; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| namespace DictionaryTest | |
| { | |
| /// <summary> | |
| /// Dictionary of objects, stored by key</summary> | |
| /// <typeparam name="TKey">Type of objects used</typeparam> | |
| /// <typeparam name="TValue">Type of objects stored</typeparam> |
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
| namespace YOUR_PROJECT_NAMESPACE | |
| { | |
| /// <summary> | |
| /// Class that hides List's methods from Queue</summary> | |
| /// <typeparam name="T"> | |
| /// Type of Queue</typeparam> | |
| /// <author>Colden Cullen</author> | |
| abstract class QueueSaver<T> : List<T> | |
| { | |
| public override sealed void Add( T data ) { } |
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
| using System; | |
| namespace YOUR_PROJECT_NAMESPACE | |
| { | |
| /// <summary> | |
| /// Queue class</summary> | |
| /// <typeparam name="T"> | |
| /// Type of object stored in queue</typeparam> | |
| /// <author>Colden Cullen</author> | |
| class Queue<T> : QueueSaver<T> |
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
| using System; | |
| namespace YOUR_PROJECT_NAMESPACE | |
| { | |
| /// <summary> | |
| /// A node based implementation of a stack | |
| /// Adapted from prior GSD2 material with many other authors | |
| /// A lot of this code was written by Professor Schwartz</summary> | |
| /// <typeparam name="T"> | |
| /// The data type the NodeStack holds</typeparam> |
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
| using System; | |
| using System.Collections.Generic; | |
| namespace CHANGE_ME | |
| { | |
| /// <summary> | |
| /// Linked list of objects | |
| /// </summary> | |
| /// <typeparam name="T">Type of object stored in list</typeparam> | |
| /// <author>Colden Cullen</author> |
NewerOlder