Techcable

Results 66 issues of Techcable

[Cython](https://cython.org/) is a DSL for writing native python extension modules. Running "cython" seems to fail with a "bad system call" message during the `cython` -> C translation. If I run...

syscall/seccomp

I'd like to use jep in my application, but I'd need a compiled version to include in the jar alongside the python interpreter. I considered trying to download and extract...

build

Currently, on Apple Silicon chips, calling `mmap(PROT_WRITE | PROT_EXEC)` will fail due to restrictions on marking memory executable & writable at the same time. See apple developer documentation on this...

Bungee Scheduler is a little odd. Each plugin gets its own instance of the JDK `Executors.cachedThreadExecutor()`. If you want delayed or periodic tasks, each of the [tasks calls `Thread.sleep`](https://github.com/SpigotMC/BungeeCord/blob/fd4864d475f705b348adec3fe8f48754b5ee11e6/proxy/src/main/java/net/md_5/bungee/scheduler/BungeeTask.java#L52) and...

Hi! This looks like a cool project. Have you considered using `rust-anlayser` for autocompletion instead of `racer`? In my experience, rust-anlayser has much better autocompletion than either racer or RLS....

enhancement
help wanted
good first issue

This is relevant to the fix and discussion in #12735 (and supersedes it). @ifreund noticed that `align(1)` is missing from `translate-c` output. Hoewever that bug is present with both stage1...

Binary releases crash because they don't support 16kb-aligned pages. I get the following error with the latest binary releases (both from github releases, and the Arch Linux ARM repos): ```...

Before adding this, the simplest way to do this was `(not (nil? (index-of val collection)))` or `(truthy? (index-of val collection))`. In my opinion, this is significantly less clear than the...

I would expect the following code to work: ```janet (defn escape-string [target] (defn escaper [bad] (string/format "\\%s" bad)) (def escaped (peg/replace-all '(set ``\\\"\n\t\0``) escaper target)) (string/format ``"%s"`` escaped)) (print (escape-string...

enhancement

UndefinedBehaviorSanitizer is unhappy about "applying zero offset to null pointer". Presumably this comes up when empty strings are involved. This seems to be an issue in two files: [parse.c:1197](https://github.com/janet-lang/janet/blob/03ba1f7021e8beefb62afb29e3c7a17cf373596f/src/core/parse.c#L1197) in...