This file contains 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
{ | |
"title": "MacOS -> PC Shortcuts", | |
"rules": [ | |
{ | |
"description": "Top/bottom of document (ctrl+home/ctrl+end)", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": <%= from("home", ["command"], ["any"]) %>, | |
"to": <%= to([["up_arrow", ["left_command"]]]) %>, |
This file contains 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
asHook: true | |
auth: | |
register: true | |
clickhouse: | |
clickhouse: | |
configmap: | |
builtin_dictionaries_reload_interval: "3600" | |
compression: | |
cases: | |
- method: zstd |
This file contains 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
for account in &accounts { | |
println!("ID: {} Name: {}", account.id, account.name); | |
} | |
// Choose Random Account from Accounts | |
let account = accounts.choose(&mut rand::thread_rng()).unwrap(); | |
println!("{}", account.id); |
This file contains 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
# Procss ID Util Functions as seen here: https://github.com/cdesch/ex_tool_chest | |
# Elixir Process ID Parsing to Tuple, List or String | |
# Related: https://stackoverflow.com/questions/70102293/transform-process-id-pid-in-elixir-to-tuple-or-string-parse-pid-to-other | |
# ExToolChest.Util.pid_to_string(self()) | |
def pid_to_string(pid) do | |
pid_inspection = "#{inspect pid}" # gives the string "#PID<0.105.0>" | |
pid_inspection | |
|> String.slice(5, 100) | |
|> String.trim(">") |
This file contains 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
Configuration on demand is an incubating feature. | |
> Configure project :app | |
WARNING: The option setting 'android.useNewApkCreator=false' is experimental. | |
The current default is 'true'. | |
AWS Device Farm Plugin version 1.3 | |
Installing unimodules: | |
unimodules-core@7.1.0 from /app/turtle/workingdir/android/sdk41/packages/@unimodules/core | |
unimodules-react-native-adapter@6.2.2 from /app/turtle/workingdir/android/sdk41/packages/@unimodules/react-native-adapter | |
expo-ads-admob@10.0.4 from /app/turtle/workingdir/android/sdk41/packages/expo-ads-admob | |
expo-ads-facebook@10.0.4 from /app/turtle/workingdir/android/sdk41/packages/expo-ads-facebook |
This file contains 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
--- | |
################################################################################ | |
# | |
# Section: Organizations | |
# | |
# - This section defines the different organizational identities which will | |
# be referenced later in the configuration. | |
# | |
################################################################################ | |
Organizations: |
This file contains 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
upstream phoenix_upstream { | |
server 127.0.0.1:4000; | |
} | |
server { | |
listen 80; | |
server_name espresso.kickinespresso.com; | |
return 301 https://$server_name$request_uri; | |
} |
This file contains 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
# Note: You must restart bin/webpack-dev-server for changes to take effect | |
default: &default | |
source_path: app/javascript | |
source_entry_path: packs | |
public_root_path: public | |
public_output_path: packs | |
cache_path: tmp/cache/webpacker | |
check_yarn_integrity: false | |
webpack_compile_output: false |
This file contains 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
const { environment } = require('@rails/webpacker') | |
const webpack = require('webpack') | |
// const customConfig = require('./custom') | |
// environment.config.merge(customConfig) | |
// module.exports = environment | |
environment.plugins.prepend( | |
'Provide', |
This file contains 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
/* http://tracker.firebirdsql.org/browse/DNET-931 */ | |
/* Output of the console */ | |
Hello World! | |
Listening... | |
info: Microsoft.EntityFrameworkCore.Infrastructure[10403] | |
Entity Framework Core 2.1.2-rtm-30932 initialized 'MyContext' using provider 'EntityFrameworkCore.FirebirdSql' with options: None |
NewerOlder