I hereby claim:
- I am josser on github.
- I am josser (https://keybase.io/josser) on keybase.
- I have a public key ASDR6gL9kg8XPJWvV4BIgjsQXQOgaLbCsSbGfX6ircN4cgo
To claim this, I am signing this object:
| // Customization Parameters | |
| OD = 20; // Pipe Outer Diameter | |
| ID = 16; // Pipe Inner Diameter | |
| slot_width = 2; // Slot Width | |
| slot_depth = 3; // Slot Depth | |
| hub_thickness = 10; // Connector Hub Thickness (radius of intersection) | |
| pipe_length = 30; // Length of each pipe section | |
| num_slots = 4; // Number of slots per pipe | |
| // Module for a single pipe section with slots |
| 0x00007ffff4ca5160 in pthread_mutex_lock () from /lib64/libc.so.6 | |
| (gdb) bt | |
| #0 0x00007ffff4ca5160 in pthread_mutex_lock () at /lib64/libc.so.6 | |
| #1 0x0000555557592a4a in KODI::WINDOWING::WAYLAND::CWinSystemWayland::GetConnectedOutputs(std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >*) () | |
| #2 0x0000555556cd6dce in CDisplaySettings::SettingOptionsMonitorsFiller(std::shared_ptr<CSetting const> const&, std::vector<StringSettingOption, std::allocator<StringSettingOption> >&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&, void*) () | |
| #3 0x0000555556c6a4c4 in CSettingString::UpdateDynamicOptions() () | |
| #4 0x0000555556c3c95e in () | |
| #5 0x0000555556c3d5a1 in CGUIControlSpinExSetting::FillStringSettingControl(bool) () | |
| #6 0x0000555556c40e3b in CGUIControlSpinExSetting::Update(bool, bool) () | |
| #7 0x0000555556ca6fd8 in CGUIDialogSettingsBase::UpdateS |
I hereby claim:
To claim this, I am signing this object:
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Document</title> | |
| </head> | |
| <body> |
| function timedLog(value, ms) { | |
| return new Promise((resolve, reject) => { | |
| setTimeout(() => { | |
| console.log(value) | |
| resolve() | |
| }, ms) | |
| }) | |
| } | |
| async function doSomething() { |
| // @ts-nocheck | |
| import vm from 'vm' | |
| import _debug from 'debug' | |
| const debug = _debug('wf:enhancer') | |
| class WObject { | |
| constructor(source: any) { | |
| this._w = source | |
| return new Proxy(this, { |
| interface StoreOptions { | |
| } | |
| interface DbStoreOptions extends StoreOptions { | |
| dsn: string | |
| } | |
| interface FileStoreOptions extends DbStoreOptions { | |
| path: string |
| interface StoreOptions { | |
| } | |
| interface DbStoreOptions extends StoreOptions { | |
| dsn: string | |
| } | |
| interface FileStoreOptions extends DbStoreOptions { | |
| path: string |
| import { gql } from 'apollo-server-koa' | |
| import { find, filter } from 'lodash' | |
| const authors = [ | |
| { id: 1, name: 'J.K. Rowling' }, | |
| { id: 2, name: 'Michael Crichton' } | |
| ] | |
| const books = [ | |
| { |
| 'use strict'; | |
| var keys = []; | |
| var controlAlt = [ 'ctrl', 'alt' ]; | |
| var margin = 0; | |
| var increment = 0.1 | |
| function log() { | |
| Phoenix.log(JSON.stringify(arguments[0], true, 2)); | |
| } |