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 | |
| libs=( "/usr/local/lib/libmacfuse_i32.2.dylib" \ | |
| "/usr/local/lib/libosxfuse_i32.2.dylib" \ | |
| "/usr/local/lib/libosxfuse_i64.2.dylib" \ | |
| "/usr/local/lib/libmacfuse_i64.2.dylib" \ | |
| "/usr/local/lib/libosxfuse_i32.la" \ | |
| "/usr/local/lib/libosxfuse_i64.la" \ | |
| "/usr/local/lib/pkgconfig/osxfuse.pc" ) |
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 | |
| # -------------------------------------- | |
| # CloudFlare DDNS Manager | |
| # -------------------------------------- | |
| # This script checks if the WAN (public) IP address is different (eg. dynamic) | |
| # and if it is, then updates the DNS record stored on CloudFlare. | |
| # | |
| # Uses curl to be compatible with machines that don't have wget by default (Mac OSX). | |
| # | |
| # Usage |
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
Show hidden characters
| { | |
| "shell_cmd": "fpc \"${file}\" -o\"${file_path}/${file_base_name}\"", | |
| "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$", | |
| "working_dir": "${file_path}", | |
| "selector": "source.pascal", | |
| "variants": | |
| [ | |
| { | |
| "name": "Run", | |
| "shell_cmd": "fpc \"${file}\" -o\"${file_path}/${file_base_name}\" && open -a iTerm.app \"${file_path}/${file_base_name}\"", |
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
| program BinaryConvertor; | |
| { ----------------------------------------------------------- } | |
| uses | |
| Sysutils; | |
| { ----------------------------------------------------------- } | |
| { DIVIDE BY TWO } |
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/env ruby | |
| def say(text) | |
| "Nodes " + text | |
| end | |
| put say 'Tech Quiz' |
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
| 10 PRINT "WELCOME TO NODES QUIZ" | |
| 20 PRINT "THIS IS A PROGRAM IN BASIC" | |
| 30 INPUT "CAN YOU FIGURE OUT WHAT IS WRONG HERE?"; A$ | |
| 40 IF LEN(A$) = 0 THEN GOTO 30 | |
| 50 A$ = LEFT$(A$, 1) | |
| 60 IF A$ = "Y" || A$ = "y" THEN GOTO 80 | |
| 70 GOTO 30 | |
| 80 PRINT "NICE CATCH!" | |
| 90 END |
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
| class Quiz { | |
| private static int pointsValue = 500; | |
| void PrintPointsValue() { | |
| Console.WriteLine("This quiz question is worth " + pointsValue); | |
| } | |
| } | |
| Quiz q = new Quiz(); | |
| q.PrintPointsValue(); |
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
| Program NodesQuiz_Question8; | |
| Var | |
| Points : Integer; | |
| YourName : String; | |
| Begin {NodesQuiz_Question7} | |
| Writeln('Welcome to another test question!'); | |
| Writeln('What is your name?'); | |
| Readln(YourName); | |
| Write('Hey ', YourName); |
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
| points = int(input("Enter desired points: ")) | |
| if points > 1000 or points < 0: | |
| if points > 1000: | |
| print("Does fairplay mean something to you at all?") | |
| else: | |
| print("What was that supposed to mean? You want minus points or what?") | |
| else if points == 300: | |
| print("Here is " + str(300) + " points.") | |
| else: |
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
| retakeBtn.setOnClickListener(View.OnClickListener() { | |
| @Override | |
| public void onClick(View view) { | |
| retakeBtn.setVisibility(View.GONE); | |
| } | |
| }); |