Short (72 chars or less) summary
More detailed explanatory text. Wrap it to 72 characters. The blank
line separating the summary from the body is critical (unless you omit
the body entirely).
Write your commit message in the imperative: "Fix bug" and not "Fixed
bug" or "Fixes bug." This convention matches up with commit messages
| // ==UserScript== | |
| // @name EmuParadise Download Workaround - 1.1.1 | |
| // @version 1.1.2 | |
| // @description Replaces the download button link with a working one | |
| // @author Eptun | |
| // @match https://www.emuparadise.me/*/*/* | |
| // @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js | |
| // @grant none | |
| // ==/UserScript== |
| \documentclass{standalone} | |
| \usepackage{tikz} | |
| \usepackage{ifthen} | |
| \usepackage{intcalc} | |
| \begin{document} | |
| \begin{tikzpicture} | |
| \draw (6,0) arc [radius=6, start angle=0, end angle=180] -- (-6,-0.5) -- (6,-0.5) -- cycle; | |
| \foreach \i in {0,10,...,180}{ | |
| \draw[red] (\i:5.2) -- (\i:6); | |
| \node[red, rotate=-90+\i] at (\i:5) {\i}; |
| import matplotlib.pyplot as plt | |
| import numpy as np | |
| def show_images(images, cols = 1, titles = None): | |
| """Display a list of images in a single figure with matplotlib. | |
| Parameters | |
| --------- | |
| images: List of np.arrays compatible with plt.imshow. | |
Here are the simple steps needed to create a deployment from your local GIT repository to a server based on this in-depth tutorial.
You are developing in a working-copy on your local machine, lets say on the master branch. Most of the time, people would push code to a remote server like github.com or gitlab.com and pull or export it to a production server. Or you use a service like deepl.io to act upon a Web-Hook that's triggered that service.
| #include <iostream> | |
| using namespace std; | |
| struct node{ | |
| int value; | |
| node *left; | |
| node *right; | |
| }; |
| import os | |
| import numpy as np | |
| from matplotlib import pyplot as plt | |
| from time import time | |
| from foxhound import activations | |
| from foxhound import updates | |
| from foxhound import inits | |
| from foxhound.theano_utils import floatX, sharedX |
Hierarchical data metrics that allows fast read operations on tree like structures.
Based on Left and Right fields that are set during tree traversal. When entered into node value is set to it's Left, when exiting node value is set to it's Right.
When hosting our web applications, we often have one public IP
address (i.e., an IP address visible to the outside world)
using which we want to host multiple web apps. For example, one
may wants to host three different web apps respectively for
example1.com, example2.com, and example1.com/images on
the same machine using a single IP address.
How can we do that? Well, the good news is Internet browsers