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] [alias]
st = status st = status
ci = commit ci = commit
commti = commit
co = checkout co = checkout
br = branch br = branch

View file

@ -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 ./

View file

@ -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>

View file

@ -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;

View file

@ -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+>

View file

@ -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>

View file

@ -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) {

View file

@ -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+>
?> ?>