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
| Hit:1 https://deb.debian.org/debian trixie InRelease | |
| Hit:2 https://deb.debian.org/debian trixie-updates InRelease | |
| Hit:3 https://deb.debian.org/debian-security trixie-security InRelease | |
| Hit:4 https://deb.debian.org/debian trixie-backports InRelease | |
| Hit:5 https://archive.raspberrypi.com/debian trixie InRelease | |
| Hit:6 https://dietpi.com/apt trixie InRelease | |
| Hit:7 https://dietpi.com/apt all InRelease | |
| Reading package lists... | |
| Reading package lists... | |
| Building dependency tree... |
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
| FROM ubuntu:jammy | |
| LABEL "Mainteiner"="Riccardo Petraglia" | |
| RUN apt-get -y update && apt-get -y upgrade | |
| RUN apt-get install -y git build-essential meson llvm cmake clang libclang-dev libclang-cpp-dev xxd pkg-config openssl libssl-dev | |
| RUN git clone https://github.com/hdoc/hdoc.git | |
| WORKDIR /hdoc | |
| RUN ls -l && sleep 5 | |
| RUN git checkout `git tag -l | tail -1` | |
| RUN meson build | |
| RUN ninja -j 4 -C build |
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
| Thu Mar 12 15:08:56 UTC 2020 |
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
| { | |
| /* Keybindings for emacs emulation. Compiled by Jacob Rus. | |
| * | |
| * This is a pretty good set, especially considering that many emacs bindings | |
| * such as C-o, C-a, C-e, C-k, C-y, C-v, C-f, C-b, C-p, C-n, C-t, and | |
| * perhaps a few more, are already built into the system. | |
| * | |
| * BEWARE: | |
| * This file uses the Option key as a meta key. This has the side-effect | |
| * of overriding Mac OS keybindings for the option key, which generally |
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
| ssh-keygen -t rsa -b 4096 -f jwtRS256.key | |
| # Don't add passphrase | |
| openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub | |
| cat jwtRS256.key | |
| cat jwtRS256.key.pub |
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://storage.googleapis.com/books/ngrams/books/googlebooks-eng-all-1gram-20120701-1.gz | |
| http://storage.googleapis.com/books/ngrams/books/googlebooks-eng-all-1gram-20120701-2.gz | |
| http://storage.googleapis.com/books/ngrams/books/googlebooks-eng-all-1gram-20120701-0.gz | |
| http://storage.googleapis.com/books/ngrams/books/googlebooks-eng-all-1gram-20120701-3.gz | |
| http://storage.googleapis.com/books/ngrams/books/googlebooks-eng-all-1gram-20120701-4.gz | |
| http://storage.googleapis.com/books/ngrams/books/googlebooks-eng-all-1gram-20120701-5.gz | |
| http://storage.googleapis.com/books/ngrams/books/googlebooks-eng-all-1gram-20120701-6.gz | |
| http://storage.googleapis.com/books/ngrams/books/googlebooks-eng-all-1gram-20120701-7.gz | |
| http://storage.googleapis.com/books/ngrams/books/googlebooks-eng-all-1gram-20120701-8.gz | |
| http://storage.googleapis.com/books/ngrams/books/googlebooks-eng-all-1gram-20120701-9.gz |
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
| import threading | |
| import time | |
| from sys import stdout | |
| # Only data wihtin a class are actually shared by the threads | |
| class Counter(object): | |
| counter = 0 | |
| stop = False | |
| # Function that will be executed in parallel with the rest of the code |
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 | |
| # To edit file in place use the '-L' option wih the ed command | |
| # Name of the file to edit | |
| namefile='input_hexamer_book.xml' | |
| # Assign the name of the ffsocket to a variable | |
| ffname=`xmlstarlet sel -t -v "/simulation/ffsocket/@name" $namefile` |