I hereby claim:
- I am olbat on github.
- I am olbat (https://keybase.io/olbat) on keybase.
- I have a public key whose fingerprint is D1CC 3AE0 5ADA FF27 BEE6 27B7 0B1A 5390 865E 24D7
To claim this, I am signing this object:
require "benchmark" | |
require "./src/icu" | |
REPEAT=1_000 | |
# from https://www.cl.cam.ac.uk/~mgk25/ucs/examples/UTF-8-demo.txt | |
samples = [] of String | |
samples << <<-EOS | |
Σὲ γνωρίζω ἀπὸ τὴν κόψη | |
τοῦ σπαθιοῦ τὴν τρομερή, |
src = STDIN.read | |
# iterate on "1st level" module definitions | |
src.dup.scan(/^module [^;]+$.+?^end/m) do |mod| | |
# get the nested modules' definitions | |
mdefs = mod.scan(/^ *module [^\n]+$(?=\n +module)/m).map(&:to_s) | |
# stop if there is no nested module definition | |
next if mdefs.empty? | |
ndefs = mdefs.size | |
# get the last definition that's not extracted because of the look ahead |
require "xml" | |
require "c/dlfcn" | |
PKGNAME = "icu-uc" | |
TESTFUNC = "u_init" | |
{% if flag?(:darwin) %} | |
SOFILE = "libicuuc.dylib" | |
{% elsif flag?(:windows) %} | |
SOFILE = "libicuuc.dll" | |
{% else %} |
I hereby claim:
To claim this, I am signing this object:
$ grep -Rn -- '^--.\+--[[:space:]]*TODO:[[:space:]]*French[[:space:]].\+!!!!' | wc -l | |
172 | |
$ grep -Rn -- '^--.\+--[[:space:]]*TODO:[[:space:]]*French[[:space:]].\+!!!!' | |
Modules/Avatus.lua:44:-- ["Holo Hand Spawned"] = "Holo Hand Spawned", -- TODO: French translation missing !!!! | |
Modules/Avatus.lua:52:-- ["Portals have opened!"] = "Portals have opened!", -- TODO: French translation missing !!!! | |
Modules/Avatus.lua:53:-- ["Gun Grid Activated"] = "Gun Grid Activated", -- TODO: French translation missing !!!! | |
Modules/Avatus.lua:59:-- ["PURGE BLUE BOSS"] = "PURGE BLUE BOSS", -- TODO: French translation missing !!!! | |
Modules/Avatus.lua:61:-- ["GO TO SIDES !"] = "GO TO SIDES !", -- TODO: French translation missing !!!! | |
Modules/Avatus.lua:62:-- ["INTERRUPT CRUSHING BLOW!"] = "INTERRUPT CRUSHING BLOW!", -- TODO: French translation missing !!!! |
#!/bin/bash -e | |
#### | |
# shlog is a bash script that allow you to record a shell session by logging | |
# command history and giving diff of edited files | |
#### | |
# User notes: | |
# - Install: | |
# Load the script using 'source shlog.bash' (add it to your .bashrc | |
# to load it automatically) |
obj-m += realtimeclock.o | |
all: | |
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules | |
clean: | |
make -c /lib/modules/$(shell uname -r)/build M=$(PWD) clean |
# Exception classes | |
# An error related to the resource management | |
class ResourceError < Exception | |
end | |
# The specified resource was not found | |
class ResourceNotFoundError < ResourceError | |
end |
/* | |
* Copyright (C) 2006, 2007 Sarzyniec Luc <[email protected]> | |
* | |
* This program is free software; you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation; either version 3 of the License, or | |
* (at your option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |