"Allow moving a model between apps" proposal for Google Summer of Code 2023.
- Abstract
- 1.1 Overview
- 1.2 Goals
- 1.3 Benefits
- The solution
- 2.1 Modified
CreateModel
operation .
npm uses Semantic Versioning. Given a version number MAJOR.MINOR.PATCH
, increment the:
By default on Windows, conda saves new virtual environments to your C:/Users/<your username>/AppData/Local/conda/conda
. (AppData is hidden by default, but you can see it in File Explorer by checking View > Hidden Items.)
conda environments can get pretty big, so if you're running low on hard disk space and have another drive mounted, you can easily move your environment to a directory on the other drive and create a symbolic link to the new location. This way, conda will look in its regular path for the environment and will find it just fine, despite the actual files having been moved elsewhere.
Let's say we want to move the environments to a separate drive, mounted as D:\
. We'll put everything in D:\<your username>
.
Open up Command Prompt, and then enter:
# First, move all the contents of your environments directory over to the new location:
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>emoji-picker tooltip demo</title> | |
<style> | |
.tooltip:not(.shown) { | |
display: none; | |
} | |
</style> |
A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
To create anchor links that jump down to different sections of a README (as in an interactive table of contents), first create a heading:
#Real Cool Heading
The anchor link for that heading is the lowercase heading name with dashes where there are spaces. You can always get the anchor name by visiting the README on Github.com and clicking on the anchor that appears when you hover to the left of the heading. Copy everything starting at the #:
#real-cool-heading
Wherever you want to link to your Real Cool Heading section, put your desired text in brackets, followed by the anchor link in parentheses:
[Go to Real Cool Heading section](#real-cool-heading)
Using d3plus.textwrap, SVG <text>
elements can be broken into separate <tspan>
lines, as HTML does with <div>
elements. In this example, the first column shows normal wrapped text, the second column shows text that is resized to fill the available space, and the third column shows the default SVG behavior.
D3plus automatically detects if there is a <rect>
or <circle>
element placed directly before the <text>
container element in DOM, and uses that element's shape and dimensions to wrap the text. If it can't find one, or that behavior needs to be overridden, they can manually be specified using .shape( ), .width( ), and .height( ).
Featured on D3plus.org
/* | |
* This script will download a package (and all of its dependencies) from the | |
* online NPM registry, then create a gzip'd tarball containing that package | |
* and all of its dependencies. This archive can then be copied to a machine | |
* without internet access and installed using npm. | |
* | |
* The idea is pretty simple: | |
* - npm install [package] | |
* - rewrite [package]/package.json to copy dependencies to bundleDependencies | |
* - npm pack [package] |
/* | |
* I add this to html files generated with pandoc. | |
*/ | |
html { | |
font-size: 100%; | |
overflow-y: scroll; | |
-webkit-text-size-adjust: 100%; | |
-ms-text-size-adjust: 100%; | |
} |
This is gist. | |
There are many like it, but this one is mine. | |
It is my life. | |
I must master it as I must master my life. | |
Without me gist is useless. | |
Without gist, I am useless. |