mindmap
root((Mini sBTC))
Projects
2 Step Escrow Transaction Support Library
Clarity Bitcoin library
Registration Clarity API
Disbursement Clarity API
Peg Web application sBTC Bridge
Peg in Clarity API
So I tried to install elixir but I got this error
$ yay -S elixir
resolving dependencies...
looking for conflicting packages...
Packages (2) erlang-nox-25.2-1 elixir-1.14.0-1
Total Download Size: 44,38 MiB
The python secret sauce to parse RSS using library available in Zapier Code
import requests
response = requests.get('https://newsletter.banklesshq.com/feed')
response.raise_for_status() # optional but good practice in case the call fails!
from xml.etree import ElementTree
root = ElementTree.fromstring(response.text)
Interactive Application Security Testing (IAST) | Dynamic Application Security Testing (DAST) | Static Application Security Testing (SAST) |
---|---|---|
Reactive Scanning | Proactive Scanning | Proactive Scanning |
Application Running | Application Running | Application Stopped |
Inside Access | Outside Access | Inside Access |
sudo chown -R $(whoami) /usr/local/Homebrew /usr/local/etc/bash_completion.d /usr/local/lib/pkgconfig /usr/local/share/aclocal /usr/local/share/doc /usr/local/share/info /usr/local/share/locale /usr/local/share/man /usr/local/share/man/man1 /usr/local/share/man/man3 /usr/local/share/man/man5 /usr/local/share/man/man7 /usr/local/share/zsh /usr/local/share/zsh/site-functions /usr/local/var/homebrew/locks /usr/local/Cellar/ca-certificates/ /usr/local/Cellar/
chmod u+w /usr/local/Homebrew /usr/local/etc/bash_completion.d /usr/local/lib/pkgconfig /usr/local/share/aclocal /usr/local/share/doc /usr/local/share/info /usr/local/share/locale /usr/local/share/man /usr/local/share/man/man1 /usr/local/share/man/man3 /usr/local/share/man/man5 /usr/local/share/man/man7 /usr/local/share/zsh /usr/local/share/zsh/site-functions /usr/local/var/homebrew/locks
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
function autoReply() { | |
var interval = 5; | |
var wkend = [6,0]; | |
var wkendMessage = "Hi! Thank you for contacting me. I'm currently out of office. All emails we'll be replied approximately on next Monday."; | |
var wkdayMessage = "Hi! Thank you for your email. I'm currently offline. I'll be back Mon-Fri 9-6PM UTC+2. You are getting this email because it is outside business hours."; | |
var date = new Date(); | |
var day = date.getDay(); | |
var hour = date.getHours(); | |
if (wkend.indexOf(day) > -1 || (day == 5 && hour >= 18)) { |
Following Chris Croft's management course, I will attempt to manage my team (and work with my colleagues) using the following principles:
- To keep everyone as informed as possible on current and future events in the rest of the company. If necessary I will take time to find out this information so that I can then pass it on to my team.
- To involve my team in my decisions wherever possible.
- If they cannnot be involved, then to explain the reasons behind all decisions.
- To allow as many decisions as possible to be made by my team, rather than by me.
- To receive problems with a positive attitude when they are reported to me.
- To give people encouragement even if they fail.
My crypto learning journey, recorded.
- ConsenSys Bootcamp (Unfinished / Dropout)
- Encode Solidity Bootcamp
- Encode Solana Bootcamp
- Encode Solana Educate
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
# === Base Layer started | |
FROM ruby:3.0.1 as base | |
WORKDIR /app | |
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash - && \ | |
apt-get install -y nodejs libsodium-dev && \ | |
npm i -g yarn |
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
pages: | |
image: node:latest | |
stage: deploy | |
before_script: | |
- npm install -g redoc-cli | |
script: | |
# backend | |
- redoc-cli bundle -o public/index.html docs/openapi.yaml | |
# frontend | |
- cd frontend |