First, in an administrator command prompt, enable unrestricted Powershell script execution (see About Execution Policies):
set-executionpolicy unrestricted
Then makes sure that the conda Script directory in is your Path.
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>KeepAlive</key> | |
<true/> | |
<key>Label</key> | |
<string>hashicorp.consul.server</string> | |
<key>ProgramArguments</key> | |
<array> |
First, in an administrator command prompt, enable unrestricted Powershell script execution (see About Execution Policies):
set-executionpolicy unrestricted
Then makes sure that the conda Script directory in is your Path.
;; Simple TCP echo server in x86_64 assembly, using Linux syscalls | |
;; | |
;; nasm -felf64 -o server.o server.asm | |
;; ld server.o -o server | |
;; ./server | |
;; | |
global _start | |
;; Data definitions |
# Build & install Lua on macOS | |
# We will compile Lua 5.1 because it is compatible with openresty/lapis. | |
# Replace the variables from line 30 ff to install a diffrent version. | |
# See: https://www.lua.org/manual/5.1/ | |
# NOTE: | |
# We create a dedicated directory for the Lua stuff to putt all the stuff in. |
#!/bin/bash | |
# This scripts installs Lua, LuaRocks, and some Lua libraries on macOS. | |
# The main purpose is to install Busted for testing Neovim plugins. | |
# After the installation, you will be able to run test using busted: | |
# busted --lua nlua spec/mytest_spec.lua | |
################################################################################ | |
# Dependencies | |
################################################################################ |
import androidx.compose.animation.core.AnimationSpec | |
import androidx.compose.animation.core.animate | |
import androidx.compose.animation.core.tween | |
import androidx.compose.foundation.gestures.ScrollableState | |
import androidx.compose.foundation.layout.Column | |
import androidx.compose.foundation.layout.ColumnScope | |
import androidx.compose.foundation.lazy.LazyListState | |
import androidx.compose.runtime.Composable | |
import androidx.compose.runtime.Stable | |
import androidx.compose.runtime.saveable.Saver |
Go to Bitbucket and create a new repository (its better to have an empty repo) | |
git clone [email protected]:abc/myforkedrepo.git | |
cd myforkedrepo | |
Now add Github repo as a new remote in Bitbucket called "sync" | |
git remote add sync [email protected]:def/originalrepo.git | |
Verify what are the remotes currently being setup for "myforkedrepo". This following command should show "fetch" and "push" for two remotes i.e. "origin" and "sync" | |
git remote -v |
#!/bin/sh | |
# requires ROOT privileges on android | |
# save this file to /data/local/vpnfw.sh on device. open new terminal on device and type: | |
# chmod 777 /data/local/vpnfw.sh | |
# connect to openVPN server first, then turn on wifi tethering | |
# execute script by typing: | |
# sh /data/local/vpnfw.sh | |
iptables -t filter -F FORWARD | |
iptables -t nat -F POSTROUTING | |
iptables -t filter -I FORWARD -j ACCEPT |