One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
<?php echo 'hello world!'; ?> |
import java.io.File; | |
import java.io.IOException; | |
public class Main { | |
public static void main(String[] args) throws IOException { | |
System.out.println("Working Directory = " + | |
System.getProperty("user.dir")); | |
File folder = new File(System.getProperty("user.dir")); | |
File[] listOfFiles = folder.listFiles(); |
int redLEDPin=5; //Declare redLEDPin an int, and set to pin 9 | |
int yellowLEDPin=3; //Declare yellowLEDPin an int, and set to pin 10 | |
int redOnTime=250; //Declare redOnTime an int, and set to 250 mseconds | |
int redOffTime=250; //Declare redOffTime an int, and set to 250 | |
int yellowOnTime=175; //Declare yellowOnTime an int, and set to 250 | |
int yellowOffTime=250; //Declare yellowOffTime an int, and set to 250 | |
int numYellowBlinks; //Number of times to blink yellow LED | |
int numRedBlinks; //Number of times to blink red LED | |
String redMessage="The Red LED is Blinking"; //Declaring a String Variable | |
String yellowMessage= "The Yellow LED is Blinking"; //Declaring a String Variable |
----- Esc ----- | |
Quick change directory: Esc + c | |
Quick change directory history: Esc + c and then Esc + h | |
Quick change directory previous entry: Esc + c and then Esc + p | |
Command line history: Esc + h | |
Command line previous command: Esc + p | |
View change: Esc + t (each time you do this shortcut a new directory view will appear) | |
Print current working directory in command line: Esc + a | |
Switch between background command line and MC: Ctrl + o | |
Search/Go to directory in active panel: Esc + s / Ctrl + s then start typing directory name |
# session management | |
tmux ls (or tmux list-sessions) | |
tmux new -s session-name | |
Ctrl-b d Detach from session | |
tmux attach -t [session name] | |
tmux kill-session -t session-name | |
Ctrl-b c Create new window | |
Ctrl-b d Detach current client | |
Ctrl-b l Move to previously selected window |
:profile_data | |
:ber | |
:value | |
11 | |
[:value 11] | |
{:value 11} | |
[:ber 11] | |
:event_type | |
:value | |
foo |
"Plugins" | |
set nocompatible " be iMproved, required | |
filetype off " required | |
" set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
Plugin 'VundleVim/Vundle.vim' | |
Plugin 'lambdatoast/elm.vim.git' |
(ns soap-test.core-test | |
(:require [clojure.test :refer :all] | |
[clojure.test.check.generators :as gen] | |
[clojure.test.check.properties :as prop] | |
[clojure.test.check.clojure-test :refer [defspec]] | |
[clj-soap.core :as soap :refer [obj->soap-str]])) | |
; Boilerplace method required by the clj-soap library | |
(defmethod obj->soap-str :currency [obj argtype] (str obj)) |