This file contains hidden or 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | |
<html> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> | |
<title>~/src/wren/example/syntax.wren.html</title> | |
<meta name="Generator" content="Vim/7.4"> | |
<meta name="plugin-version" content="vim7.4_v1"> | |
<meta name="syntax" content="wren"> | |
<meta name="settings" content="number_lines,use_css,pre_wrap,no_foldcolumn,expand_tabs,line_ids,prevent_copy="> | |
<meta name="colorscheme" content="gruvbox"> |
This file contains hidden or 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
#!/bin/zsh | |
set -e | |
utf8() { | |
iconv -f ISO-8859-1 -t UTF-8 $1 > $1.tmp | |
mv $1.tmp $1 | |
} | |
files=($(find -name '*.txt' | xargs file | grep ISO-8859 | sed 's/:.*//')) |
This file contains hidden or 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 <string.h> | |
/* Calculates the cross sum of a non-negative integer a. */ | |
int qsum(int a) | |
{ | |
if (a < 10) return a; | |
return (a % 10) + qsum(a / 10); | |
} |
This file contains hidden or 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
# Generated by mksrcinfo v8 | |
# Tue Jan 19 15:49:56 UTC 2016 | |
pkgbase = openclonk | |
pkgdesc = Multiplayer-action-tactic-skill game | |
pkgver = 7.0 | |
pkgrel = 3 | |
url = http://openclonk.org | |
install = openclonk.install | |
arch = i686 | |
arch = x86_64 |
This file contains hidden or 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
# $Id: PKGBUILD 97936 2013-10-01 16:49:40Z bpiotrowski $ | |
# Maintainer: Chris Brannon <[email protected]> | |
# Contributor: Allan McRae <[email protected]> | |
# Contributor: Philip Nilsson <[email protected]> | |
pkgname=curlftpfs | |
pkgver=0.9.2 | |
pkgrel=6 | |
pkgdesc="A filesystem for acessing FTP hosts based on FUSE and libcurl." | |
url="http://curlftpfs.sourceforge.net/" |
This file contains hidden or 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
struct Foo; | |
struct FooBuilder<'a> { | |
foo: &'a Foo, | |
} | |
impl Foo { | |
fn build(&self) -> FooBuilder { | |
FooBuilder { foo: &self } | |
} | |
} |
This file contains hidden or 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 python3 | |
import pexpect | |
import os | |
import sys | |
import time | |
openclonk = './openclonk-server' | |
#scenario = 'planet/Tests.ocf/Minimal.ocs' |
OlderNewer