I hereby claim:
- I am kates on github.
- I am kates (https://keybase.io/kates) on keybase.
- I have a public key whose fingerprint is 4F22 399E A2EF AC24 2E69 B88E 9166 6DC5 BB54 2901
To claim this, I am signing this object:
#include <stdio.h> | |
#include "hardware/irq.h" | |
#include "hardware/gpio.h" | |
#include "pico/stdlib.h" | |
#include "pico/time.h" | |
static const uint8_t DEBOUNCE = 50; | |
static bool pressed = false; | |
static int32_t alarm_id = 0; |
var Klass = (function() { | |
var Klass = function() {}; | |
Klass.extend = function(constructor, props) { | |
var _super = this.prototype; | |
if (arguments.length < 2) { | |
props = constructor; | |
constructor = function(){}; | |
} |
ffmpeg -loop 1 -i logo.jpg -i source.mp3 -c:a libmp3lame -c:v libx264 -b:a 128k -shortest output.mp4 |
curl -X PUT http://localhost:9200/_settings -d '{ "number_of_replicas" :0 }' | |
curl -X PUT http://localhost:9200/_cluster/settings -d '{"transient" : {"cluster.routing.allocation.enable": true}}' |
use std::os; | |
use std::io; | |
use std::fmt; | |
struct Compiler { | |
source: String | |
//bytecode: String | |
} | |
enum Instruction { |
I hereby claim:
To claim this, I am signing this object:
pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs pip install -U |
TARGET=lockscreen | |
all: clean compile | |
compile: | |
clang -framework Foundation -framework IOKit main.m -o ${TARGET} | |
clean: | |
rm -f ${TARGET} |
$ media [TAB] [TAB]
pause play skip volume
$ media play [TAB] [TAB]
itunes spotify
$ media pause [TAB] [TAB]
itunes spotify
task :fix_precompile_hook do | |
module Fixassets | |
module Assets | |
extend ActiveSupport::Concern | |
included do | |
def dependency_fresh_with_path_fix?(environment, dep) | |
path = dep.pathname.to_s | |
return false unless environment.paths.find { |env_path| path.starts_with? env_path } | |
dependency_fresh_without_path_fix?(environment, dep) | |
end |