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
--- ----------------- ---- | |
Map Quick Explanation Link | |
--- ----------------- ---- | |
< <F1> Causes Netrw to issue help | |
<cr> Netrw will enter the directory or read the file |netrw-cr| | |
<del> Netrw will attempt to remove the file/directory |netrw-del| | |
<c-h> Edit file hiding list |netrw-ctrl-h| | |
<c-l> Causes Netrw to refresh the directory listing |netrw-ctrl-l| | |
<c-r> Browse using a gvim server |netrw-ctrl-r| | |
<c-tab> Shrink/expand a netrw/explore window |netrw-c-tab| |
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
@spec pipeline(any) :: (() -> any) | |
def pipeline(params) do | |
create_operation = fn (multi, params) -> | |
Ecto.Multi.run(multi, :create_operation, fn _, _ -> | |
Logger.info("create_operation") | |
{:ok, nil} | |
end) | |
end | |
verify_condition = fn (multi, params) -> |
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
version: '3.8' | |
services: | |
livebook: | |
image: 'livebook/livebook:0.5.2' | |
container_name: livebook | |
restart: always | |
ports: | |
- '8080:8080' | |
networks: | |
- "prologic-net" |
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
[user] | |
name = Pavan Kumar Sunkara | |
email = [email protected] | |
username = pksunkara | |
[init] | |
defaultBranch = master | |
[core] | |
editor = nvim | |
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
pager = delta |
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
-- identify all connection in host | |
select datname, | |
pid, | |
usename, | |
application_name, | |
client_addr, | |
client_hostname, | |
backend_start | |
from pg_stat_activity | |
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
version: '3.8' | |
services: | |
zookeeper: | |
image: confluentinc/cp-zookeeper:latest | |
container_name: zookeeper | |
networks: | |
- prologic-net | |
environment: | |
ZOOKEEPER_CLIENT_PORT: 2181 |
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
curl -O http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz | |
tar zxvf autoconf-2.69.tar.gz | |
cd autoconf-2.69 | |
./configure && make && sudo make install |
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 | |
## Ricardo Pádua | |
## install asdf in fedora | |
## install curl and git | |
dnf install curl git | |
## install asdf | |
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.9.0 |
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
USERID= | |
PASSWORD= | |
PROJECT_ID= | |
CLIENT_ID= | |
AWS_CREDENTIAL_OUTPUT= | |
AWS_CREDENTIAL_REGION_NON_PROD= | |
AWS_CREDENTIAL_REGION_PROD= | |
URL_AUTH= | |
URL_VAULT= | |
URL_REFERRER= |
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
# | |
# cassandra-rackdc.properties | |
# | |
# The lines may include white spaces at the beginning and the end. | |
# The rack and data center names may also include white spaces. | |
# All trailing and leading white spaces will be trimmed. | |
# | |
dc=DC1 | |
rack=Rack1 | |
# prefer_local=<false | true> |