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
# Description: Boxstarter Script | |
# Author: Jess Frazelle <[email protected]> | |
# Last Updated: 2017-09-11 | |
#222 | |
# Install boxstarter: | |
# . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
# | |
# You might need to set: Set-ExecutionPolicy RemoteSigned | |
# | |
# Run this boxstarter by calling the following from an **elevated** command-prompt: |
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
# Description: Boxstarter Script | |
# Author: Jess Frazelle <[email protected]> | |
# Last Updated: 2017-09-11 | |
# | |
# Install boxstarter: | |
# . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
# | |
# You might need to set: Set-ExecutionPolicy RemoteSigned | |
# | |
# Run this boxstarter by calling the following from an **elevated** command-prompt: |
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 | |
function status() { | |
kextstat | grep org.virtualbox.kext > /dev/null 2>&1 ; | |
vbox=$((1-$?)) | |
kextstat | grep com.github.osxfuse > /dev/null 2>&1 ; | |
fuse=$((1-$?)) | |
} | |
status |
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
using System; | |
using System.Linq; | |
namespace ForumPrograms { | |
class Program { | |
static void Main(string[] args) { | |
Console.Write("Calculate the Scrabble point value of a word\n"); | |
String input; |
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
.replyMessageBody, .replyMessageBody p, .replyMessageBody span, .replyMessageBody strong { | |
font-size: 15px !important; | |
line-height: 19px !important; | |
font-family: arial, helvetica, clean, sans-serif !important; | |
color: #333; | |
font-weight: normal !important; | |
} | |
.discussionthread-view-mod .aes-thread { | |
margin-left: 4px !important; |
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
// Animal.java | |
public class Animal { | |
protected String type; | |
public Animal() { | |
type = "Unknown"; | |
} | |
public String getType() { |
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
/** | |
* Created by Elijah on 3/29/2015. | |
*/ | |
public class ForEach { | |
public static void main(String[] args) { | |
String[] array = { "a", "b", "c"}; | |
System.out.println("-- FOR LOOP --"); |
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
/** | |
* Created by ecornell on 3/27/2015. | |
*/ | |
public class ForLoops { | |
public static void main(String[] args) { | |
// While - (loop possibly zero times) | |
int i=1; | |
while (i <= 3) { // condition is checked before inner block is ran |
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
/** | |
* Created by ecornell on 3/25/2015. | |
*/ | |
public class Condition { | |
public static void main(String[] args) { | |
char cChoice = 'a'; | |
while (!(cChoice == 'Q' || cChoice == 'q')) { |
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
import java.util.*; | |
/** | |
* Created by ecornell on 3/25/2015. | |
*/ | |
public class Loops { | |
public static void main(String[] args) { | |
NewerOlder