"macros": {
"restartTypeScript": [
"eslint.restart",
"typescript.restartTsServer"
]
}
- Install
GitHub Pull Requests
extension - Add keybinding to open a new issue,
cmd+shift+p
go toPreferences: Open Keyboards Shortcuts (JSON)
- Add this entry in the JSON:
{
"key": "ctrl+shift+i",
"command": "issue.createIssue",
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
# CLI | |
sudo apt update -y | |
sudo apt install -y \ | |
git curl \ | |
docker.io docker-buildx \ | |
build-essential pkg-config autoconf bison rustc cargo clang \ | |
libssl-dev libreadline-dev zlib1g-dev libyaml-dev libreadline-dev libncurses5-dev libffi-dev libgdbm-dev libjemalloc2 \ | |
libvips imagemagick libmagickwand-dev mupdf mupdf-tools \ | |
redis-tools sqlite3 libsqlite3-0 libmysqlclient-dev \ | |
rbenv apache2-utils |
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
#!/usr/bin/sh | |
DOWNLOAD_URL="https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.4/wkhtmltox-0.12.4_linux-generic-amd64.tar.xz" | |
cd ~ | |
wget $DOWNLOAD_URL -O ~/wkhtmltox.tar.xz | |
tar -xvf ~/wkhtmltox.tar.xz |
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
module ActionController | |
# This module provides a method which will redirect browser to use HTTPS | |
# protocol. This will ensure that user's sensitive information will be | |
# transferred safely over the internet. You _should_ always force browser | |
# to use HTTPS when you're transferring sensitive information such as | |
# user authentication, account information, or credit card information. | |
# | |
# Note that if you are really concerned about your application security, | |
# you might consider using +config.force_ssl+ in your config file instead. | |
# That will ensure all the data transferred via HTTPS protocol and prevent |
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
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<title>Non-Contiguous Cartogram</title> | |
<style> | |
.land { | |
fill: #fff; | |
stroke: #ccc; | |
} |
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
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<title>Non-Contiguous Cartogram</title> | |
<style> | |
.land { | |
fill: #fff; | |
stroke: #ccc; | |
} |
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
dnl *************************************************************************** | |
dnl $Id: configure.in 24333 2012-04-28 12:18:28Z rouault $ | |
dnl | |
dnl Project: GDAL | |
dnl Purpose: Configure source file. | |
dnl Author: Frank Warmerdam, [email protected] | |
dnl | |
dnl *************************************************************************** | |
dnl Copyright (c) 2000, Frank Warmerdam | |
dnl |
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
{ | |
"address": { | |
"administrative": "Paris", | |
"city": "Paris", | |
"country": "France", | |
"country_code": "fr", | |
"county": "Paris", | |
"postcode": "75004", | |
"road": "Rue des Francs Bourgeois", | |
"state": "\u00cele-de-France", |
NewerOlder