This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Thread 142 (Thread 0x7fff46ffd640 (LWP 1052284) "WaveViewDrawing"): | |
#0 0x00007ffff30c018d in syscall () at /usr/lib/libc.so.6 | |
#1 0x00007ffff5335b81 in g_cond_wait () at /usr/lib/libglib-2.0.so.0 | |
#2 0x00007ffff7f34c42 in ArdourWaveView::WaveViewThreads::_dequeue_draw_request() (this=0x55555bbfd200) at ../libs/waveview/wave_view_private.cc:322 | |
#3 0x00007ffff7f34ba9 in ArdourWaveView::WaveViewThreads::dequeue_draw_request() () at ../libs/waveview/wave_view_private.cc:311 | |
#4 0x00007ffff7f35125 in ArdourWaveView::WaveViewThreads::_thread_proc() (this=0x55555bbfd200) at ../libs/waveview/wave_view_private.cc:500 | |
#5 0x00007ffff7f350a7 in ArdourWaveView::WaveViewThreads::thread_proc() () at ../libs/waveview/wave_view_private.cc:414 | |
#6 0x0000555556506cb1 in sigc::pointer_functor0<void>::operator()() const (this=0x555566b6f758) at /usr/include/sigc++-2.0/sigc++/functors/ptr_fun.h:77 | |
#7 0x000055555650393a in sigc::adaptor_functor<sigc::pointer_functor0<void> >::operator()() const (this=0x555566b6f750) at /usr/in |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#0 0x00007ffff48dc18d in syscall () at /usr/lib/libc.so.6 | |
#1 0x00007ffff6b7db81 in g_cond_wait () at /usr/lib/libglib-2.0.so.0 | |
#2 0x00007ffff7f93afd in ArdourWaveView::WaveViewDrawRequestQueue::dequeue(bool) () at /usr/lib/ardour6/libwaveview.so.0 | |
#3 0x00007ffff7f93fb0 in ArdourWaveView::WaveViewThreads::dequeue_draw_request() () at /usr/lib/ardour6/libwaveview.so.0 | |
#4 0x00007ffff7f94013 in ArdourWaveView::WaveViewDrawingThread::run() () at /usr/lib/ardour6/libwaveview.so.0 | |
#5 0x00007ffff6cbb51a in () at /usr/lib/libglibmm-2.4.so.1 | |
#6 0x00007ffff6b5e0c1 in () at /usr/lib/libglib-2.0.so.0 | |
#7 0x00007ffff56d4259 in start_thread () at /usr/lib/libpthread.so.0 | |
#8 0x00007ffff48e15e3 in clone () at /usr/lib/libc.so.6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am cellofellow on github. | |
* I am cellofellow (https://keybase.io/cellofellow) on keybase. | |
* I have a public key ASAb7R0_x1ogzO7wXrvq5jmlyyYXplTeg27utJraT5aQigo | |
To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
Toy module that handles old pre-decimal British £sd (pounds, shillings, pence) | |
money values. It stores all as integers of farthings (Farthing class), and can | |
convert a number of farthings into £sd notation or into a number of all British | |
coins. It can also take a bundle of coins and simplify those according to a set | |
of available coins. | |
''' | |
from typing import (Union, Tuple, FrozenSet, Set, Type, NamedTuple, Dict) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Experimental PostgreSQL schema that keeps a universal_id table as a materialized | |
view of all UUIDs in the system. | |
Simply inserts each new UUID inserted into the tables with the trigger into the | |
universal ID table. | |
Rational is that a REST API could provide an endpoint like /object/:uuid which | |
returns whatever that object happens to be, or a redirect to its canonical URL | |
perhaps, no matter the type. In the unlikely event of a UUID collision between |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AWSTemplateFormatVersion: '2010-09-09' | |
Parameters: | |
GoogleLocationApiKey: | |
Description: Google Maps API Key | |
NoEcho: true | |
Type: String | |
Stage: | |
Default: dev | |
Description: The State to which to deploy Resources | |
Type: String |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mon Apr 30 22:39:03 UTC 2018 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bytes" | |
"database/sql" // For sqlite | |
"encoding/base64" | |
"fmt" | |
"log" | |
"net/http" | |
"strings" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"IAB1": "Arts & Entertainment", | |
"IAB1-1": "Books & Literature", | |
"IAB1-2": "Celebrity Fan/Gossip", | |
"IAB1-3": "Fine Art", | |
"IAB1-4": "Humor", | |
"IAB1-5": "Movies", | |
"IAB1-6": "Music", | |
"IAB1-7": "Television", | |
"IAB2": "Automotive", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
buildscript { | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
classpath 'com.android.tools.build:gradle:0.8+' | |
} | |
} |
NewerOlder