- Fork a repo, eg: https://github.com/USER/REPO-NAME/fork ;
- Create your feature branch (
git checkout -b my-new-feature); - Commit your changes (
git commit -am 'Add some feature'); - Push to the branch (
git push origin my-new-feature); - Create a new Pull Request.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Format Pencarian Titik Koordinat Desa di Google Maps
[nama desa], [nama kecamatan], [nama kabupaten/kota], [nama provinsi]
Ciburial, Cimenyan, Bandung, Jawa Barat
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
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
| git config --global --unset http.proxy | |
| git config --global --unset https.proxy |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| Windows Registry Editor Version 5.00 | |
| ; Open files | |
| [HKEY_CLASSES_ROOT\*\shell\Open with VS Code] | |
| @="Edit with VS Code" | |
| "Icon"="C:\\Program Files (x86)\\Microsoft VS Code\\Code.exe,0" | |
| [HKEY_CLASSES_ROOT\*\shell\Open with VS Code\command] | |
| @="\"C:\\Program Files (x86)\\Microsoft VS Code\\Code.exe\" \"%1\"" | |
| ; This will make it appear when you right click ON a folder | |
| ; The "Icon" line can be removed if you don't want the icon to appear | |
| [HKEY_CLASSES_ROOT\Directory\shell\vscode] |
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
| # This script was created to convert a directory full | |
| # of markdown files into rst equivalents. It uses | |
| # pandoc to do the conversion. | |
| # | |
| # 1. Install pandoc from http://johnmacfarlane.net/pandoc/ | |
| # 2. Copy this script into the directory containing the .md files | |
| # 3. Ensure that the script has execute permissions | |
| # 4. Run the script | |
| # | |
| # By default this will keep the original .md file |
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 | |
| # Converts HTML from https://exportmyposts.jazzychad.net/ exports to Markdown | |
| POSTS_DIR=/Users/richard/Desktop/d6y/posts | |
| for file in $POSTS_DIR/*.html | |
| do | |
| echo $file |
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
| Yep, have a look at http://pandoc.org/ or markdown-it https://github.com/markdown-it | |
| It now depends, whether you want to merge the HTMl files or not: | |
| # Single output files | |
| for f in *.md ; do pandoc ${f} -f markdown -t html -s -o ${f}.html ; done | |
| # One output file | |
| pandoc *.md -f markdown -t -s html -o merged.html |