Skip to content

Instantly share code, notes, and snippets.

View ciembor's full-sized avatar

Maciej Ciemborowicz ciembor

View GitHub Profile
@ciembor
ciembor / cstrike
Created June 7, 2011 06:02
CouterStrike and Windows .xinit
#!/bin/sh
######################
# ~/.xinit/cstrike #
######################
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap
@ciembor
ciembor / broadcast.php
Created June 7, 2011 06:07
Broadcast Messaging System based on BotApi (Gadu-Gadu protocol)
<?php
require_once 'GGBotApi/PushConnection.php';
/********************************/
/******* LISTA ROZMÓWCÓW ********/
/********************************/
$interlocutors = array(
8112393 => array('Asia', 149, 179, 0),
@ciembor
ciembor / lista.c
Created June 8, 2011 01:26
ASD, listy
/*
W implementacji wskaźnikowej dana jest lista pojedynczo wiązana o parzystej liczbie elementów.
Zero też jest liczbą parzystą. Elementy danej listy POPRZESTAWIAC w ten sposób,
zeby na początku znalazły się elementy najbardziej skrajne
- pierwszy z ostatnim, następnie drugi z przedostatnim itd.
*/
#include<stdio.h>
#include<stdlib.h>
@ciembor
ciembor / gist:1045843
Created June 24, 2011 22:52
execute JavaScriptMVC from any directory
We couldn’t find that file to show.
@ciembor
ciembor / dfmonitor
Created July 30, 2011 18:24
Simple monitor of disk usage
#!/bin/bash
# Example usage:
# dfmonitor -h /home
while true;
do
clear
df $@
sleep 5
ACLOCAL_AMFLAGS = -I m4
VALAFLAGS = --vapidir $(top_srcdir)/src/vapi \
--pkg gtk+-2.0 \
--pkg geany \
--pkg vte \
-H multiterm.h --use-header
geanypluginsdir = $(libdir)/geany
geanyplugins_LTLIBRARIES = multiterm.la
[general]
# location=sidebar
location=message_window
bg_color=#000000
fg_color=#ffffff
allow_bold=true
audible_bell=true
# one of: system, on, off
cursor_blink_mode=off
# one of: ascii_backspace, ascii_delete, delete_sequences, tty
@ciembor
ciembor / PKGBUILD
Created August 15, 2011 20:55
geany-multiterm plugin PKGBUILD
# Contributor: Maciej Ciemborowicz <pub at ciemborowicz dot pl>
pkgname=geany-multiterm-git
pkgver=20110815
pkgrel=2
pkgdesc="MultiTerm plugin for Geany editor (terminal with tabs)."
arch=('i686' 'x86_64')
url="https://github.com/codebrainz/geany-multiterm"
license=('unknown')
depends=('geany' 'gtk2>=2.0' 'vte')
@ciembor
ciembor / .bashrc
Created August 16, 2011 20:41
My PC .bashrc with custom prompt and colorful ls
PS1='[\[\e[0;97m\]\u@\h\[\e[m\] \[\e[0;96m\]\W\[\e[m\]]\[\e[;97m\]\$\[\e[m\] \[\e[0;97m\]'
alias ls="ls --color=always"
@ciembor
ciembor / are_images_bright.c
Created October 21, 2011 21:31
Check if images are bright or dark (university homework - libgd)
// author: Maciej Ciemborowicz
// Jagiellonian University
// ZGK 2011/2012
#include <stdio.h>
#include <math.h>
#include <gd.h>
#include "gd_wewy.h"
#define DARK 0