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
package sanakirja; | |
import java.io.File; | |
import java.io.FileWriter; | |
import java.io.IOException; | |
import java.util.HashMap; | |
import java.util.Scanner; | |
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
< cce> is there any documentation on how to send an entity from the server to the csqc? | |
< cce> i can send it but couldn't figure out how to recieve it on the client side | |
<@LordHavoc> I'm not sure if there is actual documentation :P | |
<@LordHavoc> there is a lot of sample code | |
<@LordHavoc> SendEntity basically begins with a WriteByte to MSG_ENTITY containing an entity type | |
<@LordHavoc> the types are your own constants | |
<@LordHavoc> CSQC_Ent_Update is called on the csqc and the first thing it must do is ReadByte() to get that entity type, then | |
a switch or if else to figure out which one it is | |
<@LordHavoc> once it has figured out what entity type it is, it must issue Read calls similar to the Write calls that the | |
SendEntity function wrote |
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
some words on mario paint formats | |
written by cce | |
thanks to strobe for some guidance | |
Save a savestate with ZSNES version V143. V151 should work too, and probably other versions. | |
The song data begins from offset 0x15F7 (or is it 0x15F7?) and its length is 576 bytes. | |
Song speed is stored at offset 0x183B |
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
@echo OFF | |
setlocal EnableDelayedExpansion | |
set "xml_template=^^<?xml version="1.0" encoding="windows-1252"?^^>^^<rss version="2.0"^^>^^<channel^^>^^<title^^>microblog title^^</title^^>^^<description^^>My mikroblog of excellence!^^</description^^>^^</channel^^>^^</rss^^>" | |
set post_file=posts.xml | |
if exist %post_file% ( | |
echo Post database %post_file% found. | |
) else ( |
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
<# | |
.SYNOPSIS | |
Uninstalls all unwanted programs listed in the $programNames array. | |
#> | |
function Test-Admin { | |
$currentUser = New-Object Security.Principal.WindowsPrincipal $([Security.Principal.WindowsIdentity]::GetCurrent()) | |
$currentUser.IsInRole([Security.Principal.WindowsBuiltinRole]::Administrator) | |
} |
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
import feedparser | |
import argparse | |
import subprocess | |
from time import mktime | |
from datetime import datetime | |
def get_last_edited(): | |
f = open('last_modified.temp', 'r') | |
data = f.read() | |
f.close() |
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
# make sure you have imagemagick installed | |
convert -coalesce -delay 20 -loop 0 sprite*.png -background white -alpha remove anim.gif |
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
# renames tiles given in dir $1 as frames given as list file $2 | |
tilelist=$(ls $1) | |
framelist=$(cat $2) | |
tiles=($tilelist) | |
frames=($framelist) | |
count=${#frames[@]} | |
for i in `seq 1 $count` | |
do |
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 <stdio.h> | |
#include <math.h> | |
#include <assert.h> | |
#include <stdbool.h> | |
#include <portaudio.h> | |
#include "dumb.h" | |
#include "audio.h" | |
#define BUFFERSIZE (2048L) | |
#define SAMPLE_RATE (44100) |
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 | |
import argparse | |
from struct import * | |
import re | |
def write_raw_palette(palette, output_path, write_header): | |
data = "" | |
header = pack('I', len(palette)) |
OlderNewer