This file has been truncated, but you can view the full file.
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
2001 silly pacote range manifest for @types/istanbul-reports@^1.1.1 fetched in 50ms | |
2002 silly resolveWithNewModule @types/[email protected] checking installable status | |
2003 http fetch GET 304 https://registry.npmjs.org/@types%2fistanbul-lib-coverage 54ms (from cache) | |
2004 silly pacote version manifest for @types/[email protected] fetched in 55ms | |
2005 silly resolveWithNewModule @types/[email protected] checking installable status | |
2006 http fetch GET 304 https://registry.npmjs.org/@types%2fyargs 55ms (from cache) | |
2007 silly pacote range manifest for @types/yargs@^13.0.0 fetched in 57ms | |
2008 silly resolveWithNewModule @types/[email protected] checking installable status | |
2009 http fetch GET 304 https://registry.npmjs.org/@types%2fistanbul-lib-report 35ms (from cache) | |
2010 silly pacote range manifest for @types/istanbul-lib-report@* fetched in 36ms |
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
https://www.geeksforgeeks.org/python-virtual-environment/ | |
$ virtualenv -p /usr/bin/python3 virtualenv_name | |
$ source virtualenv_name/bin/activate |
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
/* http://tracker.firebirdsql.org/browse/DNET-931 */ | |
/* Script */ | |
CREATE DATABASE 'C:\data\demo.fdb' page_size 8192 | |
user 'SYSDBA' password 'masterkey'; | |
CONNECT "C:\data\demo.fdb" | |
user 'SYSDBA' password 'masterkey'; | |
create table demo (id int primary key, foobar varchar(20) character set utf8); |
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
/* 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 |
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
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 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
# 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 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
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 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
--- | |
################################################################################ | |
# | |
# Section: Organizations | |
# | |
# - This section defines the different organizational identities which will | |
# be referenced later in the configuration. | |
# | |
################################################################################ | |
Organizations: |
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
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: | |
[email protected] from /app/turtle/workingdir/android/sdk41/packages/@unimodules/core | |
[email protected] from /app/turtle/workingdir/android/sdk41/packages/@unimodules/react-native-adapter | |
[email protected] from /app/turtle/workingdir/android/sdk41/packages/expo-ads-admob | |
[email protected] from /app/turtle/workingdir/android/sdk41/packages/expo-ads-facebook |
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
# 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(">") |