This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
char *path_data_folder(const char *folder, const char *file) | |
{ | |
ALLEGRO_PATH *exe_path = NULL; | |
ALLEGRO_PATH *path = NULL; | |
ALLEGRO_PATH *data_dir = NULL; | |
char copy_path[2048]; | |
exe_path = al_get_standard_path(ALLEGRO_RESOURCES_PATH); | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
To Run This Script you 2 things | |
- use virtualenv | |
- install pillow (PIL fork for python 3.x) - pip install pillow | |
""" | |
import sys | |
import os |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public function adicionar_curso($processo_id){ | |
$instituicao_id = $_SESSION['access_adm']['instituicao']; | |
//$processo_id = $_SESSION['access_adm']['processo']; | |
$cursos = $this->processoModel->listarCursosCadastradosEmProcesso($processo_id); | |
$processos = $this->processoModel->listarProcessos(); | |
$this->form_validation->set_rules('processos', 'Processos', 'required|trim|is_numeric'); | |
if($this->form_validation->run() == FALSE){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "include/engine/level/CB_Level.h" | |
#include "include/engine/CB_Debug.h" | |
#include <fstream> | |
CB_Level::CB_Level() | |
{ | |
map_tiles = new CB_Tile[ MAX_GRID_SIZE_W * MAX_GRID_SIZE_H ]; | |
InitFreshMap(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3.7 | |
import os | |
import sys | |
import json | |
import csv | |
def usage(): | |
print("=======================") | |
print("gen_tiles.py <file.csv>") | |
print("=======================") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[xdebug] | |
zend_extension=xdebug | |
xdebug.remote_enable=1 | |
xdebug.remote_port=9000 | |
xdebug.remote_autostart=1 | |
xdebug.remote_host=localhost | |
xdebug.remote_log="/tmp/xdebug.log" | |
xdebug.remote_connect_back=1 | |
xdebug.remote_handler=dbgp | |
xdebug.idekey="VSCODE" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
regex usado: ^([?|!])[\s](.+[aA-zZ0-9])[\s](.+[aA-zZ0-9])$ | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <allegro5/allegro.h> | |
#include <allegro5/allegro_acodec.h> | |
#include <allegro5/allegro_audio.h> | |
#include <allegro5/allegro_font.h> | |
#include <allegro5/allegro_image.h> | |
#include <allegro5/allegro_primitives.h> | |
#include <allegro5/allegro_ttf.h> | |
#include <allegro5/allegro_native_dialog.h> | |
#include <stdio.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <allegro5/allegro.h> | |
#include <allegro5/allegro_image.h> | |
#include <allegro5/allegro_primitives.h> | |
#include <allegro5/allegro_opengl.h> | |
#include <allegro5/allegro_audio.h> | |
#include <allegro5/allegro_acodec.h> | |
#include <allegro5/allegro_ttf.h> | |
#include <allegro5/allegro_native_dialog.h> | |
#include <cstdio> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
format PE console 4.0 | |
entry start | |
include 'win32a.inc' | |
section '.data' data readable writeable | |
_fmt db "%s",0 | |
num1 dd 0 | |
num2 dd 0 | |
res dd 0 |