Skip to content

Instantly share code, notes, and snippets.

View MhdAljuboori's full-sized avatar

Mohammed Al-Juboori MhdAljuboori

View GitHub Profile
@MhdAljuboori
MhdAljuboori / Muukii.tmTheme
Created August 26, 2014 09:29
Muukii - Sublime Theme
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<!-- Generated by: TmTheme-Editor -->
<!-- ============================================ -->
<!-- app: http://tmtheme-editor.herokuapp.com -->
<!-- code: https://github.com/aziz/tmTheme-Editor -->
<plist version="1.0">
<dict>
<key>gutterSettings</key>
<dict>
@MhdAljuboori
MhdAljuboori / Connect 4
Created May 20, 2012 19:01
AI homework
initializeColumn(Column) :-
Column >0,
% create empty table
assert(top(Column, 1)),
Column1 is Column-1,
initializeColumn(Column1).
initializeColumn(0).
% Create Game with Row equal to row and column equal to column
createGame(Row, Column) :-
@MhdAljuboori
MhdAljuboori / Draw OpenGL
Created May 20, 2012 18:59
Draw not moving thing in OpenGL
/************** main.cpp **************/
int InitGL(GLvoid) {
......
myClass = new myClass();
myClass->Draw(pos);
......
}
int DrawGLScene(GLvoid) {
......