Skip to content

Instantly share code, notes, and snippets.

View tru's full-sized avatar

Tobias Hieta tru

View GitHub Profile
22:30 firefly:~/clang-bug $ make
clang -c -o clangbug.o clangbug.m
clang -c -fobjc-arc -o main.o main.m
0 clang 0x0000000106bdd312 _ZL15PrintStackTracePv + 34
1 clang 0x0000000106bdd7e9 _ZL13SignalHandleri + 633
2 libsystem_c.dylib 0x00007fff8c190cfa _sigtramp + 26
3 libsystem_c.dylib 0x0000000000000010 _sigtramp + 18446603338165711664
4 clang 0x00000001064464e0 clang::CodeGen::CodeGenFunction::EmitARCStoreStrong(clang::BinaryOperator const*, bool) + 448
5 clang 0x00000001064394b4 clang::StmtVisitorBase<clang::make_ptr, (anonymous namespace)::ScalarExprEmitter, llvm::Value*>::Visit(clang::Stmt*) + 3220
6 clang 0x0000000105f122f8 clang::CodeGen::CodeGenFunction::EmitScalarExpr(clang::Expr const*, bool) + 72
@tru
tru / Untitled.txt
Created October 25, 2012 09:59
Untitled
<Part container="flv" key="/:/plugins/com.plexapp.system/serviceFunction/url/com.plexapp.plugins.youtube/YouTube/PlayVideo?args=Y2VyZWFsMQoxCnR1cGxlCjAKcjAK&amp;kwargs=Y2VyZWFsMQoxCmRpY3QKMgpzNDIKaHR0cDovL3d3dy55b3V0dWJlLmNvbS93YXRjaD92PTVFakctMVUzd3FBczMKdXJsczgKU3RhbmRhcmRzMTEKZGVmYXVsdF9mbXRyMAo_&amp;indirect=1&amp;mediaInfo=%7B%22audio_channels%22%3A%20null%2C%20%22protocol%22%3A%20null%2C%20%22optimized_for_streaming%22%3A%20false%2C%20%22video_frame_rate%22%3A%20null%2C%20%22duration%22%3A%20null%2C%20%22height%22%3A%20null%2C%20%22width%22%3A%20null%2C%20%22container%22%3A%20%22flv%22%2C%20%22audio_codec%22%3A%20%22aac%22%2C%20%22aspect_ratio%22%3A%20null%2C%20%22video_codec%22%3A%20%22h264%22%2C%20%22video_resolution%22%3A%20%22sd%22%2C%20%22bitrate%22%3A%20null%7D" file="" optimizedForStreaming="0">
[program:socorro-processor]
user = socorro
command = /usr/local/socorro/application/scripts/startProcessor.py
environment = PYTHONPATH="/usr/local/socorro/application:/usr/local/socorro/thirdparty:/usr/local/socorro/scripts"
autorestart = true
stderr_logfile = /var/log/socorro/processor-stderr.log
stdout_logfile = /var/log/socorro/processor-stdout.log
Traceback (most recent call last):
File "/usr/local/socorro/application/socorro/processor/processor_app.py", line 167, in <module>
main(ProcessorApp)
File "/usr/local/socorro/application/socorro/app/generic_app.py", line 179, in main
config_pathname=config_path
File "/usr/local/socorro/thirdparty/configman/config_manager.py", line 187, in __init__
self)
File "/usr/local/socorro/thirdparty/configman/value_sources/__init__.py", line 152, in wrap
raise AllHandlersFailedException(errors)
configman.value_sources.source_exceptions.AllHandlersFailedException: ConfigParser doesn't know how to handle ./config.; ConfigObj doesn't know how to handle ./config.; json can't handle: ./config; Conf doesn't know how to handle ./config.
# name: application
# doc: the fully qualified module or class of the application
# converter: configman.converters.class_converter
#application='ProcessorApp'
[destination]
# name: crashstorage_class
# doc: the destination storage class
# converter: configman.converters.class_converter
breakpad=# select * from releases_raw ;
product_name | version | platform | build_id | build_type | beta_number | repository
-----------------+----------+----------+----------------+------------+-------------+------------
PlexMediaServer | 0.9.7.12 | linux | 20130128000000 | Nightly | | nightly
PlexMediaServer | 0.9.7.12 | macosx | 20130128000000 | Nightly | | nightly
PlexMediaServer | 0.9.7.12 | win32 | 20130128000000 | Nightly | | nightly
(3 rows)
breakpad=# select * from product_info ;
breakpad=# select count(*) from product_info ;
description "Plex Home Theater"
author "tobias hieta"
start on ((filesystem
and runlevel [!06]
and started dbus
and (drm-device-added card0 PRIMARY_DEVICE_FOR_DISPLAY=1
or stopped udev-fallback-graphics))
or runlevel PREVLEVEL=S)
# vim: syntax=apache
<VirtualHost *:80>
ServerName stats.crashdev.plexapp.com
ServerAlias stats.crashdev.plexapp.com
ErrorLog /var/log/apache2/stats.crashdev.plexapp.com/error.log
WSGIDaemonProcess stats user=socorro threads=5 python-path=/data/socorro/crashstats home=/data/socorro
WSGIScriptAlias / /data/socorro/crashstats/wsgi/socorro-crashstats.wsgi
WSGIProcessGroup stats
WSGIApplicationGroup %{GLOBAL}
</VirtualHost>
# vim: syntax=apache
<VirtualHost *:80>
ServerName reports.crashdev.plexapp.com
ServerAlias reports.crashdev.plexapp.com
DocumentRoot /data/socorro/application
ErrorLog /var/log/apache2/reports.crashdev.plexapp.com/error.log
LogLevel debug
SetEnv DEFAULT_SOCORRO_CONFIG_PATH /etc/socorro
Options FollowSymLinks
WSGIPythonPath /data/socorro/application/application:/data/socorro/application/thirdparty
<VirtualHost *:80>
ServerName api.crashdev.plexapp.com
ServerAlias api.crashdev.plexapp.com
ErrorLog /var/log/apache2/api.crashdev.plexapp.com/error.log
SetEnv DEFAULT_SOCORRO_CONFIG_PATH /etc/socorro
WSGIDaemonProcess api user=socorro threads=10 python-path=/data/socorro/application/application:/data/socorro/application/thirdparty home=/home/socorro
WSGIScriptAlias / /data/socorro/application/application/wsgi/middleware.wsgi