install packages first:
yay -S xl2tpd strongswan networkmanager-l2tpref: https://wiki.archlinux.org/index.php/Openswan_L2TP/IPsec_VPN_client_setup
| [ | |
| { | |
| "iso": "AD", | |
| "name": "Andorra", | |
| "unicode": "U+1F1E6 U+1F1E9", | |
| "flag": "🇦🇩" | |
| }, | |
| { | |
| "iso": "AE", | |
| "name": "United Arab Emirates", |
install packages first:
yay -S xl2tpd strongswan networkmanager-l2tpref: https://wiki.archlinux.org/index.php/Openswan_L2TP/IPsec_VPN_client_setup
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "Example", | |
| "type": "node", | |
| "request": "launch", | |
| "runtimeExecutable": "node", | |
| "runtimeArgs": ["--nolazy", "-r", "ts-node/register/transpile-only"], |
| /** | |
| * @file get/set caret position and insert text | |
| * @author islishude | |
| * @license MIT | |
| */ | |
| export class Caret { | |
| /** | |
| * get/set caret position | |
| * @param {HTMLColletion} target | |
| */ |
| .table .btn-group { | |
| white-space: nowrap; | |
| } | |
| .table .btn-group .btn { | |
| display: inline-block; | |
| float: none; | |
| } | |
| .table .btn-group .btn + .btn { | |
| margin-left: -5px; | |
| } |
Git for Windows comes bundled with the "Git Bash" terminal which is incredibly handy for unix-like commands on a windows machine. It is missing a few standard linux utilities, but it is easy to add ones that have a windows binary available.
The basic idea is that C:\Program Files\Git\mingw64\ is your / directory according to Git Bash (note: depending on how you installed it, the directory might be different. from the start menu, right click on the Git Bash icon and open file location. It might be something like C:\Users\name\AppData\Local\Programs\Git, the mingw64 in this directory is your root. Find it by using pwd -W).
If you go to that directory, you will find the typical linux root folder structure (bin, etc, lib and so on).
If you are missing a utility, such as wget, track down a binary for windows and copy the files to the corresponding directories. Sometimes the windows binary have funny prefixes, so
| <!-- | |
| <form autocomplete="off"> will turn off autocomplete for the form in most browsers | |
| except for username/email/password fields | |
| --> | |
| <form autocomplete="off"> | |
| <!-- fake fields are a workaround for chrome/opera autofill getting the wrong fields --> | |
| <input id="username" style="display:none" type="text" name="fakeusernameremembered"> | |
| <input id="password" style="display:none" type="password" name="fakepasswordremembered"> | |
| // A super simple HTTPS service which allows you to GET a collection of names from https://<hostname>/names | |
| var express = require('express'); | |
| var https = require('https'); | |
| var app = express(); | |
| var fs = require('fs'); | |
| app.get('/names', function (req, res) { | |
| res.json(["Simon", "Bob"]) | |
| }); |
| // Experimental InverseMouseArea | |
| import QtQuick 2.0 | |
| Item { | |
| id : component | |
| property Item sensingArea : null | |
| signal pressed |