Skip to content

Instantly share code, notes, and snippets.

@jbcrestot
jbcrestot / fastfile.rb
Created November 28, 2019 17:39
fastfile for android
platform :android do
before_all do
skip_docs
end
desc "build an adhoc release for internal store"
lane :adhoc do
gradle
end
@jbcrestot
jbcrestot / karabiner_number.json
Created July 16, 2020 19:44
This is a karabiner configuration to print number when caps is ON, on macOS
{
"title": "number with caps",
"rules": [
{
"description": "caps_lock + numbers actually do numbers",
"manipulators": [
{
"conditions": [
{
"name": "caps_lock pressed",
@jbcrestot
jbcrestot / karabiner_keychrone_dev.json
Created July 16, 2020 19:46
This file is a karabiner config to override some keys (important for dev) form Keychrone v6 keyboard
{
"title": "Keychrone K6 for dev",
"rules": [
{
"description": "1 : open_bracket = <",
"manipulators": [
{
"from": {
"key_code": "open_bracket"
},
@jbcrestot
jbcrestot / list.tsx
Created June 24, 2024 20:05
an estonish example of buggy reduce
const defaultResults = {
default: [],
prolyConjugated: [],
femininePlural: [],
conjugated: [],
renderCount: 0,
};
const getFilteredResults = (data: string[]): FilteredResults => {