Some changes to skelettons

This commit is contained in:
Frank Villaro-Dixon 2013-08-03 12:47:08 +02:00
parent 94acb5229f
commit 709ccb86b0
8 changed files with 28 additions and 23 deletions

View file

@ -12,6 +12,7 @@
[alias]
st = status
ci = commit
commti = commit
co = checkout
br = branch

View file

@ -21,7 +21,7 @@ cd ~/.ssh
ln -s $WAI/ssh/config ./
#MUTT
if [ ! -d "~/.mutt" ]; then mkdir .mutt/; fi;
if [ ! -d "~/.mutt" ]; then mkdir ~/.mutt/; fi;
cd ~/.mutt
ln -s $WAI/mutt/muttrc ./
ln -s $WAI/mutt/killsig ./

View file

@ -1,4 +1,4 @@
/**
/*
** <+FILENAME+> - <+DESC+>
**
** (C) 2013 - Frank Villaro-Dixon <Frank@Villaro-Dixon.eu>

View file

@ -1,8 +1,10 @@
/*
* <+FILENAME+>
*
* <+DESC+>
*/
** <+FILENAME+>
**
** <+DESC+>
**
** (C) 2013 - Frank Villaro-Dixon <Frank@Villaro-Dixon.eu>
*/
#include <iostream>
using namespace std;

View file

@ -1,8 +1,8 @@
/**
* <+FILENAME+> - <+DESC+>
*
* (C) 2010 - Gillieron Kevin <kevin.gillieron@gw-computing.net>
*/
/*
** <+FILENAME+> - <+DESC+>
**
** (C) 2013 - Frank Villaro-Dixon <Frank@Villaro-Dixon.eu>
*/
package <+NAME+>

View file

@ -1,4 +1,4 @@
/**
/*
** <+FILENAME+> - <+DESC+>
**
** (C) 2013 - Frank Villaro-Dixon <Frank@Villaro-Dixon.eu>

View file

@ -1,8 +1,10 @@
/*
* <+FILENAME+>
*
* <+DESC+>
*/
** <+FILENAME+>
**
** <+DESC+>
**
** (C) 2013 - Frank Villaro-Dixon <Frank@Villaro-Dixon.eu>
*/
class <+CLASSNAME+> {
public static void main(String[] argv) {

View file

@ -1,12 +1,12 @@
<?php
/*
* <+FILENAME+>
*
* Author : Kevin Gillieron <kevin.gillieron@gw-computing.net>
* Description : <+DESC+>
*
* vim: set ts=4 sw=4 noet:
*/
** <+FILENAME+>
**
** Author: Frank Villaro-Dixon <Frank@Villaro-Dixon.eu>
** Description: <+DESC+>
**
** vim: set ts=4 sw=4 noet:
*/
<+CODE+>
?>