Java Rules Of Thumb

layout: post title: shell date: 2017-06-18 weather: cloudy categories: Java tags: [Java] description: — Loop ArrayList package com.mkyong.core; import java.util.ArrayList; import java.util.Iterator; import java.util.List; public class ArrayListLoopingExample { public static void main(String[] args) { List<String> list = new ArrayList<String>(); list.add("Text...

shell

tmux shortcuts & cheatsheet start new: tmux start new with session name: tmux new -s myname attach: tmux a # (or at, or attach) attach to named: tmux a -t myname ssh <host> -t tmux a -t <session> list sessions:...

shell command

Shell Wormhole: vagrant & PuPHPet 1 id & group [1] id check whether the specified id exists [2] groups [2.1]list groups OR check a specified group [2.2]check whether a given user belong to a specified group =======================[1]================================ id $UCD_USER >...

vim

Shell Wormhole: vagrant & PuPHPet 1 id & group [1] id check whether the specified id exists [2] groups [2.1]list groups OR check a specified group [2.2]check whether a given user belong to a specified group =======================[1]================================ id $UCD_USER >...

JS Hands-on Experience

Check Browsers function myBrowser(){ var userAgent = navigator.userAgent; var isOpera = userAgent.indexOf("Opera") > -1; //Opera var isIE = userAgent.indexOf("compatible") > -1 && userAgent.indexOf("MSIE") > -1 && !isOpera; //IE var isFF = userAgent.indexOf("Firefox") > -1; //Firefox var isSafari = userAgent.indexOf("Safari") >...