| bash. awk. Differences between dates (Plain text) |
pier4r |
2020-10-30 04:37 |
|
14:57 root@
# cat seservice13783 | sort -k 2
"2020-10-18T11:35:57.970451478Z 158.177.177.93"
"2020-10-19T05:03:23.29479408Z 158.177.177.93"
"2020-10-19T22:30:49.359389161Z 158.177.177.93"
"2020-10-20T15:58:14.699997636Z ... |
| file_to_bmp.m (Erlang) |
alaskanemily |
2020-10-24 10:20 |
|
Quick and dirty program to dump a bitmap string for a file.
We use this in Z2 to embed a couple fallback images and a fallback sound effect, although we also have use C-grade bin2C most of the time to avoid the extra text parsing if pos... |
| FREE IPHONE GIVEAWAY (Plain text) |
yolel99939 |
2020-10-11 21:24 |
|
https://about.me/spiniphonefree
https://about.me/freeiphonegiveaway
https://www.behance.net/spin-iphone-free
https://github.com/malorot492
https://www.quora.com/profile/Spin-iPhone-Free-1
https://hackerone.com/wiweh47282
https://en... |
| RenderWare PS2 Grand Theft Auto San Andreas GS primitive allocation data (Plain text) |
quiret |
2020-10-08 07:00 |
|
provides insight about the texture allocation behaviour of the Sky RenderWare implementation. |
| test.m (Erlang) |
alaskanemily |
2020-09-29 18:55 |
|
:- module test.
:- interface.
:- use_module bool.
:- pred bool_int(bool.bool, int).
:- mode bool_int(in, out) is det.
:- mode bool_int(out, in) is semidet.
:- mode bool_int(in, in) is semidet. % Implied.
:- implementation.
... |
| Copy: selection_sort.clj (Lisp) |
alaskanemily |
2020-09-16 05:39 |
|
Overly simple implementation of selection sort. This is intended to be adapted from Clojure to Sapphire Lisp. |
| general sum of squares of digits and repeat (C) |
reiisi |
2020-09-14 21:59 |
|
This is a routine to sum the squares of the digits of a number, then repeat on the resulting sum, until a sum is repeated, generalized to numeric base 2 through (maybe) 36. |
| Untitled (Makefile) |
alaskanemily |
2020-09-07 14:37 |
|
# Build a Mercury library named mmath
# MMath rules
LIBMMATHDIR=${PWD}/mmath
LIBMMATHFLAGS=--search-lib-files-dir ${LIBMMATHDIR} --init-file ${LIBMMATHDIR}/mmath.init --link-object ${LIBMMATHDIR}/libmmath.a
build_mmath:
cd ${LI... |
| Skia patch (m86) (Diff) |
starg |
2020-09-02 20:57 |
|
diff --git a/gn/toolchain/BUILD.gn b/gn/toolchain/BUILD.gn
index e8e6ce4603..bd9a2777ba 100644
--- a/gn/toolchain/BUILD.gn
+++ b/gn/toolchain/BUILD.gn
@@ -81,7 +81,7 @@ toolchain("msvc") {
if (target_cpu == "x86") {
# Toolc... |
| cups_ipp_test.c (C) |
alaskanemily |
2020-09-01 06:27 |
|
/* Any copyright is dedicated to the Public Domain.
* https://creativecommons.org/publicdomain/zero/1.0/ */
/* gcc -lcups cups_test.c -ansi -Wall -Wextra -pedantic -o cups_test */
#include <cups/cups.h>
#include <stdio.h>
s... |