Skip to content

Instantly share code, notes, and snippets.

View orospakr's full-sized avatar

Andrew Clunis orospakr

View GitHub Profile
checking style of sigwait... checking for JS_NewContext in -lmozjs... POSIX
checking for pthread_attr_setscope... no
checking for JS_NewContext in -ljs... yes
checking if pthread_yield takes zero arguments... yes
checking if pthread_yield takes 1 argument... no
checking for JS_NewContext in -ljs3250... no
checking for JS_NewContext in -ljs32... no
checking cxxabi.h usability... no
configure: error: Could not find the js library.
[INFO] Scanning for projects...
[ERROR] The build could not read 1 project -> [Help 1]
[ERROR]
[ERROR] The project com.netbase:netbase:8.99-SNAPSHOT (/Users/aclunis/code/macadamian/netbase/aclunis_netbase_mac/branch/i18n/src/pom.xml) has 3 errors
[ERROR] Child module /Users/aclunis/code/macadamian/netbase/aclunis_netbase_mac/branch/i18n/src/acc-manager of /Users/aclunis/code/macadamian/netbase/aclunis_netbase_mac/branch/i18n/src/pom.xml does not exist
[ERROR] Child module /Users/aclunis/code/macadamian/netbase/aclunis_netbase_mac/branch/i18n/src/applications of /Users/aclunis/code/macadamian/netbase/aclunis_netbase_mac/branch/i18n/src/pom.xml does not exist
[ERROR] Child module /Users/aclunis/code/macadamian/netbase/aclunis_netbase_mac/branch/i18n/src/deploy of /Users/aclunis/code/macadamian/netbase/aclunis_netbase_mac/branch/i18n/src/pom.xml does not exist
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to
import renpy.audio.audio
class PSSChannel(object):
def __init__(self, renpy_config):
# allocate myself a PSS channel number
self.channel_number = renpy.audio.audio.next_channel_number
renpy.audio.audio.next_channel_number += 1
print "Espeak/assigned myself channel number: %d" % self.channel_number
Espeak/Periodic voice callback, depth 1...
Espeak/Periodic voice callback, depth 1...
Espeak/Periodic voice callback, depth 1...
[New Thread 0xd76d4b70 (LWP 20956)]
Espeak/Periodic voice callback, depth 1...
[New Thread 0xd6ed3b70 (LWP 20957)]
Espeak/Periodic voice callback, depth 1...
Espeak/Periodic voice callback, depth 1...
Espeak/Periodic voice callback, depth 1...
Espeak/Periodic voice callback, depth 1...
sh-3.2# mysql -u root -p marketscout_user_data
Enter password:
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 493
Server version: 5.5.19 Source distribution
Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
@orospakr
orospakr / gist:2026783
Last active October 1, 2015 16:57
all animes wow
12 Kingdoms
Mai Hime
Mai Otome
Serial Experiments Lain
Utawarerumono
Scrapped Princess (22 next)
Wolf's Rain
FLCL
Blood+
Guu
/*!
* Note: While Microsoft is not the author of this script file, Microsoft
* grants you the right to use this file for the sole purpose of either:
* (i) interacting through your browser with the Microsoft website, subject
* to the website's terms of use; or (ii) using the files as included with a
* Microsoft product subject to the Microsoft Software License Terms for that
* Microsoft product. Microsoft reserves all other rights to the files not
* expressly granted by Microsoft, whether by implication, estoppel or
* otherwise. The notices and licenses below are for informational purposes
* only.
GET /snively/_changes?feed=continuous&filter=_view&view=notes%252Fall HTTP/1.0
User-Agent: Dream/2.4.0.367
Host: localhost:5984
HTTP/1.0 500 Internal Server Error
Server: CouchDB/1.2.0 (Erlang OTP/R14B04)
Date: Thu, 05 Jul 2012 02:30:28 GMT
Content-Type: text/plain; charset=utf-8
Content-Length: 45
Cache-Control: must-revalidate
[Thu, 05 Jul 2012 02:30:28 GMT] [error] [<0.7018.0>] Uncaught error in HTTP request: {error,
{case_clause,
[<<"notes/all">>]}}
[Thu, 05 Jul 2012 02:30:28 GMT] [info] [<0.7018.0>] Stacktrace: [{couch_changes,filter_view,3},
{couch_changes,builtin_filter_fun,4},
{couch_changes,handle_changes,3},
{couch_httpd_db,handle_changes_req2,2},
{couch_httpd_db,do_db_req,2},
{couch_httpd,handle_request_int,5},
{mochiweb_http,headers,5},
@orospakr
orospakr / gist:3893949
Created October 15, 2012 17:46
Python implementation of quick and dirty ps for QNX
#!/usr/bin/env python2.7
# tweaked version of http://stackoverflow.com/questions/2703640/process-list-on-linux-via-python
import os
import os.path
pids= [pid for pid in os.listdir('/proc') if pid.isdigit()]
for pid in pids: