Skip to content

Instantly share code, notes, and snippets.

This file has been truncated, but you can view the full file.
ERROR: ld.so: object '/home/pclouds/w/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/home/pclouds/w/Steam/ubuntu12_64/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS64): ignored.
ERROR: ld.so: object '/home/pclouds/w/Steam/ubuntu12_64/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS64): ignored.
ERROR: ld.so: object '/home/pclouds/w/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
1380.530:0008:0009:trace:module:load_builtin_callback loaded ntdll.dll 0x1104f8 0x7bc10000
1380.530:0008:0009:trace:module:load_builtin_dll Trying built-in L"kernel32.dll"
1380.530:0008:0009:trace:module:load_dll looking for L"ntdll.dll" in L""
1380.530:0008:0009:trace:module:load_dll Found L"C:\\windows\\system32\\ntdll.dll" for L"ntdll.dll" at 0x7bc10000, count=2
1380.530:0008:0009:trace:module:
diff --git a/Makefile b/Makefile
index f181687250..a1b955fbd6 100644
--- a/Makefile
+++ b/Makefile
@@ -695,6 +695,7 @@ TEST_BUILTINS_OBJS += test-subprocess.o
TEST_BUILTINS_OBJS += test-urlmatch-normalization.o
TEST_BUILTINS_OBJS += test-wildmatch.o
TEST_BUILTINS_OBJS += test-write-cache.o
+TEST_BUILTINS_OBJS += test-abc.o
set -g prefix C-a
unbind-key C-b
#bind-key -n C-b send-prefix
bind-key a send-prefix
bind-key C-a select-window -l
bind-key Tab last-pane
bind-key R new-window -n root -t 9 su
bind-key Space next-window
bind-key Escape copy-mode
bind-key C-Space select-pane -t :.+
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(browse-url-browser-function (quote browse-url-epiphany))
'(c-basic-offset 8)
'(column-number-mode t)
'(delete-selection-mode nil)
'(font-use-system-font t)
#!/bin/sh
# git config alias.lc='branch --list --remote --verbose c/*'
# git config alias.fc="!/path/to/this/script'
#
# Do "git fc <change id>" to get one change, the change will be put in remotes namespace c/. You can
# also do "git fc c/<change id>" if you copy paste the ref name. Do "git fc --all" to update all
# tracked gerrit changes.
fetch() {
#!/bin/sh
build_sort() {
cat >sort.c <<\EOF &&
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
static int cmp(const void *a_, const void *b_)
{
(use srfi-13)
(use file.util)
(define (ini-value->bool value)
(cond
[(or (string-ci=? value "false")
(string-ci=? value "no")
(string-ci=? value "off")
(string-null? value))
#f]
#!/usr/bin/env gosh
(use srfi-8)
(use srfi-39)
(use srfi-60)
(use rfc.base64)
(use rfc.http)
(use sxml.ssax)
(use sxml.sxpath)
(use gauche.net)
(use srfi-1)
(use srfi-19)
(use srfi-42)
(define (split-when pred? list)
(let loop ([item '()]
[result '()]
[list list])
(cond
[(null? list) (reverse (if (null? item)
#!/bin/sh
if [ -n "$TMUX" ]; then
. ~/.xwindow.sh
else
echo export DISPLAY=$DISPLAY SSH_AGENT_PID=$SSH_AGENT_PID SSH_AUTH_SOCK=$SSH_AUTH_SOCK DBUS_SESSION_BUS_ADDRESS=$DBUS_SESSION_BUS_ADDRESS SESSION_MANAGER=$SESSION_MANAGER >~/.xwindow.sh
fi