All packages, except for Tini have been added to termux-root. To install them, simply pkg install root-repo && pkg install docker. This will install the whole docker suite, left only Tini to be compiled manually.
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
| #!/usr/bin/env python3 | |
| """ | |
| Download the smallest (text) PDF for each item across pages of an Internet | |
| Archive search for creator "Gita Press Gorakhpur", in parallel. | |
| Why smallest? IA typically produces two PDFs per item: | |
| - <id>.pdf : image-heavy scan (large) | |
| - <id>_text.pdf : OCR'd text-layer-only version (small) | |
| Picking by smallest file size reliably grabs the text version. |
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 google-chrome pock iina motrix insomnia bitwarden htop cmake wget curl figlet jq tldr ncdu awscli calc hh links nmap tig tmux tree caffeine firefox iterm2 slack ack git colordiff gnu-sed youtube-dl redis ffmpeg go helm kubernetes-cli zsh zsh-syntax-highlighting postman visual-studio-code neofeth goland pycharm |
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' | |
| services: | |
| minio1: | |
| # viewable at http://127.0.0.1:9001/ | |
| image: minio/minio:RELEASE.2020-03-14T02-21-58Z | |
| container_name: minio1 | |
| restart: always | |
| volumes: | |
| - data1:/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
| #include <iostream> | |
| #include <utility> | |
| #include <algorithm> | |
| using namespace std; | |
| enum class SearchMode { | |
| Any, | |
| First, | |
| Last |
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 by kunaldawn on 16/9/18. | |
| // | |
| #include <iostream> | |
| #include <vector> | |
| #include <memory> | |
| using namespace std; |
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
| package main | |
| import ( | |
| "fmt" | |
| "github.com/gorilla/mux" | |
| "github.com/gorilla/securecookie" | |
| "net/http" | |
| ) | |
| // cookie handling |