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
| #!/bin/bash | |
| # Set default editor for code file extensions using duti | |
| # Usage: ./duti.sh [bundle_id] | |
| # Default bundle_id is com.microsoft.VSCode | |
| EDITOR_BUNDLE_ID="${1:-com.microsoft.VSCode}" | |
| # Common code file extensions | |
| extensions=( |
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
| { | |
| "created": "1742569907640", | |
| "updated": "1742569907640", | |
| "name": "pdf-download", | |
| "description": "", | |
| "tags": [], | |
| "pieces": [ | |
| "@activepieces/piece-forms", | |
| "@activepieces/piece-http", | |
| "@activepieces/piece-file-helper" |
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
| #ifdef __GNUC__ | |
| # pragma GCC system_header | |
| #endif | |
| #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | |
| typedef long unsigned int size_t; | |
| typedef unsigned char __u_char; | |
| typedef unsigned short int __u_short; | |
| typedef unsigned int __u_int; | |
| typedef unsigned long int __u_long; |
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
| brew install automake bison openssl readline libyaml gdbm libffi [email protected] shared-mime-info | |
| brew tap raggi/ale | |
| brew install openssl-osx-ca | |
| brew services start openssl-osx-ca | |
| export PATH="/opt/homebrew/opt/[email protected]/bin:$PATH" | |
| export LDFLAGS='-L/opt/homebrew/opt/[email protected]/lib' | |
| export CPPFLAGS='-I/opt/homebrew/opt/[email protected]/include' | |
| export PKG_CONFIG_PATH='/opt/homebrew/opt/[email protected]/lib/pkgconfig' | |
| export RUBY_CFLAGS=-DUSE_FFI_CLOSURE_ALLOC |
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
| module Jekyll | |
| module LocalizedSite | |
| def process | |
| baseurl_root = config['baseurl'] | |
| output_dir = dest | |
| available_locales = config['available_locales'] | |
| default_locale = config['default_locale'] | |
| config['baseurl_root'] = baseurl_root | |
| config['translations'] = {} |
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
| let data = Object.assign({}, inputData); | |
| for (let key in data) { | |
| if (typeof(data[key]) === "string" && data[key].length > 0) { | |
| data[key] = data[key].replace(/\r?\n/g, "<br>").replace(/\t/g, " ").replace(/"/g, '\\\"'); | |
| } | |
| } | |
| output = [data]; |
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
| ZSH_THEME="custom" | |
| export ZSH=$HOME/.oh-my-zsh | |
| # CASE_SENSITIVE="true" | |
| # DISABLE_AUTO_UPDATE="true" | |
| export UPDATE_ZSH_DAYS=7 | |
| # DISABLE_LS_COLORS="true" | |
| # DISABLE_AUTO_TITLE="true" | |
| # ENABLE_CORRECTION="true" | |
| # COMPLETION_WAITING_DOTS="true" |
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
| { | |
| "header": { | |
| "reportVersion": 2, | |
| "event": "Allocation failed - JavaScript heap out of memory", | |
| "trigger": "FatalError", | |
| "filename": "report.20200603.002310.1.0.001.json", | |
| "dumpEventTime": "2020-06-03T00:23:10Z", | |
| "dumpEventTimeStamp": "1591143790829", | |
| "processId": 1, |
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
| # frozen_string_literal: true | |
| require 'bundler/inline' | |
| require 'ostruct' | |
| gemfile do | |
| source "https://rubygems.org" | |
| gem 'benchmark-ips', require: 'benchmark/ips' | |
| gem 'benchmark-memory', require: 'benchmark/memory' | |
| end |
NewerOlder