Val Packett

Results 383 comments of Val Packett

Well, if you think it belongs in a separate project, I should be the one doing it, because I wrote the code ;-)

Are you sure the gemspec is run on installation, not on gem building? Travis failed on Rubinius in 1.9 mode: ``` install: 'bundle install' returned false. ```

@juvevood that has nothing to do with fractional scale; that's probably #5103 - #5264

Temporary hack: replacing `,`, `=` and `>` with unicode private use characters ``` clojure (ns hstore (:use pghstore-clj.core) (:require [clojure.string :as string])) (defn hstore-escape [v] (-> v (string/replace "\"" "\\\"")...

Hi, I've created a Flatpak build recipe for Factor, currently at: https://github.com/valpackett/org.factorcode.Factor Ideally [submitting to Flathub](https://docs.flathub.org/docs/for-app-authors/submission/) should be done by the project authors themselves but I can be the submitter/maintainer...

``` /tmp % touch py/__main__.py /tmp % python >>> import py >>> py.__name__ 'py' ``` It's not a module, the module is the directory it's in. This check is for...

Twitter recognizes your app as a desktop one. Add a dummy callback URL like example.com at dev.twitter.com

I can test this! Can you give me a test patch that swaps some keys around (e.g. Z and X) for a visible effect rather than having to check the...

Yes, it worked! \o/ i don't like flashrom's region handling / padded format, here's how i patched the whole rom with ifdtool ``` % ifdtool -x ~/l430.updated.rom % cp flashregion_1_bios.bin...

> you only did ifdtool splitting because of your personal preference Yes, mostly because I do the modifications on my desktop, while flashrom is on a raspberry pi. > Battery...