Skip to content

Instantly share code, notes, and snippets.

View tanriol's full-sized avatar
💭
May be slow to respond

Denis Lisov tanriol

💭
May be slow to respond
View GitHub Profile
@tanriol
tanriol / gist:790acc3f2bf3e9c181d84e8881083cf6
Created November 29, 2019 14:57
bluetoothctl output for JBL LIVE400BT
[JBL LIVE400BT]# info 9C:43:1E:0C:23:9C
Device 9C:43:1E:0C:23:9C (public)
Name: JBL LIVE400BT
Alias: JBL LIVE400BT
Class: 0x00240404
Icon: audio-card
Paired: yes
Trusted: yes
Blocked: no
Connected: yes
(double-reported entries)
Unreported {
3,124,277 blocks in heap block record 1 of 3,785
201,845,776 bytes (192,610,894 requested / 9,234,882 slop)
Individual block sizes: 2,048 x 40; 1,024 x 2,759; 512 x 10,197; 496; 480 x 4; 464 x 2; 448 x 25; 432 x 11; 416 x 6,644; 400; 384 x 323; 368 x 12; 352 x 12; 336 x 8; 320 x 86; 304 x 12; 288 x 26; 272 x 56; 256 x 39,045; 240 x 34; 224 x 44,790; 208 x 57,749; 192 x 87; 176 x 15,714; 160 x 58,827; 144 x 96,916; 128 x 110,583; 112 x 39,621; 96 x 66,979; 80 x 80,077; 64 x 693,719; 48 x 283,836; 32 x 1,197,384; 16 x 278,697; 8 x 40,000
29.70% of the heap (29.70% cumulative)
31.76% of unreported (31.76% cumulative)
Allocated at {
#01: (no stack trace recorded due to --stacks=partial)
@tanriol
tanriol / Cargo.toml
Created June 22, 2018 15:27
cargo clean && cargo check --lib && git apply add-dyn.patch && cargo check --lib ; git apply -R add-dyn.patch # ICE on the second cargo check
[package]
authors = []
name = "incremental-ice"
version = "0.0.0"
[dependencies]
serde = "1.0.0"
serde_derive = "1.0.0"
[lib]
@tanriol
tanriol / test.html
Created November 2, 2017 16:23
Firefox IDB pools illustration
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>
function createDB(store, version, storage_class) {
console.log("start", store);
let options = {version};
if(storage_class !== undefined)
options.storage = storage_class;