Skip to content

Instantly share code, notes, and snippets.

View hjpbarcelos's full-sized avatar

Henrique J. P. Barcelos hjpbarcelos

View GitHub Profile
"select w.WWORK_START AS work_date," & _
" w.WWORK_FINISH AS finish_date," & _
" p.PROJ_NAME as Project," & _
" a.TASK_NAME as Task," & _
" a.WASSN_COMMENTS as Comment," & _
" w.WWORK_VALUE / 60000 as work," & _
" r.RES_NAME as Resource," & _
" r.WRES_ID as resource_id," & _
" datediff(d,w.wwork_start,w.wwork_finish)+1 AS work_days" & _
" from MSP_WEB_RESOURCES r," & _
@hjpbarcelos
hjpbarcelos / cmd
Created April 14, 2014 22:17
Composer on Windows
> php "C:\ProgramData\ComposerSetup\bin\composer.phar" install
@hjpbarcelos
hjpbarcelos / Makefile
Created September 1, 2014 01:26
Make example
main: main.c other.o
gcc -Wall main.c other.o -o main
other.o: other.c
gcc -c other.c -o other.o