I hereby claim:
- I am jprjr on github.
- I am jprjr (https://keybase.io/jprjr) on keybase.
- I have a public key whose fingerprint is D1C2 E8CC C232 8C19 98CE 92B7 1A8A B126 F912 9FA6
To claim this, I am signing this object:
| --- extra/kipi-plugins/CMakeLists.txt~ 2014-11-26 08:53:41.000000000 -0600 | |
| +++ extra/kipi-plugins/CMakeLists.txt 2014-11-26 08:53:58.000000000 -0600 | |
| @@ -100,8 +100,8 @@ | |
| MACRO_OPTIONAL_FIND_PACKAGE(Gdk) # For ipodexport. | |
| MACRO_OPTIONAL_FIND_PACKAGE(GLIB2) # For ipodexport. | |
| MACRO_OPTIONAL_FIND_PACKAGE(GObject) # For ipodexport. | |
| - MACRO_OPTIONAL_FIND_PACKAGE(FLEX) # For Panorama (must be found before KdepimLibs for MacOS). | |
| - MACRO_OPTIONAL_FIND_PACKAGE(BISON) # For Panorama (must be found before KdepimLibs for MacOS). | |
| + #MACRO_OPTIONAL_FIND_PACKAGE(FLEX) # For Panorama (must be found before KdepimLibs for MacOS). | |
| + #MACRO_OPTIONAL_FIND_PACKAGE(BISON) # For Panorama (must be found before KdepimLibs for MacOS). |
| --- extra/kipi-plugins/CMakeLists.txt~ 2014-11-26 09:06:46.000000000 -0600 | |
| +++ extra/kipi-plugins/CMakeLists.txt 2014-11-26 09:07:01.000000000 -0600 | |
| @@ -90,8 +90,8 @@ | |
| MACRO_OPTIONAL_FIND_PACKAGE(Gdk) # For ipodexport. | |
| MACRO_OPTIONAL_FIND_PACKAGE(GLIB2) # For ipodexport. | |
| MACRO_OPTIONAL_FIND_PACKAGE(GObject) # For ipodexport. | |
| -MACRO_OPTIONAL_FIND_PACKAGE(FLEX) # For Panorama (must be found before KdepimLibs for MacOS). | |
| -MACRO_OPTIONAL_FIND_PACKAGE(BISON) # For Panorama (must be found before KdepimLibs for MacOS). | |
| +#MACRO_OPTIONAL_FIND_PACKAGE(FLEX) # For Panorama (must be found before KdepimLibs for MacOS). | |
| +#MACRO_OPTIONAL_FIND_PACKAGE(BISON) # For Panorama (must be found before KdepimLibs for MacOS). |
I hereby claim:
To claim this, I am signing this object:
NGINX does weird things with If statements: http://wiki.nginx.org/IfIsEvil
It turns out, "if" inside a location directive w/ proxy_pass disables that implied URL-rewriting function. So, for example:
location /some/url/ {
proxy_pass http://backend/api/;
# example client url: http://server/some/url/data
# URL sent to proxy: http://backend/api/data
}
| ./xbps-src -a x86_64-musl pkg zlib | |
| [*] Updating `http://repo.voidlinux.eu/current/x86_64-repodata' ... | |
| [*] Updating `http://repo.voidlinux.eu/current/nonfree/x86_64-repodata' ... | |
| x86_64-repodata: 9120B [avg rate: 249MB/s] | |
| [*] Updating `http://repo.voidlinux.eu/current/multilib/x86_64-repodata' ... | |
| x86_64-repodata: 309KB [avg rate: 1226KB/s] | |
| [*] Updating `http://repo.voidlinux.eu/current/multilib/nonfree/x86_64-repodata' ... | |
| x86_64-repodata: 6423B [avg rate: 180MB/s] | |
| [*] Updating `http://repo.voidlinux.eu/current/x86_64-musl-repodata' ... | |
| ERROR: [reposync] failed to fetch file `http://repo.voidlinux.eu/current/x86_64-musl-repodata': Not Found |
| GBS FILE SPECIFICATION 1.02 | |
| A file format for ripped GameBoy sound | |
| By Scott Worley <ripsaw8080@hotmail.com> | |
| GBS files are similar to PSID and NSF files. Code and data that is relevant to | |
| sound production is ripped from a GameBoy ROM and combined with a descriptive | |
| header to produce a compact sound module file. A player program that emulates | |
| some of the hardware of a GameBoy is required to listen to these files. |
| ; Note about interrupt coding: | |
| ; The GBS' TAC should have bits 2 and 6 enabled (0x44) | |
| ; You should have an RST table at the start(00-3F from game, or custom code if unused) | |
| ; With the RST table in place, add 0x10 more bytes after the RST table. | |
| ; The 1st 8 new bytes are for vblank's code, or a jump | |
| ; The last 8 new bytes are for timer interrupt code, or a jump | |
| ; Make sure to keep your play routine compatible with not using this setup, | |
| ; because not all players will support it, being that it's unofficial |
| ################################################################### | |
| Writing C software without the standard library | |
| Linux Edition | |
| ################################################################### | |
| There are many tutorials on the web that explain how to build a | |
| simple hello world in C without the libc on AMD64, but most of them | |
| stop there. | |
| I will provide a more complete explanation that will allow you to | |
| build yourself a little framework to write more complex programs. |
| /* SPDX-License-Identifier: 0BSD | |
| minimum demo program to save the "raw" id3 data | |
| from mpg123 into a separate file. | |
| Compile with something like: | |
| cc -o extract extract.c $(pkg-config --cflags --libs libmpg123) | |
| */ |