Note: this is from http://softwaremaniacs.org/playground/showdown-highlight/
To see the markdown equivalent from this text, see the RAW of this file.
This is an overview of Markdown's syntax. For more information, visit the [Markdown web site].
Note: this is from http://softwaremaniacs.org/playground/showdown-highlight/
To see the markdown equivalent from this text, see the RAW of this file.
This is an overview of Markdown's syntax. For more information, visit the [Markdown web site].
| # First install Chrome, and the Selenium driver | |
| # Next, download and save the MetaMask CRX (there are plenty of guides on how to do this) | |
| from selenium import webdriver | |
| from webdriver_manager.chrome import ChromeDriverManager | |
| from selenium.webdriver.chrome.options import Options | |
| from selenium.webdriver.common.by import By | |
| from selenium.webdriver.common.keys import Keys | |
| import time |
| section .text | |
| global _start | |
| %define __r_l_state_ bl | |
| %define __r_h_state_ bh | |
| %define __r_x_state_ bx | |
| %define __r_e_state_ ebx | |
| %define __r_e_child_ ebx |
| section .text | |
| global _start | |
| _start: | |
| xor eax, eax | |
| xor ebx, ebx | |
| xor esi, esi | |
| jmp _socket | |
| _socket_call: |
| # Hybrid UEFI/BIOS multiboot USB drive | |
| # Install required packages | |
| sudo apt install gdisk grub2-common grub-efi-amd64-bin grub-pc-bin qemu-system | |
| # Create an empty disk image | |
| target_size=3.6G # $(lsblk -b --output SIZE -n -d /dev/sdX) for drive size | |
| qemu-img create -f raw boottitikku.img "$target_size" | |
| # Create a GUID Partition Table (GPT) |
| #!/usr/bin/env python | |
| """ | |
| tsplot: a matplotlib wrapper that plots a time series read from a file. | |
| It tokenizes each line into fields with the specified set of delimiters | |
| (whitespaces by default). One of these fields should be designated as the time | |
| column so that tsplot can interprete the time series. If none is specified, | |
| the first column is used. For tsplot to understand the time values, the time | |
| format, which should use the same syntax used by strptime(3) and has a default |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| /* | |
| * How to do a computed goto in an inline function. | |
| * "Here be Dragons" | |
| */ | |
| /* | |
| * This is used to keep the compiler from |
| /* | |
| This file had now been added to the git repo | |
| https://github.com/darrenjs/openssl_examples | |
| ... which also includes a non blocking client example. | |
| ------------------------------------------------------------------------------- | |
| ssl_server_nonblock.c -- Copyright 2017 Darren Smith -- MIT license |
It will check if current branch is master, then ask a confirmation, in case of master branch
Articles with initial info: https://dev.ghost.org/prevent-master-push/, https://coderwall.com/p/jp7d5q/create-a-global-git-commit-hook