Some changes to skelettons
This commit is contained in:
parent
94acb5229f
commit
709ccb86b0
8 changed files with 28 additions and 23 deletions
|
@ -12,6 +12,7 @@
|
||||||
[alias]
|
[alias]
|
||||||
st = status
|
st = status
|
||||||
ci = commit
|
ci = commit
|
||||||
|
commti = commit
|
||||||
co = checkout
|
co = checkout
|
||||||
br = branch
|
br = branch
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ cd ~/.ssh
|
||||||
ln -s $WAI/ssh/config ./
|
ln -s $WAI/ssh/config ./
|
||||||
|
|
||||||
#MUTT
|
#MUTT
|
||||||
if [ ! -d "~/.mutt" ]; then mkdir .mutt/; fi;
|
if [ ! -d "~/.mutt" ]; then mkdir ~/.mutt/; fi;
|
||||||
cd ~/.mutt
|
cd ~/.mutt
|
||||||
ln -s $WAI/mutt/muttrc ./
|
ln -s $WAI/mutt/muttrc ./
|
||||||
ln -s $WAI/mutt/killsig ./
|
ln -s $WAI/mutt/killsig ./
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/**
|
/*
|
||||||
** <+FILENAME+> - <+DESC+>
|
** <+FILENAME+> - <+DESC+>
|
||||||
**
|
**
|
||||||
** (C) 2013 - Frank Villaro-Dixon <Frank@Villaro-Dixon.eu>
|
** (C) 2013 - Frank Villaro-Dixon <Frank@Villaro-Dixon.eu>
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
/*
|
/*
|
||||||
* <+FILENAME+>
|
** <+FILENAME+>
|
||||||
*
|
**
|
||||||
* <+DESC+>
|
** <+DESC+>
|
||||||
*/
|
**
|
||||||
|
** (C) 2013 - Frank Villaro-Dixon <Frank@Villaro-Dixon.eu>
|
||||||
|
*/
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/**
|
/*
|
||||||
* <+FILENAME+> - <+DESC+>
|
** <+FILENAME+> - <+DESC+>
|
||||||
*
|
**
|
||||||
* (C) 2010 - Gillieron Kevin <kevin.gillieron@gw-computing.net>
|
** (C) 2013 - Frank Villaro-Dixon <Frank@Villaro-Dixon.eu>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package <+NAME+>
|
package <+NAME+>
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/**
|
/*
|
||||||
** <+FILENAME+> - <+DESC+>
|
** <+FILENAME+> - <+DESC+>
|
||||||
**
|
**
|
||||||
** (C) 2013 - Frank Villaro-Dixon <Frank@Villaro-Dixon.eu>
|
** (C) 2013 - Frank Villaro-Dixon <Frank@Villaro-Dixon.eu>
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
/*
|
/*
|
||||||
* <+FILENAME+>
|
** <+FILENAME+>
|
||||||
*
|
**
|
||||||
* <+DESC+>
|
** <+DESC+>
|
||||||
*/
|
**
|
||||||
|
** (C) 2013 - Frank Villaro-Dixon <Frank@Villaro-Dixon.eu>
|
||||||
|
*/
|
||||||
|
|
||||||
class <+CLASSNAME+> {
|
class <+CLASSNAME+> {
|
||||||
public static void main(String[] argv) {
|
public static void main(String[] argv) {
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
* <+FILENAME+>
|
** <+FILENAME+>
|
||||||
*
|
**
|
||||||
* Author : Kevin Gillieron <kevin.gillieron@gw-computing.net>
|
** Author: Frank Villaro-Dixon <Frank@Villaro-Dixon.eu>
|
||||||
* Description : <+DESC+>
|
** Description: <+DESC+>
|
||||||
*
|
**
|
||||||
* vim: set ts=4 sw=4 noet:
|
** vim: set ts=4 sw=4 noet:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
<+CODE+>
|
<+CODE+>
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Reference in a new issue