Skip to content

Instantly share code, notes, and snippets.

View HopperMCS's full-sized avatar

G. F. Hopper HopperMCS

View GitHub Profile
arg=${@}
for (( i=0; i < ${#arg}; i+=1 )) ; do
echo -n "${arg:$i:1}"
sleep 0.05
done
echo
#!/bin/bash
clear
while :
do
clear
scriptreplay timing.out script.out
clear
scriptreplay timing1.out script1.out
clear
sleep 1
# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.
# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
echo "Welcome to CHRISTOFFEN CORPORATION TeamLink"
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
set_term_title(){
echo -en "\033]0;$1\a"
}
set_term_title "CHRISTOFFEN CORPORATION (TM) Termlink"
bash ./.welcome "Welcome to CHRISTOFFEN CORPORATION (TM) Termlink"
/*
* The second revision to polish up the code a bit more.
* (c) 2015 MGage Morgan
*/
import Foundation
public class bmi {
public static func pounds(weight: Double, height: Double) {
let Height = height * height
let thirds = weight / Height