Skip to content

Instantly share code, notes, and snippets.

This is a test
@fraga
fraga / updateAxClass.cs
Last active August 29, 2015 14:11
updateAxClass
static void dynUpdateAxClass(Args _args)
{
AxGenerateAxBCClass gen;
gen = AxGenerateAxBCClass::newTableId(tableNum(SalesTable));
gen.run();
}
@fraga
fraga / gist:5d07180db0b0aabb7ab1
Last active August 29, 2015 14:17
Git Extensions Travis Build Log
Using worker: worker-linux-bb3654bb-1.bb.travis-ci.org:travis-linux-7
travis_fold:start:system_info
Build system information
Build language: c
Build image provisioning date and time
Wed Feb 4 18:22:50 UTC 2015
Operating System Details
Distributor ID: Ubuntu
Description: Ubuntu 12.04 LTS
@fraga
fraga / gist:963928
Created May 10, 2011 05:17
Vimrc file
" An example for a vimrc file.
"
" Maintainer: Bram Moolenaar <Bram@vim.org>
" Last change: 2008 Dec 17
"
" To use it, copy it to
" for Unix and OS/2: ~/.vimrc
" for Amiga: s:.vimrc
" for MS-DOS and Win32: $VIM\_vimrc
" for OpenVMS: sys$login:.vimrc
@fraga
fraga / gist:963930
Created May 10, 2011 05:20
Bashrc example glol and mate alias (git)
export EDITOR="$HOME/bin/mate -w"
export glol="git log --pretty=oneline --abbrev-commit --graph --decorate"
@fraga
fraga / .gitconfig
Created May 10, 2011 19:03
.gitconfig windows machine
#usage git difftool HEAD^ HEAD or HEAD~1 HEAD~1 <filename>
[apply]
whitespace = fix
[gui]
recentrepo = C:/repo
[user]
name = Rodrigo
email = email
[diff]
tool = bc
@fraga
fraga / gist:991175
Created May 25, 2011 15:29
bash_profile
export TERM="xterm-color"
alias ls="ls -G"
export PATH=$PATH:/usr/local/mysql/bin:$HOME/bin:~/Desktop/eclipse/workspace/android/android-sdk-mac_86/tools
export EDITOR="$HOME/bin/mate -w"
export glol="git log --pretty=oneline --abbrev-commit --graph --decorate"
PS1="\[\033[01;32m\]\h\[\033[01;34m\] \w \$\[\033[00m\] "
@fraga
fraga / gist:998393
Created May 30, 2011 02:53
Xunit console configuration for .net 4.0 (xunit.console.exe.config)
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<requiredRuntime version="v4.0.20506" safemode="true"/>
</startup>
<configSections>
<section name="xunit" type="Xunit.ConsoleClient.XunitConsoleConfigurationSection, xunit.console"/>
</configSections>
@fraga
fraga / gist:998467
Created May 30, 2011 04:48
Two differents web.config regarding unity mapping
<configuration>
<configSections>
<section name="exceptionHandling" type="Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionHandlingSettings, Microsoft.Practices.EnterpriseLibrary.ExceptionHandling, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
<section name="unity" type="Microsoft.Practices.Unity.Configuration.UnityConfigurationSection, Microsoft.Practices.Unity.Configuration, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
</configSections>
<exceptionHandling>
<exceptionPolicies>
<add name="UIExceptionPolicy">
<exceptionTypes>
<add type="System.Exception, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" postHandlingAction="None" name="Exception">
@fraga
fraga / gist:1003096
Created June 1, 2011 19:26
Program to copy vs font color settings to sql management studio settings
//
// Program.cs
//
// Author:
// Tomas Restrepo (email was hidden for privacy concerns)
//
using System;
using System.Collections.Generic;