This project requires Python 3.6.
This project isn't packaged, and traditionally uses:
$ python -m venv venv
$ source venv/bin/activate
$ pip install "${pypi_deps[@]}"
export class IntervalCancelledError extends Error { | |
constructor(intervalCount, ...args) { | |
super(...args); | |
if (Error.captureStackTrace) { | |
Error.captureStackTrace(this, IntervalCancelledError); | |
} | |
this.name = "IntervalCancelledError"; | |
this.intervalCount = intervalCount; | |
} | |
} |
#!/usr/bin/env zsh | |
emulate -R zsh | |
autoload -Uz zmathfunc; zmathfunc | |
# zmodload -F zsh/mathfunc | |
unset ENV | |
unset BASH_ENV | |
case $NIXPKGS in '') NIXPKGS="nixpkgs/ee084c02040e864eeeb4cf4f8538d92f7c675671";; esac |
bb010g ~/.../c/mrsh % ./build/mrsh -c 'true; foo="`true``false`$? `printf "%s\n" "$?"``false`"; printf "%s\n" "$? $foo"' 2>&1 | |
main (post mrsh_parse_line): program | |
├─command_list ─ pipeline | |
│ └─simple_command | |
│ └─name ─ word_string [1:1 → 1:5] true | |
├─command_list ─ pipeline | |
│ └─simple_command | |
│ └─assignment | |
│ ├─name foo | |
│ └─value ─ word_list (quoted) |
// Copyright 2020 Dusk <[email protected]> | |
// SPDX-License-Identifier: 0BSD | |
class RingBuffer<T> { | |
buffer: T[]; | |
readIx: number; | |
writeIx: number; | |
ixMask: number; | |
canGrow: boolean; | |
canDrop: boolean; |
diff --git a/changes.txt b/changes.txt | |
new file mode 100644 | |
index 0000000..3aba1b5 | |
--- /dev/null | |
+++ b/changes.txt | |
@@ -0,0 +1,9 @@ | |
+Change log file for X-Moto-PSP | |
+ | |
+version 0.2 (2008-12-28) | |
+ * fix compilation with latest SDK |
diff -Naur xmoto-0.5.10/configure xmoto-0.5.10-new/configure | |
--- xmoto-0.5.10/configure 2012-05-04 05:07:06 | |
+++ xmoto-0.5.10-new/configure 2012-06-23 05:19:03 | |
@@ -5974,7 +5974,7 @@ | |
$as_echo_n "(cached) " >&6 | |
else | |
ac_check_lib_save_LIBS=$LIBS | |
-LIBS="-lGLU $LIBS" | |
+LIBS="-lGL -lGLU $LIBS" | |
cat confdefs.h - <<_ACEOF >conftest.$ac_ext |
{ lib, libSuper }: | |
let | |
# lib imports {{{1 | |
inherit (lib.trivial) #{{{2 | |
comp | |
flow | |
; | |
inherit (lib.recursionSchemes) #{{{1 | |
# vMu- vMu_ v-Mu v_Mu # (mod) |
#!/usr/bin/env dash | |
set -eu | |
## print argument, but shell quoted | |
quote() { #{{{1 | |
local arg; for arg; do | |
alias __quote_tmp_alias_arg="$arg" | |
arg="$(alias __quote_tmp_alias_arg)" | |
arg="${arg##*__quote_tmp_alias_arg=}" | |
printf '%s\n' "$arg" |
using System; | |
using System.Collections.Generic; | |
using System.Runtime.ConstrainedExecution; | |
using System.Runtime.InteropServices; | |
using System.Runtime.Versioning; | |
using System.Security; | |
using System.Security.Permissions; | |
using System.Text; | |
namespace ExtractLibraryResource |