These are the basic instructions to build Arch on WSL 2.
- For instructions on bootstrapping WSL 1, please go here.
| /** | |
| * @name Test CI | |
| * @version 0.1.0 alpha | |
| * @description Express REST API Server for any purpose | |
| */ | |
| const isReachable = require("is-reachable"); | |
| const colors = require("colors"); | |
| const fetch = require("node-fetch"); | |
| const port = require("../apps/config/server.config"); |
| # | |
| # Starting import process here | |
| # | |
| # Global scopic functions | |
| from __future__ import print_function | |
| # Loading installed modules | |
| try: | |
| print('Importing "os" Module') |
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\JavaSoft] | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\JavaSoft\Java Runtime Environment] | |
| "CurrentVersion"="15.0.1" | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\JavaSoft\Java Runtime Environment\14.0] | |
| "JavaHome"="C:\\Users\\Genemator\\Scoop\\apps\\openjdk\\current" | |
| "MicroVersion"="0" |
| #!/bin/sh | |
| # shellcheck disable=SC2164 | |
| cd "$( dirname "$0" )" |
| #Written Sept 30 2009 | |
| #This program fscked the mind of Adam Domurad; It is not completely efficient for sure but I was more concerned with making a working interpreter | |
| #You can use as many as 256 nested loops on a 8 bit cell interpreter | |
| #NOTE code will be parsed a lot faster without comment characters | |
| #[first place 0 at start and place code input, working out if its a comment and correcting [ -> 1, ] -> 2, + -> 3, - -> 4, > -> 5, < -> 6, . -> 7, , -> 8] | |
| #[Ascii: + is 43, , is 44, - is 45, . is 46, < is 60, > is 62, [ is 91, ] is 93] | |
| #[Data used is 8 + Data used by subprogram * 2 + non-comment instructions in subprogram.] | |
| #[It is possible but a good deal more complex to not use double the data the subprogram uses, the data pointer would have to be stored] | |
| #[numerically and then shifted through the data area, and then restored.] | |
| ->->>>- |
These are the basic instructions to build Arch on WSL 2.
#arch #linux #archlinux
Please, keep in mind that everything after
#is a comment and should not be executed. Also, { something | something } means that you have to make decision and choose one of them, and then write it without curly braces and pipe.
| FROM archlinux:latest | |
| CMD /sbin/init |
| const axios = require('axios'); | |
| const GITHUB_TOKEN = 'YOUR_GITHUB_TOKEN'; | |
| const SOURCE_ORG = 'SOURCE_ORG'; | |
| const TARGET_ORG = 'TARGET_ORG'; | |
| const api = axios.create({ | |
| baseURL: 'https://api.github.com', | |
| headers: { | |
| 'Authorization': `token ${GITHUB_TOKEN}`, | |
| 'Accept': 'application/vnd.github+json', |
| #!/bin/bash | |
| # shellcheck disable=SC2164 | |
| cd "$(dirname "$0")" | |
| export GITHUB_ACCESS_TOKEN="" | |
| export GITHUB_USERNAME="" | |
| export REPOSITORY_NAME="" | |
| git push https://"$GITHUB_ACCESS_TOKEN"@github.com/"$GITHUB_USERNAME"/"$REPOSITORY_NAME".git |