- Download the latest zsh package: https://packages.msys2.org/package/zsh?repo=msys&variant=x86_64
Example:
zsh-5.7.1-1-x86_64.pkg.tar.xz
# https://marketplace.visualstudio.com/items?itemName=aaron-bond.better-comments | |
code --install-extension aaron-bond.better-comments | |
# https://marketplace.visualstudio.com/items?itemName=alefragnani.project-manager | |
code --install-extension alefragnani.project-manager | |
# https://marketplace.visualstudio.com/items?itemName=bmewburn.vscode-intelephense-client | |
code --install-extension bmewburn.vscode-intelephense-client | |
# https://marketplace.visualstudio.com/items?itemName=christian-kohler.npm-intellisense |
#EXTM3U | |
#EXTINF:0 tvg-name="Newsmax TV" tvg-language="English" tvg-country="CA" tvg-id="Newsmax-TV" tvg-logo="https://i.imgur.com/Twkovic.gif" group-title="Entertainment",Newsmax TV | |
https://nmxlive.akamaized.net/hls/live/529965/Live_1/index.m3u8 | |
#EXTINF:0 tvg-logo="https://i.imgur.com/ODIWC6n.jpg" tvg-name="Infowars1" tvg-id="Infowars1" group-title="News",Infowars Live1 | |
https://infostream.secure.footprint.net/hls-live/infostream-infostream/_definst_/master.m3u8 | |
#EXTINF:0 tvg-logo="https://i.imgur.com/ODIWC6n.jpg" tvg-name="Infowars" tvg-id="Infowars" group-title="News",Infowars Live 2 | |
https://infowarslive-lh.akamaihd.net/i/infowarsevent_1@366809/master.m3u8 | |
#EXTINF:0 tvg-name="Russia today News" tvg-country="RU" tvg-language="English" tvg-logo="https://i.imgur.com/QY4B8Hg.png" group-title="News",RT News | |
https://rt-news-gd.secure2.footprint.net/1103.m3u8 | |
#EXTINF:0 tvg-name="Russia today USA" tvg-country="RU" tvg-language="English" tvg-logo="https://i.imgur.com/QY4B8Hg.png" group-title="News",RT USA |
Example:
zsh-5.7.1-1-x86_64.pkg.tar.xz
#!/data/data/com.termux/files/usr/bin/sh | |
#android Tor+bridge installer | |
## get new bridges from: https://bridges.torproject.org/bridges?transport=obfs4 | |
## and edit with: | |
####$ vi $PREFIX/etc/tor/torrc | |
## or | |
## look sample: | |
####$ pkg install curl -y | |
####$ curl -L https://git.io/fjK3Y -o atba.sh | |
####$ bash ./atba.sh |
This work is released under a Creative Commons Attribution-NoDerivatives 4.0 International License.
"OpenPGP" refers to the OpenPGP protocol, in much the same way that HTML refers to the protocol that specifies how to write a web page. "GnuPG", "SequoiaPGP", "OpenPGP.js", and others are implementations of the OpenPGP protocol in the same way that Mozilla Firefox, Google Chromium, and Microsoft Edge refer to software packages that process HTML data.
#!/bin/bash | |
# the script comes from this site: customlinux.blogspot.com/2013/02/pavolumesh-control-active-sink-volume.html | |
# This is an updated version that works with ubuntu 18.04 and sends notifications to awesome window manager via awesome-client. Remember - I'am not an original author of the script. | |
# finds the active sink for pulse audio and increments the volume. useful when you have multiple audio outputs and have a key bound to vol-up and down | |
inc='5' | |
capvol='yes' | |
maxvol='200' | |
tmpfile='/tmp/pasink.tmp' |
#!/bin/bash | |
#This script reports the following specs about your PC: | |
# -How much space is available on each hard disk drive | |
# -How much space is used/available on each mounted partition | |
# -How much memory is available on each RAM device | |
# -How fast is each CPU core (single core machines only have 1 entry) | |
# -The name, driver used and memory available from your graphics accelerator | |
#Some of the commands in this script require root privelages, so |
/** @format */ | |
import React from "react"; | |
import uuidv1 from "uuid/v1"; | |
// ... using predefined DNS namespace (for domain names) | |
export const uuid = () => { | |
return uuidv1(); | |
}; |
#!/bin/bash | |
#The MIT License | |
# | |
#Copyright (c) 2007 Cappy | |
#Permission is hereby granted, free of charge, to any person obtaining a copy | |
#of this software and associated documentation files (the "Software"), to deal | |
#in the Software without restriction, including without limitation the rights | |
#to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
#copies of the Software, and to permit persons to whom the Software is |
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to | |
# newer versions of the distribution. | |
deb http://cz.archive.ubuntu.com/ubuntu/ xenial main restricted | |
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial main restricted | |
## Major bug fix updates produced after the final release of the | |
## distribution. | |
deb http://cz.archive.ubuntu.com/ubuntu/ xenial-updates main restricted | |
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-updates main restricted |