Linux Network Settings
IP Configuration
Clear the configuration file.
sudo cat /dev/null > /etc/network/interfaces
Edit configuration file with appropriate settings.
Restart networking service.
sudo service networking restart
Static IP
auto lo eth0
iface lo inet loopback
iface eth0 inet static
address 192.168.0.2
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.1
dns-nameservers 8.8.8.8
Dynamic IP
auto lo eth0
iface lo inet loopback
iface eth0 inet dhcp
VLAN Configuration
sudo apt-get install -y vlan
auto lo eth0.10 eth0.20
iface lo inet loopback
iface eth0.10 inet static
address 192.168.0.2
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.1
dns-nameservers 8.8.8.8
iface eth0.20 inet static
address 192.168.1.2
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
Linux CLI
Files/Directories
rm [file/dir]
— remove afile
or adir
-r
— delete recursively, also to delete directories-f
— force-delete
cp [source] [target]
— copy files/directories-r
— copy recursively-i
— show notification on conflicts-n
— don’t overwrite
mv [source] [destination]
— move files/directoriesscp -P [port] [user]@[hostname]:[source] [target]
— copy files/directoriesrsync -a --stats [source] [target]
— copy files/directories with ability to resume and mirrorrsync -a --stats --delete -P [source] [target]
— copy files/directories with ability to resume and delete files in destination that are not in the source.rsync --rsync-path="sudo rsync" [source] [target]
— copy files/directories with sudotar -cvzf [archive.tar.gz] [file/dir]
— archive afile/dir
Directories
ls
— list current directory contents-h
— show file size in Kb/Mb-l
— show extended information-a
— show hidden files-t
— sort by date-S
— sort by size
ls [dir]
— listdir
contentscd [dir]
— switch todir
mkdir [dir]
— createdir
pwd
— show current directorydu -sh [dir]
— showdir
sizedu -hsx * | sort -rh | head -10
— show 10 biggest files/directories in the current directoryncdu
— show the size of directories and files graphically
Files
ln -s [file] [link-file]
— create a symbolic link (need to use full paths)cat [file]
— printfile
contentscat > [file]
— create file. After entering the command, enter the file content and press [Ctrl + D].more [file]
— showfile
contents with ability to browse through thefile
head [file]
— get thefile
header-n [x]
— showx
number of lines
tail [file]
— get thefile
tail-n [x]
— showx
number of lines-f
— auto-update
touch [file]
— create an emptyfile
sed -i 's/[old-text]/[new-text]/g' [file]
— replace text in afile
sed -i '/^$/d' [file]
— remove empty lines in afile
grep -v [text] [file] > [file2]
— remove lines containingtext
in afile
and save tofile2
truncate -s 0 [file]
— truncate afile
to 0 bytes
Text
echo [text]
— printtext
echo [text] | awk '{ print $1 }'
— print first column oftext
Processes
ps
— show running processesps aux
— show running processes in more detail. See What does aux mean in “ps aux”? for more details
kill [PID]
— kill process withPID
(soft)-9
— kill process withPID
(hard)
Access Rights
For all of the chrgrp
and chown
commands below: -r
— recursive change.
chgrp [group] [file/dir]
— changegroup
for afile/dir
chown [user]:[group] [file/dir]
— changefile/dir
’sgroup
and ownerchown [user] [file/dir]
— changefile/dir
’s ownerchmod [ABC] [file/dir]
— changefile/dir
’s mode bits toABC
(example —644
)find [path] -type d -exec chmod [ABC] {} \;
— setABC
permissions for all directories inpath
recursivelyfind [path] -type f -exec chmod [ABC] {} \;
— setABC
permissions for all files inpath
recursively
Search
grep [text] [file/dir]
— search fortext
-r
— recursive search-i
— case insensitive search-I
— ignore binary files
- Search files using locate
locate [file]
— locate afile
sudo updatedb
— update the search index
find [dir] -name "[mask]" -type f
— list files in adir
recursively.mask
can be*.*
for example-delete
— remove the found files
find . -type f -exec cat {} +
— output contents of all files in the current directory recursively
Device Mounting
mount [device] [dir]
— mount adevice
to adir
umount [device]
— unmount adevice
umount [dir]
— unmount adir
Network
netstat -peanut
— show open portsnetstat -peanut | grep ":[port]"
— find process which usesport
nc -zv [host] [port]
— check connection to ahost:port
Administration
sudo [program]
— runprogram
with root privilegessudo su
— switch to user rootsudo su [user]
— switch to theuser
sudo shutdown now
/sudo init 0
— shutdownsudo reboot
— rebootdf -h
— show disk spacefree -h
— show RAM utilizationuname -a
— show information about the installed version of Linuxsudo hostname your-new-name
— change the hostname. Permanent value is in/etc/hostname
journalctl -S [date-time1] -U [date-time2]
— show journal records fromdate-time1
untildate-time2
. Where date-time format is like this:2022-01-0100:00:00
User Administration
sudo useradd [user] -m
— create auser
and a home directorysudo userdel [user]
— delete auser
sudo passwd [user]
— changeuser
’s password
Package Management (Debian)
sudo dpkg -i [package]
— install apackage
sudo apt
— package managerinstall [package]
— install apackage
remove --purge [package]
— remove apackage
update
— update the list of available packagesupgrade
— upgrade installed packagesautoremove
— remove unused packages
sudo add-apt-repository ppa:[user]/[name]
— add apt sources.list entriessudo add-apt-repository ppa:[user]/[name] --remove
— remove apt sources.list entries
Fedora
sudo systemctl restart chronyd
— sync date & timesudo rpm -i [file]
— install rpm package
Ubuntu/Debian
lsb_release -a
— show Ubuntu informationsudo /usr/sbin/ntpdate ntp.ubuntu.com
— synchronize date and time
Variables
VAR="123"
— define a variableexport VAR
— export a variableunset VAR
— unset a variable
HTTP
curl [url]
— send aGET
request-d
— send data-H
— add header-I
— get headers only-X POST
— send aPOST
request--resolve [domain]:[port]:[ip] [scheme]://[domain]
— send a request with specified domain resolution
Patches
diff [old-file] [new-file] > [patch]
— create apatch
patch [old-file] [patch]
— apply apatch
Conversion
yq eval -j [file-yaml] > [file-json]
— convert a YAML filefile-yaml
to a JSON filefile-json
.cat [file-json] | yq e -P - > [file-yaml]
— convert a JSON filefile-json
to a YAML filefile-yaml
.
Miscellaneous
wget [file-url]
— download a filewatch [command]
— watch changes of the command continuouslywatch '[command1] | [command2]'
— watch changes of the command continuously when using pipes
man [program]
— getprogram
’s manualdate
— show current date and timedate [format]
— show date in a specifiedformat
. Format can be+%d-%m-%Y
for exampledate -d "yesterday"
— get yesterday’s day
time [program]
— show how long aprogram
is runningsleep [x]
— wait forx
secondspwgen -ys 15 1
— generate passwordscreen
— screen manager-r
— restore screen
ssh [user]@[ip]
— connect to anip
withuser
through SSH-i [key]
— connect withkey
timedatectl
— find the current time sync status[command] 2>[file]
— redirect error output tofile
. Example -file
=/dev/null
Initial Linux Configuration
Setup SSH Access From One Computer to Another Without Passwords
EMAIL="[email]"
PORT="[port]"
USERNAME="[username]"
IP="[ip]"
ssh-keygen -t rsa -C "$EMAIL" -f ~/.ssh/id_rsa -N ""
ssh-copy-id -i ~/.ssh/id_rsa.pub "-p $PORT $USERNAME@$IP"
Run Sudo Commands Without Password Request
USERNAME="[username]"
sudo su
echo "$USERNAME ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
Set a DNS Server
sudo nano /etc/resolv.conf
nameserver [ip]
Enable Password Authentication Through SSH
sudo nano /etc/ssh/sshd_config
Change PasswordAuthentication
and ChallengeResponseAuthentication
to yes.
service ssh restart
Ubuntu Installation
Ubuntu Installation Using a Flash Drive
How to create a bootable USB stick
Ubuntu Installation on a VM
MySQL
Reset Root Password
sudo service mysql stop
sudo mysqld --skip-grant-tables &
mysql -u root mysql
UPDATE user SET Password=PASSWORD('[password]') WHERE User='root';
FLUSH PRIVILEGES;
Administer Users
[ip]
can be an ip address, host name and %
can be used as a wildcard.
CREATE USER '[user]'@'[ip]' IDENTIFIED BY '[password]';
DROP USER '[user]'@'[ip]';
Open Access
Instead of [db]
and [table]
can be *
, which means any
.
[privilege]
can be ALL
, USAGE
, SELECT
, etc.
You can optionally add WITH GRANT OPTION
to the GRANT
command for the user to be able to grant permissions.
See details .
GRANT [privilege] ON `[db]`.`[table]` TO '[user]'@'[ip]'
GRANT [privilege] ON *.* to '[user]'@'[ip]'
SHOW GRANTS for '[user]'@'[ip]';
REVOKE [privilege] ON *.* FROM '[user]'@'[ip]';
FLUSH PRIVILEGES;
Create a new DB
CREATE DATABASE `[name]` CHARACTER SET utf8 COLLATE utf8_general_ci;
Open Access to External Users
mysql -uroot -p[password] -e "GRANT ALL ON *.* to root@'%' IDENTIFIED BY '[password]' WITH GRANT OPTION; FLUSH PRIVILEGES;"
sed -i 's/127.0.0.1/0.0.0.0/g' /etc/mysql/my.cnf
service mysql restart
Encoding
Check the Encoding
For a DB
SELECT default_character_set_name FROM information_schema.SCHEMATA WHERE schema_name = "[db_name]";
For Tables
SELECT CCSA.character_set_name FROM information_schema.`TABLES` T,
information_schema.`COLLATION_CHARACTER_SET_APPLICABILITY` CCSA
WHERE CCSA.collation_name = T.table_collation
AND T.table_schema = "[db]"
AND T.table_name = "[table]";
For Columns
SHOW FULL COLUMNS FROM [table_name];
Change Collation for a DB
ALTER DATABASE [db] CHARACTER SET utf8 COLLATE utf8_general_ci;
ALTER TABLE [table] CONVERT TO CHARACTER SET utf8 COLLATE utf8_unicode_ci;
Add Timezone Info to a DB
mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -D mysql -u root -p
mysql -u root -p -e "flush tables;"
Linux Tips
Run Programs for X Server
sudo apt-get install xvfb
sudo Xvfb :10 -ac
export DISPLAY=:10
Tmux
# Create new session
tmux new -s [session-name]
# List session
tmux ls
# Attach session
tmux attach-session -t [session-number/session-name]
Install telnet on Alpine
apk add busybox-extras
Install ps on Ubuntu/Debian
sudo apt install procps
Fix Locales
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
export LANGUAGE=en_US.UTF-8
VirtualBox
Enable auto time synchronization with host
vboxmanage setextradata [vbox] "VBoxInternal/Devices/VMMDev/0/Config/GetHostTimeDisabled" "1"
Oh My Zsh
Command | Description |
---|---|
alias |
List all aliases |
take |
Create a new directory and change to it, will create intermediate directories as required |
exec zsh |
Apply changes made to .zshrc |
Fix Broken sudoers File
Run this:
pkexec visudo
Bash
A Good Way to Start a Bash Script
#!/bin/bash
set -eou pipefail
pipefail
— If set, the return value of a pipeline is the value of the last (rightmost) command to exit with a non-zero status, or zero if all commands in the pipeline exit successfully.-e
— Exit immediately if a pipeline, which may consist of a single simple command, a list, or a compound command returns a non-zero status.-u
— Treat unset variables and parameters other than the special parameters ‘@’ or ‘*’ as an error when performing parameter expansion. An error message will be written to the standard error, and a non-interactive shell will exit.-o [option-name]
— Set the option corresponding tooption-name
.
See details in the docs — The Set Builtin .
PostgreSQL
Main Commands
\list
— show list of DBs\dt
— show tables\d+ [table]
— show database structure
Copy a DB
CREATE DATABASE [db2] WITH TEMPLATE [db1] OWNER [user];
Commands
Connect to a DB
sudo -u postgres psql "user='[user]' password='[password]' host='[localhost]' port='[port]' dbname='[db]'"
Create a New DB
sudo -u postgres createdb -O [user] --encoding='utf-8' --locale=en_US.utf8 [db]
Run Command
sudo -u postgres psql "user='postgres' password='[password]' host='localhost' port='5432' dbname=[db]" -c "CREATE EXTENSION postgis";
Import DB Dump
sudo -u postgres psql "user='postgres' password='[password]' host='localhost' port='5432' dbname=[db]" -f [file]
Create a DB From Template
sudo -u postgres createdb -O [user] --encoding='utf-8' --locale=en_US.utf8 -T [db] [db2]
Activate Correct Encoding
SET client_encoding = 'UTF8';
Open Access
- 192.168.0.0/24 - example of a subnet to trust
echo 'host all all [subnet] trust' >> /etc/postgresql/9.1/main/pg_hba.conf
- We need to edit
/etc/postgresql/9.1/main/postgresql.conf
, whereip
can be*
which means any.
listen_addresses='[ip]'
- Then restart the service:
service postgresql restart
Git
Basics
Label | Description |
---|---|
master |
Default branch |
origin |
Upstream repository by default |
HEAD |
Current branch |
HEAD^ |
Parent branch of the current branch |
HEAD~[N] |
N-th parent of the current branch. Also HEAD~~ is the same as HEAD~2 |
ORIG_HEAD |
Previous state of HEAD |
Commands
Rebase
, cherry-pick
and merge
commands all have the following arguments:
--continue
--abort
Main
Command | Description |
---|---|
git init [project] |
Initialize a project |
git merge [branch] |
Merge branch |
git pull |
Pull |
git push |
Push |
git push -f |
Force push |
git status |
Show the working tree status |
git revert [commit] |
Revert a commit |
git cherry-pick [commit] |
Add a commit |
git push --delete origin [tag] |
Delete a tag from origin |
Miscellaneous
Command | Description |
---|---|
git remote add origin git@github.com:[user]/[project].git |
Set origin |
git rm [file] |
Remove file from the working tree and from the index |
git mv [file-original] [file-moved] |
Move a file |
git merge-base [branch1] [branch2] |
Find as good common ancestors as possible for a merge |
git reflog |
Manage reflog information |
Show
Command | Description |
---|---|
git show [commit] |
Show commit changes |
git show :1:[file] > [file-common] |
On merge conflicts, save common ancestor to file-common |
git show :2:[file] > [file-current] |
On merge conflicts, save current changes to file-current |
git show :3:[file] > [file-other] |
On merge conflicts, save changes of the other branch to file-other |
Clone
Command | Description |
---|---|
git clone [url] |
Clone a repository |
git clone [url] [dir] |
Clone a repository to a dir |
Branch
Command | Description |
---|---|
git branch |
List all local branches |
git branch -r |
List all remote branches |
git branch -a |
List all local and remote branches |
git branch -D [branch] |
Delete a branch |
git branch -m [branch] |
Rename the current branch to branch |
git branch [branch] |
Create a new branch |
Switch/Checkout
Command | Description |
---|---|
git switch [branch] / git checkout [branch] |
Switch to a branch |
git switch -c [branch] / git checkout -b [branch] |
Create a new branch and switch to it |
git checkout -b [new-branch] [existing-branch] |
Create a new branch from existing-branch and switch to it |
Log
Command | Description |
---|---|
git log |
Show commit logs |
git log --oneline |
Show logs in a one-line format with shortened commit SHAs |
git log --follow [file] |
Continue listing the history of a file beyond renames |
git log --all --full-history -- [file] |
Show history for a file even if it was deleted |
git log -n [N] |
Show logs for N last commits |
git log --grep="[pattern]" |
Limit the commits output to ones with log message that matches the specified pattern (regular expression) |
git log --author="[pattern]" |
Limit the commits output to ones with author/committer header lines that match the specified pattern (regular expression). |
git log [commit1]..[commit2] |
Show logs between commit1 and commit2 |
Diff
Command | Description |
---|---|
git diff |
Show changes you made in the working tree |
git diff --staged |
View the changes you staged |
git diff [branch1/commit1] [branch2/commit2] |
Show diff between 2 branches or commits |
git diff --word-diff [commit1] [commit2] --unified=0 |
Show a word diff and hide context |
Add
Command | Description |
---|---|
git add . |
Stage all files |
git add -i |
Add modified contents in the working tree interactively to the index. Optional path arguments may be supplied to limit operation to a subset of the working tree. |
git add -N [file] |
Record only the fact that the path will be added later. An entry for the path is placed in the index with no content. |
Reset/Checkout
Command | Description |
---|---|
git restore [file] / git checkout -- [file] |
Removes all changes to file |
git reset --hard / git checkout -f |
Remove all changes to the last commit |
Reset
Command | Description |
---|---|
git reset |
Unstage all files |
git reset --merge ORIG_HEAD |
Cancel a previous merge |
git reset [file] |
Unstage file |
git reset [commit] |
Reset to commit |
git reset [commit] --hard |
Reset to commit and remove all changes after this commit |
Reset
Command | Description |
---|---|
git rebase [branch] |
Reapply commits on top of branch |
git rebase -i [branch] |
Interactive rebase |
Clean
Command | Description |
---|---|
git clean -n |
List files which would be deleted by the command below |
git clean -f |
Delete untracked files |
Commit
Command | Description |
---|---|
git commit |
Commit |
git commit -m"[message]" |
Commit with a message |
git commit -a |
Commit all changed files except for untracked files. Also, delete deleted files |
git commit --amend |
Amend a commit (with staged files) |
git commit --amend --no-edit |
Amend a commit without changing the commit message |
git commit --amend --author="[Name] <[email]>" |
Change the author of previous commit |
Commit
Command | Description |
---|---|
git stash |
Stash changes |
git stash pop |
Pop the last stashed changed |
git stash pop [stash] |
Pop the changes from stash |
git stash apply [stash] |
Apple the changes from stash |
git stash list |
List stashes |
git stash drop [stash] |
Drop stash |
git stash show [stash] |
Show stash changes |
git stash clear |
Clear all stashes |
Blame
Command | Description |
---|---|
git blame [file] |
Show what revision and author last modified each line of a file |
git blame -L [line-start],[line-end] [file] |
Annotate only the line range given by line-start , line-end |
Ls-files
Command | Description |
---|---|
git ls-files --other --ignored --exclude-standard |
List all ignored files |
git ls-files -v | grep "^[[:lower:]]" |
Get a list of files marked with --assume-unchanged |
Update-index
Command | Description |
---|---|
git update-index --assume-unchanged [file] |
Ignore file without adding it go .gitignore |
git update-index --no-assume-unchanged [file] |
Remove --assume-unchanged mark for a file |
Update-index
Command | Description |
---|---|
git update-index --assume-unchanged [file] |
Ignore file without adding it go .gitignore |
Submodules
Initiate Submodules and Load Them
git submodule init
git submodule update
How to Add a Submodule
git submodule add http://github.com/[username]/[repo].git my/path
How to Remove a Submodule
Delete the relevant section from the .gitmodules
file
git add .gitmodules
Delete the relevant section from .git/config
git rm --cached [path-to-submodule] # (no trailing slash)
rm -rf .git/modules/[path-to-submodule]
git commit -m "Removed submodule [name]"
rm -rf [path-to-submodule]
How to Update Branch With Upstream
git remote add upstream https://github.com/[user]/[project].git
git fetch upstream
git checkout master
git rebase upstream/master
Tips
Ignore Files Without Adding Them to .gitignore
Edit file .git/info/exclude
Ignore Files Only in Diff Command
Create a repository specific diff driver:
# in Linux
TRUE=/bin/true
# in macOS
TRUE=/usr/bin/true
git config diff.nodiff.command $TRUE
# Assign the new diff driver to those files you want to be ignored
FILE="[file]"
echo "$FILE diff=nodiff" >> .git/info/attributes
Remove Data From Repository’s History
Python Modules Installation
Python
Create a requirements.txt
file with the following format:
Django==2.0.2
mysql-python>=1.0
-e git+https://github.com/desecho/django-tqdm@1.0.3.git#egg=django-tqdm
# comment
Install using command:
pip install -r requirements.txt
Reference Materials for Web Development and Programming
Misc
- Superhero.js — A collection of the best articles, videos, and presentations on “Creating, testing and maintaining a large JavaScript codebase”.
- JavaScript: The Good Parts
- JavaScript. The Right Way
- A re-introduction to JavaScript (JS Tutorial)
- JS Must Watch
GitHub
Git
Web Development
- Perf.rocks — Find resources that help you build lightning-fast websites.
- Browserhacks — An extensive list of browser-specific CSS and JavaScript hacks from all over the interwebs.
- Web Design Field Manual
- HTTP API Design Guide
- Butterick’s Practical Typography
- Web Fundamentals — Best practices for modern web development.
- Single page apps in depth
- Grid — A simple guide to responsive design.
- How to lose weight in a browser
- North — North is a set of standards and best practices for developing modern web-based properties. Included are standards and best practices for all aspects of a project, from kick-off through development. North encourages an agile, content-first, approach to product development and a mobile-first, in-browser, system-based approach to design and development.
- Software Licenses in Plain English
- Frontend Development
- Web Concepts: Overview
Coding
Python
- The Hitchhiker’s Guide to Python!
- Must-watch videos about Python
- How to make an awesome Python package in 2021
Django
CSS
Regular Expressions
- RegexOneLearn — Regular expressions with simple, interactive examples.
Coding Games/Challenges
- Project Euler — Project Euler is a series of challenging mathematical/computer programming problems that will require more than just mathematical insights to solve. Although mathematics will help you arrive at elegant and efficient methods, the use of a computer and programming skills will be required to solve most problems.
- checkio — Coding games for beginners and advanced programmers where you can improve your coding skills by solving engaging challenges and fun task using Python and TypeScript.
- codingame — STEP UP YOUR CODING GAME. The new way to improve your programming skills while having fun and getting noticed.
- coderbyte — Challenge yourself to code and interview better.
Miscellaneous
Books
Development Tools
Web
- Codepen — A playground for the front end web.
- Diffchecker — Diffchecker will compare text to find the difference between two text files.
- My regex tester
- JS Nice — Statistical renaming, type inference, and deobfuscation.
- Terraform Cloud — The easiest way to use Terraform in production at any scale.
macOS, Linux, and Windows Apps
Paid
- PyCharm — Python IDE for professional developers. — C$128/year
DB
- pgAdmin — PostgreSQL tools.
- MongoDB Compass — The easiest way to explore and manipulate your MongoDB data.
- DBeaver — Universal Database Tool.
Editors
- VS Code — Code editing. Redefined.
Virtual Machines
- VirtualBox — VirtualBox is a powerful x86 and AMD64/Intel64 virtualization product.
- VMware Workstation Pro for PC — Build and test nearly any app with the world’s leading desktop hypervisor app for Windows and Linux.
Utils
- Postman — Postman is an API platform for building and using APIs. Postman simplifies each step of the API lifecycle and streamlines collaboration so you can create better APIs faster.
- P4merge — Change You Can See. P4Merge tracks and compares the effects of past and pending work for branches and individual files. You can even use it to resolve conflicts (especially with Git).
- ngrok — Introspected tunnels to localhost.
Source Control Management
- Sublime Merge — Line-by-line staging. Commit editing. Unmatched performance.
macOS and Windows Apps
Source Control Management
- SourceTree — A free Git & Mercurial client.
macOS Apps
Source Control Management
- BFG Repo-Cleaner — Remove large or troublesome blobs as git-filter-branch does, but faster.
DB
- MongoHub — MongoHub is a native mac GUI application for MongoDB.
Documentation & Styleguides
Styleguides
Python
- PEP 8 - Style Guide for Python Code
- PEP 257 – Docstring Conventions
- Google Python Style Guide
- Django Coding style
Frontend
JavaScript
HTML/CSS
- Google HTML/CSS Style Guide
- Code Guide by @mdo — Standards for developing flexible, durable, and sustainable HTML and CSS
URL
SASS
Documentation
JavaScript
- JavaScript Reference
- JavaScript and HTML DOM Reference
- Gamepad — Gamepad API
Python
Sass
- Sass — Sass is the most mature, stable, and powerful professional-grade CSS extension language in the world
macOS Apps
Homebrew
Video
- MPlayer OSX Extended — MPlayer OSX Extended is the future of MPlayer OSX. Leveraging the power of the MPlayer and FFmpeg open source projects, MPlayer OSX Extended aims to deliver a powerful, functional and no frills video player for OSX.
Games
- Steam Link — Stream Your Steam Library.
Utils
- Chicken — A VNC client for Mac OS X. A VNC client allows remote access to another computer over the network. Chicken is based on Chicken of the VNC.
- iTerm — A replacement for Terminal and the successor to iTerm.
- Disk Inventory X — Disk Inventory X is a disk usage utility.
- TestDisk — Powerful free data recovery software.
- What’s Keeping Me — Have you ever have a problem where you can’t empty the Trash or eject a disk because something is preventing you? Usually, the reason is that some application has a file open, and thus you can’t get rid of the disk or trash the file. That’s why we made What’s Keeping Me! What’s Keeping Me will identify the application that is holding the item open. You can then use What’s Keeping Me to quit the problem application (or kill it if needed) so you can perform your task. What’s Keeping Me includes an Automator workflow so you can perform searches directly from the Finder too!
- Jing — Free and simple way to start sharing images and short videos of your computer screen.
- Scroll Reverser — Scroll Reverser is a free Mac app that reverses the direction of scrolling, with independent settings for trackpads and mice.
- BeardedSpice — Mac Media Keys for the Masses.
- The Unarchiver — The Unarchiver is a small and easy to use program that can unarchive many different kinds of archive files.
Paid
- CleanMyMac — The Simplest, Safest Way to Clean Your Mac. — C$52.69.
- ForkLift — The most advanced file manager and FTP + SFTP + Amazon S3 + WEBDav client for Mac OS. — C$25.8.
- CrossOver — Install Windows applications and PC Games on your Mac OS. — C$76.29.
- Little Snitch — Firewall. — C$58.19.
- TaskPaper — Plain text to-do lists. — C$33.93.
- Infuse 7 — An elegant video player. — C$129.99.
Editors Tips
VS Code
Tips
Disable Hardware Acceleration
- Open the Command Palette [Ctrl + Shift + P]
- Run the
Preferences: Configure Runtime Arguments
command - Add
"disable-hardware-acceleration": true
- Restart VS Code
Sublime Text
Settings
Project Settings Example
{
"folders": [
{
"path": "[project_path]",
"folder_exclude_patterns": ["[project_exclude_path]"],
"file_exclude_patterns": ["[*.txt]"]
}
]
}
Tips
Edit Current Projects in the Switch Project List
Edit workspaces: ~/Library/Application Support/Sublime Text 3/Local/Session.sublime_session
.
Enable Middle Mouse Button Support in Ubuntu
nano ~/.config/sublime-text-3/Packages/User/Default\ \(Linux\).sublime-mousemap
[
// Mouse button 3 column select
{
"button": "button3",
"press_command": "drag_select",
"press_args": { "by": "columns" }
},
{
"button": "button3",
"modifiers": ["ctrl"],
"press_command": "drag_select",
"press_args": { "by": "columns", "additive": true }
},
{
"button": "button3",
"modifiers": ["alt"],
"press_command": "drag_select",
"press_args": { "by": "columns", "subtractive": true }
}
]
Installation of Services on Linux
Install a Service
Create file /etc/systemd/system/[name].service
with contents:
[Unit]
Description=[Service Name]
After=syslog.target
[Service]
ExecStart=[command]
Restart=always
RestartSec=5s
KillSignal=SIGQUIT
[Install]
WantedBy=multi-user.target
Run
chmod 644 /etc/systemd/system/[name].service
systemctl daemon-reload
Samba
sudo apt-get install samba
sudo smbpasswd -a [user] # Set a password for your user in Samba
sudo nano /etc/samba/smb.conf
Add this to the end of the file:
[[name]]
path = [path]
available = yes
valid users = [user]
read only = no
browseable = yes
public = yes
writable = yes
sudo restart smbd
Stunnel4
Stunnel allows old devices which don’t support SMTP connections through SSL to support them.
sudo apt-get install stunnel4
sudo sed -i 's/ENABLED=0/ENABLED=1/g' /etc/default/stunnel4
openssl req -new -out mail.pem -keyout mail.pem -nodes -x509 -days 365
# (Common name - domain name)
sudo mv ~/mail.pem /etc/ssl/certs/mail.pem
sudo cp /usr/share/doc/stunnel4/examples/stunnel.conf-sample /etc/stunnel/stunnel.conf
sudo nano /etc/stunnel/stunnel.conf
Change:
cert = /etc/ssl/certs/mail.pem
sslVersion = all
Add config (for example):
[yandex-smtp]
client = yes
accept = 0.0.0.0:25
connect = smtp.yandex.ru:465
Web Development
JavaScript
jQuery
Add jQuery Through the Console
var jq = document.createElement("script");
jq.src = "https://code.jquery.com/jquery-3.6.0.min.js";
document.getElementsByTagName("head")[0].appendChild(jq);
Give time for script to load, then enter
jQuery.noConflict();
Python
Helpful Command to Clean Cache Files if Anything Behaves Strangely
find . -name "*.pyc" -exec rm -rf {} \;
Kill Debugger
import os; os.system("kill -9 %d" % os.getpid())
Django
Management Commands
dumpdata [app].[Model] --indent 2 > /[project]/src/[app]/fixtures/[data].json
collectstatic
makemigrations
[app]
— create initial migration--empty [app]
createsuperuser
migrate
--fake [app] [0002]
--fake-initial [app]
shell
Data Migration Example
from django.db import migrations
def action(apps, schema_editor):
[Model] = apps.get_model("[app]", "[Model]")
class Migration(migrations.Migration):
dependencies = [
("[app]", "0001_initial"),
]
operations = [
migrations.RunPython(action),
]
Data Migration Example to Load Fixtures
from django.db import migrations
from django.core.management import call_command
def load_fixture(apps, schema_editor):
# File name.json in fixtures dir
call_command("loaddata", "[name]", app_label="[app]")
class Migration(migrations.Migration):
dependencies = [
("[app]", "0001_initial"),
]
operations = [
migrations.RunPython(load_fixture)
]
How to Setup Internalization
Add to settings:
from django.utils.translation import ugettext_lazy as _
from os.path import dirname, join
SRC_DIR = dirname(dirname(abspath(__file__)))
LANGUAGES = (
("en", _("English")),
("ru", _("Russian")),
)
LOCALE_PATHS = (join(SRC_DIR, "locale"),)
TEMPLATES = [
{
"OPTIONS": {
"builtins": ["django.templatetags.i18n"],
},
},
]
Add to templates:
{% trans 'text' %}
{% blocktrans %}Back to '{{ race }}' homepage{% endblocktrans %}
To create/update necessary .po
files:
python manage.py makemessages -a
Install django-rosetta
You can then access your translations here — /rosetta
JavaScript
To create/update necessary .po
files:
python manage.py makemessages -a -d djangojs
Add to urls.py
from django.views.i18n import JavaScriptCatalog
url(r"^jsi18n/$",
JavaScriptCatalog.as_view(packages=("moviesapp", ), domain="djangojs"),
name="javascript-catalog"),
urlpatterns += [
url(r"^jsi18n/$",
JavaScriptCatalog.as_view(packages=("[app]", ), domain="djangojs"),
name="javascript-catalog"),
]
Add to templates before any js code:
<script src="{% url 'javascript-catalog' %}"></script>
If you also need access to the language in js add:
{% get_current_language as LANGUAGE_CODE %}
<script>
var language = "{{ LANGUAGE_CODE }}";
</script>
To use:
gettext("this is to be translated");
Additional info in django docs
Py.test
pytest.ini
[pytest]
DJANGO_SETTINGS_MODULE = app.settings
python_files = test_*
addopts = --nomigrations --reuse-db
Installation
pip install pytest-django
Usage
py.test --create-db
— with db recreatepy.test --ignore=[ignore-dir]
— skip tests inignore-dir
py.test -k [test]
— run onlytest
Services for Your Projects
- PyPI — The Python Package Index.
- Read the Docs — Create, host, and browse the documentation.
- Transifex — Manage translations, translate content, collaborate with translators, and automate your localization process from one central place.
- Requires.io — Stop wasting your time by manually keeping track of changelogs. Requires.io keeps your python projects secure by monitoring their dependencies.
- Gitter — Gitter is a chat and networking platform that helps to manage, grow and connect communities through messaging, content and discovery.
- Sentry — Sentry’s real-time error tracking gives you insight into production deployments and information to reproduce and fix crashes.
- Codecov — Code coverage done right.
- Re:plain — The simplest live chat in the world.
- pepy.tech — A service that provides badges with a number of downloads.
macOS Tips
Installation
Do not format your drive as a case-sensitive partition. You won’t be able to run applications like Steam or Photoshop.
Connect to a Windows Share Network Host
- Open Finder →
Go
→Connect to Server
- Enter
smb://[host]
wherehost
is your network host
Remove Duplicates in “open with”
/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -kill -r -domain local -domain system -domain user
View Sleep/Wake Log
pmset -g log | grep -e " Sleep " -e " Wake "
Reindex Spotlight Index
sudo mdutil -E /
sudo mdutil -i on /
How to Wipe Your Mac & Reset to Factory Settings
- Restart, then hold down the [Cmd + R] until you see an Apple logo or spinning globe
- Select
Disk Utility
and clickContinue
- Click the Erase button
- Select
Reinstall macOS
- If you plan to give away your Mac, see details in the article How to reinstall macOS
iOS Apps
Apps marked with *
are to be installed on the device initially.
Gaming
- PLINK – Team Up, Chat, Play * — Find Teammates for any Game.
Banking
- PayPal * — Transfer Money & Mobile Pay.
- Credit Karma * — Credit Score, Reports & Alerts.
Internet
- Яндекс — с Алисой — Search, Widgets, Weather.
Health & Fitness
- Nike Run Club — Running Tracker & Coaching.
- Sleep Watch by Bodymatter — Auto Sleep Tracker.
- Qardio heart health * — Blood pressure, weight, ECG.
- AllTrails: Hike, Bike & Run * — GPS Hiking & Biking Trail Maps.
Lifestyle
- Meetup: Local groups & events * — Meet new people, do new things.
Calculators
Messengers
- WhatsApp Messenger * — Simple. Reliable. Private.
- Snapchat * — Share the moment.
Social
TV
- Next Episode - Track TV Shows * — TV Series and Movies tracker.
Images
- CamScanner: PDF Scanner App * — Document Scan & Edit with OCR.
Utils
- Speedtest by Ookla * — 34 billion tests and counting.
- Truecaller * — Identify Spam + Search Numbers.
- View Source
TV
- LG ThinQ *
Food & Drinks
Miscellaneous
- Booksy for Customers * — Book your appointments.
Shopping
- AE + Aerie *
- Redbubble - Shop original art * — On stickers, tees, and gifts.
Package tracking
- Shop: All your favorite brands * — Shopping app & package tracker.
Canada
Utilities
Travelling
Montreal
Taxi
Points
- SCENE+ * — Join SCENE+ today!
- PC Optimum * — Shop. Earn Points. Repeat.
- My Metro *
- Triangle *
- Avion Rewards — Shop. Earn. Redeem. Save.
Shopping
- Couche-Tard *
- Walmart — Shopping Made Easy * — One Stop Shop.
Food & Drinks
- McDonald’s Canada *
- Wendy’s Canada * — Hamburgers, Offers, & Pay.
- A&W * — Mobile order & pay.
- Second Cup Café Rewards *
Banking
- RBC Launch * — Simplifying your finances.
Health
- VaxiCode — Save your QR code.
Russia
Transport & Delivery
- Yandex Go — taxi and delivery — App to order taxi or delivery.
Food & Drinks
- Yandex Eats: food delivery — Order pizza, sushi, groceries.
Paid
Health & Fitness
- AutoSleep Track Sleep on Watch * — Auto Sleep Tracker & Alarm. — C$5.49.
Windows Apps
Communication
- VK Messenger — Simple and convenient messaging app for VK.
Games
- Ubisoft Connect — Ubisoft Connect is the ecosystem of players services for Ubisoft games across all platforms.
- Windowed Borderless Gaming — Play all your games in windowed borderless mode.
- Amazon Games
- Legacy Games
- Xbox — Discover and download new games with Game Pass, play console games on your Windows PC with cloud gaming, and chat with friends across PC, mobile, and Xbox console.
- Rockstar Games Launcher — Download and play the latest Rockstar Games PC titles.
- Xbox Accessories
Cloud Storage
- Amazon Photos — Full-resolution photo and video storage.
Steam
- Depressurizer — A Steam library categorizing tool.
Media
- K-Lite Codec Pack — K-Lite Codec Pack is a collection of DirectShow filters, VFW/ACM codecs, and tools. Codecs and DirectShow filters are needed for encoding and decoding audio and video formats.
Utils
- MicMute — MicMute is a small program that will enable you to easily manage the level of a connected microphone.
- Easy Window Switcher — Easy Window Switcher brings the convenience of Mac’s easy window switching to Windows.
- WinDirStat — A disk usage statistics viewer and cleanup tool.
- PuTTY — PuTTY is a free implementation of SSH and Telnet for Windows and Unix platforms, along with an xterm terminal emulator.
- PS Hot Launch VVL — PS Hot Launch is meant to quickly run different applications, open documents, go to the right folders and web pages, send mail to a specified address, etc.
- ScreenBright — A small, but discontinued little app which can modify the colors displayed on your monitor.
- Synkron — An application that helps you keep your files and folders always updated.
- AutoHotkey — The ultimate automation scripting language for Windows.
- 7+ Taskbar Tweaker — 7+ Taskbar Tweaker allows you to configure various aspects of the Windows taskbar.
- Equalizer APO — Equalizer APO is a parametric/graphic equalizer for Windows. It is implemented.
- Peace Equalizer, interface Equalizer APO — Peace equalizer is a Windows PC interface for Equalizer APO.
- HWMonitor — HWMonitor is a hardware monitoring program that reads PC systems main health sensors: voltages, temperatures, fans speed.
- DS4Windows — DS4Windows is an extract anywhere program that allows you to get the best DualShock 4 experience on your PC.
- TCPView — TCPView is a Windows program that will show you detailed listings of all TCP and UDP endpoints on your system, including the local and remote addresses and state of TCP connections.
- TakeOwnershipEx — TakeOwnershipEx can be used to obtain full access to files and folders on your computer.
- Fraps — Fraps is a universal Windows application that can be used with games using DirectX or OpenGL graphic technology.
- Avast Free Antivirus — Essential protection that’s light, powerful, and completely free.
- NVIDIA Broadcast — The NVIDIA Broadcast app transforms any room into a home studio.
- Monitor Profile Switcher — Save and easily switch between Windows multi-monitor configurations.
- PC Health Check Application
- Java
- Display Driver Uninstaller (DDU)
Graphics
- Paint.NET — Paint.NET is image and photo editing software.
Paid
- CCleaner — CCleaner is the number-one tool for cleaning your PC. It protects your privacy and makes your computer faster and more secure! — C$39.95/year.
iOS & iPadOS Setup
Settings
Configure Settings after installing 1Password
, Chrome
, Yelp
, Uber
, and Authy
.
Section 1
- Your name →
iCloud
- enable all
- disable
iCloud Backup
Section 2
Cellular
Calls on Other Devices
→ disableAllow Calls on Other Devices
Cellular Data Options
→ enableLow Data Mode
Section 3
Notifications
→Notification style
→ disable notifications for these apps and all games- 9gag
- CamScanner
- Dropbox
- Fishbowl
- GarageBand
- LG ThinQ
- Lingvo
- meduza
- Metro
- News
- TikTok
- Untappd
- Plink
Sounds & Haptics
→Keyboard Feedback
→ enableHaptic
Section 4
General
About
→Name
→ change the nameKeyboard
Keyboards
→Add new keyboard
All keyboards
→ disableAuto-Correction
Dictation
→ enableEnable Dictation
Language & Region
→ setFirst Day of Week
toMonday
Control Center
→ make sure these are in theIncluded Controls
list:- Flashlight
- Timer
- Calculator
- Camera
- Apple TV Remote
- Screen Recording
- Alarm
- Code Scanner
- Low Power Mode
- Stopwatch
- Quick Note
- Notes
- [iPadOS only] Stage Manager
Display & Brightness
→Brightness
- set
Brightess
to maximum - disable
True Tone
- set
Wallpaper
→Choose a New Wallpaper
- [iPadOS only]
Apple Pencil
→ enableOnly Draw with Apple Pencil
- [iOS only]
Face ID & Passcode
→Unlock with Apple Watch
→ enable watch Privacy & Security
- [iOS only]
Research Sensor & Usage Data
→ enable Analytics & Improvements
→ enable allImprove
itemsApp Privacy Report
→ enable
- [iOS only]
Section 5
App Store
Notifications
→ enable- enable
Automatic Downloads
Wallet & Apple Pay
Add Card
- [iOS only]
Transit cards
→Express Transit Card
→ select card Transaction defaults
→ setDefault Card
Online payments
→ enableUse Apple Pay When Available
Section 6
Passwords
→Password Options
Allow filling from
→ select1Password
Set up verification codes using
→ selectAuthy
Mail
→Composing
→Signature
→ set to an empty valueContacts
→Sort Order
→First, Last
Calendar
→Default Calendar
→ set toCalendar
Notes
→Password
Choose a password method
→ set toUse Custom Password
- enable
Use Face
/Use Touch ID
Messages
- [iOS only] enable
Send as SMS
- enable
Share Name and Photo
→Share automatically
→ set toContacts Only
Shared with You
→ enable- enable
Send Read Receipts
Message filtering
→Unknown & Spam
- enable
Filter Unknown Senders
SMS Filtering
→ set toTruecaller
- enable
- [iOS only] enable
Facetime
→Call Blocking & Identification
→ enable allSafari
Extensions
→ enable1Password
Default Browser App
→ selectChrome
Translate
→Downloaded Languages
→ selectRussian
,French (France)
,English (U.S.)
Maps
Preferred type of travel
→ select typeDirections
→Driving
→Show in Navigation
→ enableCompass
Extensions
- [iOS only]
Ride Booking
- enable
Uber
- enable
Show Rides From New Apps
- enable
Restaurant Booking
→ enableYelp
- [iOS only]
Shortcuts
- enable
Private Sharing
Advanced
→ enableAllow Running Scripts
- enable
Section 7
Music
Library
→ enableSync Library
Audio
→Audio Quality
→ enableLossless Audio
Downloads
- enable
Download in Dolby Atmos
- disable
Download over Cellular
- enable
Automatic Downloads
Home Sharing
→Sign In
- enable
TV
Streaming Options
→ enableUse Cellular Data
Download Options
Wi-Fi
→ set toHigh Quality
Languages
→ leave onlyOriginal Audio Language
Photos
- [iPadOS only]
iCloud
→ enableDownload and Keep Originals
Albums
→Cellular Data
→ disableCellular Data
- [iPadOS only]
Camera
→Record Video
- set quality
Auto FPS
→ set toAuto 30 & 60 fps
Game Center
→ enableAllow finding by friends
Windows Tips
Windows Configuration
Download and install Windows Update
Settings
System
Display
→Scale and layout
→Change the size of text, apps, and other items
→200%
Power & Sleep
→Screen
→Never
Power & Sleep
→Sleep
→Never
Notification & actions
→Notifications
→Get notifications from apps and other senders
→Off
Storage
→Storage Sense
→On
Personalization
Background
→ Choose your picture
Accounts
Your info
→ Create your picture
→ Browser for one
→ Choose your avatar
Misc
Color management
→Advanced
→Display calibration
→Calibrate display
- Right-click on the taskbar → uncheck
Show People Button
- Run
GeForce Experience
→Settings
→Desktop Notifications
→ checkGeForce driver update is available
Install Posy’s Improved Cursors
Software Configuration
NordVPN
Open Settings:
Auto connect
→VPN protocol
→NordLynx
Kill Switch
→App Kill Switch
→ enable, then select applications you want to kill if a VPN connection drops
Google Chrome
chrome://settings/
→ On startup
→ Continue where you left off
.
Games
Steam
Open Steam
→ Settings
:
Downloads
→Content Libraries
→Steam library folders
→ add a library folderDownloads
→Download Restrictions
→Allow downloads during gameplay
Ubisoft Connect
Open Settings
:
Downloads
→Default game installation location
→Change
GOG Galaxy
Open Settings
→ Downloads
:
Installing games
→Game installation folder
Installing games
→Create a shortcut on desktop
→ checkBandwidth
→While playing
→Pause downloads when playing
→ uncheck
Usage Tips
- Open
Add or remove programs
to uninstall programs - Manage processes:
Task Manager
→Processes
- Monitor network activity:
Task Manager
→Performance
→ selectEthernet
- Press [Win + R], enter
shell:startup
to access startup - Press [Win + R], enter
shell:AppsFolder
to access application folder - To find out if your drive is an SSD drive or not, press [Win + R], enter
dfrgui
Add a Custom Host
- Run Notepad as administrator and open
C:\Windows\System32\drivers\etc\hosts
- Add a new host
Run System File Checker
Run Command Prompt
→ sfc /scannow
Run chkdsk
Run Command Prompt
→ chkdsk /f /x /r [disk]:
Boost Microphone
Install Equalizer APO
Run it. The Configurator will ask you to select the devices for which the program is to be installed, go to “Capture devices” and select the microphone. Reboot if asked.
Install Peace Equalizer, interface Equalizer APO
Run it. Choose Simple interface
. Choose the microphone and then adjust the Pre Amplifying level from the top slider, that one going from -30 dB to +30 dB. Click Done
in the bottom right.
Streaming
JustWatch
You can find a list of movies and TV shows available on Netflix, etc. on JustWatch .
Netflix
Website — http://netflix.com . Price — C$16.49/month (FullHD), C$20.99/month (4K).
Netflix is the only streaming service that allows you to watch 4K videos on a PC. It only works with Microsoft Edge browser and Netflix recommends you to have at least 25Mbit/s internet connection. You should also use the Display Port or an HDMI port and cable which supports 4K. See details on Netflix on the page “Can I stream Netflix in Ultra HD?” .
Amazon Prime
Websites:
Price — about C$6.58/month. It includes other benefits as well.
Apple TV+
Website — https://tv.apple.com/ . Price — C$5.99/month.
Disney+
Includes “Star”.
Website — https://www.disneyplus.com/en-ca/ . Price — C$11.99/month.
Paramount+
Website — https://www.paramountplus.com/ca/ . Price — C$5.99/month.
AMC+
Includes “Shudder” and “Sundance Now”.
Website — https://www.amcplus.com/ . Price — C$8.99/month.
Crave
Includes “HBO”, “STARZ”, “Showtime”
Website — https://www.crave.ca/en . Price — C$19.99/month.
Crunchyroll
Website — https://www.crunchyroll.com/ . Price — C$7.99/month.
Shudder
Website — https://www.shudder.com/ . Price — C$5.99/month.
The Criterion Channel
Website — https://www.criterionchannel.com/ . Price — C$14.49/month.
FlixFling
Website — https://www.flixfling.com/ . Price — C$7.99/month.
Sundance Now
Website — https://www.sundancenow.com/ . Price — C$6.99/month.
Google Chrome Extensions
Development
- EditThisCookie — EditThisCookie is a cookie manager. You can add, delete, edit, search, protect and block cookies!
- JSONView — Validate and view JSON documents.
- Validity — Click the icon in the address bar or press Alt+Shift+V to validate the current page. Results can be seen in Chrome’s JS console.
- Vue.js devtools — Chrome and Firefox DevTools extension for debugging Vue.js applications.
Shopping
- Honey Automatic Coupons & Cash Back — Save money and earn rewards when you shop online.
- Amazon Assistant for Chrome — Amazon’s official browser extension.
YouTube
- SponsorBlock for YouTube - Skip Sponsorships — Skip sponsorships, subscription begging, and more on YouTube videos. Report sponsors on videos you watch to save others’ time.
- YouTube Like-Dislike Shortcut — [Shift + +] to like, [Shift + -] to dislike. Can’t get any simpler.
- Return YouTube Dislike — Return YouTube Dislike restores the ability to see dislikes on YouTube.
Utils
- Chrome Remote Desktop — Chrome Remote Desktop allows users to remotely access another computer through the Chrome browser or a Chromebook.
- Close download bar — Closes the download bar via a hotkey.
- Ninja Cookie — Opt out of non-essential cookies and automatically remove cookie popups.
- Open Multiple URLs — Opens a list of URLs.
- Read Mode — Puts Google Chrome into read mode for a pleasant reading experience.
- View Image — Re-implements the Google Images’ “View Image” and “Search by Image” buttons.
Editing
- Grammarly for Chrome — From grammar and spelling to style and tone, Grammarly helps you eliminate writing errors and find the perfect words to express yourself.
Paid
- 1Password — Password Manager — The best way to experience 1Password in your browser. Easily sign in to sites, generate passwords, and store secure information. — C$2.99/month.
macOS & Windows Apps
Games
- Epic Games Launcher
- Battle.net — Your favorite games in one place.
- Origin — Play great PC games and connect with your friends, all in one place.
- Steam — Steam is the ultimate destination for playing, discussing, and creating games.
- GOG Galaxy — All your games and friends in one place.
Languages
- Anki — Powerful, intelligent flash cards. Remembering things just became much easier.
Utils
- KeePassX — KeePassX is an application for people with extremely high demands on secure personal data management.
- LICEcap — Simple animated screen captures.
- MakeMKV — MakeMKV is your one-click solution to convert video that you own into free and patents-unencumbered format that can be played everywhere. MakeMKV is a format converter, otherwise called “transcoder”. It converts the video clips from proprietary (and usually encrypted) disc into a set of MKV files, preserving most information but not changing it in any way.
- AnyDesk — Remote desktop.
- muCommander — The easy to use file manager.
Communication
- WhatsApp — Simple. Secure. Reliable messaging.
- Messenger — A simple app that lets you text, video chat, and stay close with people you care about.
Music
- Spotify — With Spotify, it’s easy to find the right music or podcast for every moment — on your phone, your computer, your tablet and more.
Cloud Storage
- Dropbox — Keep life organized and work moving—all in one place.
- Yandex Disk — Store your photos for free.
- OneDrive — Save your photos and files to OneDrive and access them from any device, anywhere. Includes encryption.
Browsers
- Chrome — The browser built by Google.
TV/Movies/Streaming
- Kodi — Kodi spawned from the love of media. It is media center and entertainment hub that brings all your digital media together into a beautiful and user friendly package. It is 100% free and open source, very customisable and runs on a wide variety of devices. It is supported by a dedicated team of volunteers and a huge community.
- Twitch Desktop App — Everything you love about Twitch plus a ton of games and mods.
Miscellaneous
- Room Sketcher — Create Floor Plans and Home Design Online.
Project Management
- Asana — Work on big ideas, without the busywork.
Productivity
- Evernote — Tame your work, organize your life.
Paid
- 1Password — The world’s most-loved password manager. — C$2.99/month.
- Adobe Photoshop — Make. Believe. Photoshop. — C$10/month.
- NordVPN — Secure & Private VPN Servers. — C$5.39/month.
tvOS Apps
Streaming
- Tubi - Watch Movies & TV Shows — Stream Content: Movies/TV.
- Twitch: Live Game Streaming — Watch Fortnite, PUBG & IRL TV.
- YouTube: Watch, Listen, Stream — Videos, Music and Live Streams.
- The CW — [Available only in the US store].
- Plex: Movies, TV, Music & More — The streaming app for everyone.
- Global TV — Watch Full Episodes & Live TV.
Games
- Steam Link — Stream Your Steam Library.
Paid
Video
- Infuse 7 — An elegant video player. — C$104.99.
Streaming
- Amazon Prime Video — Originals, movies, TV, sports. — C$6.58/month.
- Netflix — 16.49 C$/month (Full HD), C$20.99/month (4K).
- Disney+ — Unlimited entertainment. — C$11.99/month.
- Paramount+ — A Mountain of Entertainment. — C$5.99/month.
- Crave — The best series, movies & more. — C$19.99/month.
- AMC+ | TV Shows & Movies — New Series, Films & LIVE TV. — C$8.99/month.
- Crunchyroll — Stream anime shows and movies. — C$7.99/month.
- Shudder: Horror & Thrillers — Watch Movies and Series. — C$5.99/month.
- The Criterion Channel — Watch classic movies and more. — C$14.49/month.
- FlixFling Streaming — Streaming Movies and Music. — C$7.99/month.
- Sundance Now: Films & Series — C$6.99/month.
Symbols for Text Editing
- —
- →
- ←
- ↑
- ↓
Hotkeys
Operating systems
Linux/Windows
[Super] key is [Win] key for Windows
Hotkey | Action |
---|---|
[Ctrl + C]/[Ctrl + Insert] | Copy |
[Ctrl + X] | Cut |
[Ctrl + V]/[Shift + Insert] | Paste |
[Ctrl + A] | Select all |
[Ctrl + Z] | Undo |
[Ctrl + Y] | Redo |
[Ctrl + →] | Move the cursor one word to the right |
[Ctrl + ←] | Move the cursor one word to the left |
[Shift + Del] | Delete file or directory permanently |
[F2] | Rename file or directory |
[Alt + Tab] | Switch between windows |
[Alt + F4] | Close window |
[Alt + Spacebar] | Open context menu for the active window |
[F11] | Toggle full-screen mode |
[Super + ↑] | Maximize window |
[F5]/[Ctrl + R] | Refresh current window |
[Ctrl + N] | Open new window |
[Ctrl + W] | Close active window |
[Super + D] | Display and hide the desktop |
[Super + L] | Lock PC |
[Super + ←] | Snap app or window left |
[Super + →] | Snap app or window right |
[Super + (0—9)] | Open app in number position from the taskbar |
[Super + Shift + ←] | Move the current window one monitor to the left |
[Super + Shift + →] | Move the current window one monitor to the right |
[Prnt Scrn] | Take a screenshot |
[Alt + Prnt Scrn] | Take a screenshot of a window |
Linux
Hotkey | Action |
---|---|
[Super] | Switch between the Activities overview and desktop. In the overview, start typing to instantly search your applications, contacts, and documents |
[Alt + F2] | Pop up command window |
[Super + Tab] | Switch between apps. Hold down [Shift] for reverse order |
[Super + `]/[Alt + `] | Switch between windows from the same application, or the selected application after [Super + Tab] |
[Alt + Esc] | Switch between windows in the current workspace. Hold down [Shift] for reverse order |
[Super + A] | Show the list of applications |
[Super + Page Up] | Switch to workspace above |
[Super + Page Down] | Switch to workspace below |
[Super + Shift + Page Up] | Move the current window to a workspace above |
[Super + Shift + Page Down] | Move the current window to a workspace below |
[Ctrl + Alt + Shift + R] | Start and stop screencast recording |
Windows
Hotkey | Action |
---|---|
[Win] | Open Start |
[Ctrl + Shift + Esc] | Open Task Manager |
[Win + Tab] | Task view |
[Win + X] | Shutdown options |
[Win + I] | Open settings |
[Win + E] | Open File Explorer |
[Win + M] | Minimize all windows |
[Win + R] | Open Run command |
[Win + Ctrl + →] | Switch to the virtual desktop on the right |
[Win + Ctrl + ←] | Switch to the virtual desktop on the left |
macOS
Hotkey | Action |
---|---|
[Cmd + Option + Esc] | Open Force Quit Applications window |
[Cmd + Spacebar] | Open Spotlight Search |
[Ctrl + Spacebar] | Switch input source |
[Shift + Cmd + 3] | Take a screenshot |
[Shift + Cmd + 4] | Take a screenshot of a portion of the screen |
[Shift + Cmd + 4 + Spacebar] | Take a screenshot of a window or menu |
iOS
Hotkey | Action |
---|---|
[Power + Volume up] | Take a screenshot |
Hold [Power + Volume up] | Turn off |
Oh My Zsh
Hotkey | Action |
---|---|
[Ctrl + Q] | Park a command. It “parks” the command you’re currently typing and takes you back to the prompt, letting you start over and type another command. Once you run that other command, the original command is un-parked and refills the command line. |
Editors
Nano
Hotkey | Action |
---|---|
[Ctrl + W] | Search |
VS Code
General
Hotkey | Action |
---|---|
[Ctrl + Shift + P, F1] | Show Command Palette |
Basic editing
Hotkey | Action |
---|---|
[Alt + ↑/↓] | Move line up/down |
[Ctrl + Shift + K] | Delete line |
[Ctrl + Shift + \] | Jump to the matching bracket |
[Ctrl + ]/[] | Indent/outdent line |
[Ctrl + /] | Toggle line comment |
Navigation
Hotkey | Action |
---|---|
[Ctrl + P] | Go to file |
[Ctrl + G] | Go to line |
[Ctrl + Shift + O] | Go to Symbol |
Search and replace
Hotkey | Action |
---|---|
[Ctrl + D] | Add selection to next Find match |
[Ctrl + F] | Find |
[Ctrl + H] | Replace |
[Alt + Enter] | Select all occurrences of Find match |
[Ctrl + K Ctrl + D] | Move last selection to next Find match |
[Alt + C/R/W] | Toggle case-sensitive/regex/whole word |
[F3/Shift + F3] | Find next/previous |
Rich languages editing
Hotkey | Action |
---|---|
[F12] | Go to Definition |
[F2] | Rename Symbol |
[Ctrl + Shift + I] | Format document |
Multi-cursor and selection
Hotkey | Action |
---|---|
[Alt + Click] | Insert cursor |
[Shift + Alt + I] | Insert cursor at end of each line selected |
[Ctrl + Shift + L] | Select all occurrences of current selection |
[Shift + Alt + (drag mouse)] | Column (box) selection |
Display
Hotkey | Action |
---|---|
[Ctrl + Shift + F] | Show Search |
[Ctrl + Shift + E] | Show Explorer/Toggle focus |
[Ctrl + B] | Toggle Sidebar visibility |
[Ctrl + K Z] | Zen Mode (Esc Esc to exit) |
Sublime Text
Hotkey | Action |
---|---|
[Cmd + P] | Switch files |
[Cmd + R] | Go to functions/classes |
[Cmd + D] | Quick select |
[Cmd + K], [Cmd + d] | Skip selection |
[Cmd + Shift + L] | Create multiple cursors |
[Cmd + Shift + P] | Command mode |
[Cmd + F] | Find text |
[Cmd + F], [alt + enter] | Find text and then select them all |
[Cmd + Alt + F] | Replace text |
[Cmd + /] | Comment/uncomment |
[Cmd + Ctrl + F] | Full screen |
[Cmd + Ctrl + Shift + F] | Distraction free |
[Cmd + K + B] | Toggle sidebar |
[Ctrl + G] | Go to line number |
[Ctrl + L] | Center window |
[Cmd + L] | Select line |
[Ctrl + Shift + K] | Delete line |
[Cmd + ]] | Indent |
[Cmd + [] | Unindent |
[Cmd + Shift + Alt + 2/3] | Change window layout to 2 or 3 rows |
[Cmd + Alt + 1/2/3] | Change window layout to 1/2/3 columns |
[Ctrl + M] | Go to matching bracket |
Bookmarks
Hotkey | Action |
---|---|
[Cmd + F2] | Create/delete bookmark |
[Cmd + Shift + F2] | Clear bookmarks |
[F2] | Go to next bookmark |
[Shift + F2] | Go to previous bookmark |
CLI
Hotkey | Action |
---|---|
[Ctrl + A] | Move the cursor to the start of the line |
[Ctrl + E] | Move the cursor to the end of the line |
[Ctrl + X + X] | Move the cursor to the start and to the end of the line |
[Ctrl + R] | Incrementally search the line history backwardly |
[Ctrl + S] | Incrementally search the line history forwardly |
[Ctrl + C] | Cancel |
[TAB] | Auto-complete a command |
Terminator
Hotkey | Action |
---|---|
[Ctrl + Page Down] | Go to next tab |
[Ctrl + Page Up] | Go to previous tab |
[F11] | Toggle fullscreen |
[Ctrl + Shift + O] | Split terminals horizontally |
[Ctrl + Shift + E] | Split terminals vertically |
[Ctrl + Shift + W] | Close current Panel |
[Ctrl + Shift + T] | Open new tab |
[Ctrl + Shift + I] | Open a new window |
[Alt + ↑] | Move to the terminal above the current one |
[Alt + ↓] | Move to the terminal below the current one |
[Alt + ←] | Move to the terminal left of the current one |
[Alt + →] | Move to the terminal right of the current one |
[Ctrl + Shift + G] | Reset terminal state and clear window |
[Ctrl + Shift + X] | Toggle between showing all terminals and only showing the current one (maximise) |
[Ctrl + Shift + +] | Increase font size |
[Ctrl + -] | Decrease font size |
[Ctrl + 0] | Restore font size to original setting |
Screen
Hotkey | Action |
---|---|
[Ctrl + A, D] | Detach from screen |
[Ctrl + A, C] | Create a new screen |
[Ctrl + A, Space] | Switch screens |
Tmux
Hotkey | Action |
---|---|
[Ctrl + B, D] | Detach from session |
Oh My Zsh Aliases
Alias | Command |
---|---|
md |
mkdir -p |
Plugin aliases
Git
Alias | Command |
---|---|
g |
git |
ga |
git add |
gaa |
git add --all |
gb |
git branch |
gba |
git branch -a |
gc |
git commit -v |
gc! |
git commit -v --amend |
gca |
git commit -v -a |
gca! |
git commit -v -a --amend |
gcam |
git commit -a -m |
gcp |
git cherry-pick |
gcpa |
git cherry-pick --abort |
gcpc |
git cherry-pick --continue |
gd |
git diff |
gds |
git diff --staged |
gignore |
git update-index --assume-unchanged |
gm |
git merge |
gsw |
git switch |
gst |
git status |
gsh |
git show |
VS Code
Alias | Command |
---|---|
vsc |
code . |
vscd |
code --diff |
Terraform
Alias | Command |
---|---|
tf |
terraform |
Kubectl
Alias | Command |
---|---|
k |
kubectl |
kaf |
kubectl apply -f |
kdel |
kubectl delete |
kdelf |
kubectl delete -f |
kga |
kubectl get all |
kgaa |
kubectl get all --all-namespaces |
kl |
kubectl logs |
kpf |
kubectl port-forward |
kj |
kubectl "$@" -o json | jq |
kjx |
kubectl "$@" -o json | fx |
ky |
kubectl "$@" -o yaml | yh |
Pods
Alias | Command |
---|---|
kgp |
kubectl get pods |
kgpl |
kubectl get pods -l |
kgpn |
kubectl get pods -n |
kgpwide |
kubectl get pods -o wide |
kep |
kubectl edit pods |
kdp |
kubectl describe pods |
kdelp |
kubectl delete pods |
Services
Alias | Command |
---|---|
kgs |
kubectl get svc |
kgswide |
kubectl get svc -o wide |
kes |
kubectl edit svc |
kds |
kubectl describe svc |
kdels |
kubectl delete svc |
Namespaces
Alias | Command |
---|---|
kgns |
kubectl get namespaces |
kdns |
kubectl describe namespace |
kdelns |
kubectl delete namespace |
Configmaps
Alias | Command |
---|---|
kgcm |
kubectl get configmaps |
kecm |
kubectl edit configmap |
kdcm |
kubectl describe configmap |
kdelcm |
kubectl delete configmap |
Secrets
Alias | Command |
---|---|
kgsec |
kubectl get secret |
kdsec |
kubectl describe secret |
kdelsec |
kubectl delete secret |
Deployments
Alias | Command |
---|---|
kgd |
kubectl get deployment |
kgdwide |
kubectl get deployment -o wide |
ked |
kubectl edit deployment |
kdd |
kubectl describe deployment |
kdeld |
kubectl delete deployment |
ksd |
kubectl scale deployment |
ReplicaSets
Alias | Command |
---|---|
kgrs |
kubectl get rs |
Nodes
Alias | Command |
---|---|
kgno |
kubectl get nodes |
kdno |
kubectl describe node |
PVCs
Alias | Command |
---|---|
kgpvc |
kubectl get pvc |
kdpvc |
kubectl describe pvc |
kdelpvc |
kubectl delete pvc |
StatefulSets
Alias | Command |
---|---|
kgss |
kubectl get statefulset |
kgsswide |
kubectl get statefulset -o wide |
kess |
kubectl edit statefulset |
kdss |
kubectl describe statefulset |
kdelss |
kubectl delete statefulset |
ksss |
kubectl scale statefulset |
DaemonSets
Alias | Command |
---|---|
kgds |
kubectl get daemonset |
keds |
kubectl edit daemonset |
kdds |
kubectl describe daemonset |
kdelds |
kubectl delete daemonset |
iPadOS Apps
Apps marked with *
are to be installed on the device initially.
Translation
- Multitran * — Speak & Translate Dictionary.
Paid
- Procreate * — Sketch, paint, create. — C$14.
iOS & iPadOS Apps
Apps marked with *
are to be installed on the device initially.
Gaming
- Steam Mobile *iOS
- Ubisoft Connect
- Steam Link — Stream Your Steam Library.
- Postparty — Gameplay Clipping.
PlayStation
Xbox
Games
- Chess - Play & Learn * — Games, Puzzles, and Friends!
- lichess • Online Chess
- Among Us!
- Akinator * — Genie who can read your mind.
- Microsoft Outlook *iOS — Secure Email, Calendar & Files.
- Gmail - Email by Google * — Secure, fast & organized email.
Internet
- Google *iOS — Search with images using Lens.
- Google Chrome * — Fast & Secure Web Browser.
- Firefox: Private, Safe Browser — Fast and Secure Web Browsing.
VPN
- Cisco AnyConnect *iOS — New Cisco AnyConnect.
Communication
- Jami — Jami is free software for universal communication which respects the freedoms and privacy of its users.
- Telegram Messenger * — Fast. Secure. Powerful.
- Skype — Talk. Chat. Collaborate.
- Viber Messenger: Chats & Calls *iOS — Group Chat & Text Messages.
- Messenger * — Text, audio and video calls.
- Slack * — Business Communication.
- Discord - Talk, Chat, Hang Out * — Friends, Communities & Gaming.
- Microsoft Teams * — Call. Chat. Collaborate.
- Signal - Private Messenger * — Say “hello” to privacy.
- TextNow: Call + Text Unlimited — Phone Number For Texts & Calls.
Weather
- The Weather Network * — Detailed Weather Forecast.
Cloud Storage
- Google Drive * — Cloud storage space.
- Google Docs: Sync, Edit, Share * — Edit Documents and Collaborate.
- Google Sheets * — Open, Edit & Share Spreadsheet.
- Dropbox: Cloud Storage & Drive * — Photo Share | Docs & PDF files.
- Yandex.Disk — Photo unlim.
- Microsoft OneDrive — File & photo cloud storage.
Authenticators
- Twilio Authy *
- Microsoft Authenticator *iOS — Protects your online identity.
- Yandex.Key—one-time passwords *
Maps/Navigation
- Google Maps - Transit & Food * — GPS, City Navigation & Traffic.
- Waze Navigation & Live Traffic *iOS — Avoid traffic, police, hazards.
- Google Earth * — Gain a new perspective.
Productivity
- Grammarly - Keyboard & Editor — English grammar and writing.
- Simplenote — Notes and Todos * — Simple notes, todos and memos.
- Evernote - Notes Organizer * — Note pad, to-do list, planner.
- OfficeSpace App *iOS — For the next gen workplace.
Developer Tools
- GitHub * — Projects, ideas, & code to go.
Books
- Bookmate. Books and audiobooks * — Read & listen to great books.
- Audible audio books & podcasts * — Stream & listen to Audiobooks.
- Kindle * — Read eBooks & Magazines.
Social
- Twitter * — Live news, sports, and chat.
- Facebook *
- LinkedIn: Job Search & News * — Network & Find Jobs For You.
Business
- xMatters *iOS
- Asana: Your work manager * — Get to your goals faster.
Entertainment
- 9GAG: Best LOL Pics & GIFs * — LOL Pics & GIFs Search Engine.
- Reddit * — Dive into anything.
- TikTok * — Videos, Music & Live Streams.
Shopping
- Amazon * — Search, Browse, Shop — Easy.
- IKEA * — Inspired shopping.
- eBay * — Start buying and selling now.
- H&M - we love fashion *
- Urban Outfitters * — Shop for Clothes & Home Décor.
- Costco
TV/Movies/Streaming
- YouTube: Watch, Listen, Stream * — Videos, Music and Live Streams.
- Tubi - Watch Movies & TV Shows * — Stream Content: Movies/TV.
- Twitch: Live Game Streaming * — Watch Fortnite, PUBG & IRL TV.
- The CW — [Available only in the US store].
- Plex: Movies, TV, Music & More — The streaming app for everyone.
- Global TV * — Watch Full Episodes & Live TV.
- Trovo - Live Stream & Games * — Gamers Take Center Stage.
Music
- Spotify New Music and podcasts — Discover playlists and songs.
- GuitarTuna: Guitar, Bass tuner — Tuner for Guitar, Bass,Ukulele.
- SoundHound - Music Discovery * — Find & play songs with lyrics.
Translation
- Lingvo Dictionary & Translator * — [Available only in the Russian store]. Translate and Learn languages.
- Google Translate * — Translate 108 languages.
Utils
- Google Assistant — Your own personal Google.
- Apple Support * — We’re here to help.
- MultiTimer: Multiple timers *iOS — Visual countdown seconds timer.
- AnyDesk Remote Desktop — Remote access from anywhere.
- Adobe Acrobat Reader PDF Maker * — File Viewer & Document Editor.
Environment
- IQAir AirVisual | Air Quality — Global air pollution AQI PM2.5.
Shipping
- UPS Mobile
- FedEx Mobile — Track, ship, locations & more.
Languages
- Duolingo - Language Lessons * — Learn Spanish, French, German.
Reference
- Wikipedia * — The Free Encyclopedia.
Food/Drinks
- Uber Eats: Food Delivery * — Restaurant dishes to your door.
- Yelp: Local Food & Services * — Local food, Shopping, Services.
- DoorDash - Food Delivery * — Restaurant Eats & Drinks To Go.
Travel
- Uber - Request a ride *iOS — Need a ride? Get the Uber app.
- Tripadvisor: Plan & Book Trips * — Hotels, Restaurants, Tours.
- Airbnb * — Vacation Rentals & Experiences.
- WiFi Map: Internet, eSIM, VPN * — Best Mobile Internet Provider.
- Booking.com: Hotels & Travel * — Hotels, flights & car rentals.
Health & Fitness
- Lose It! — Calorie Counter — Food Tracker for Weight Loss.
- Tabata HIIT Interval Timer — TSP - Tabata Stopwatch Pro.
Devices
- Sonos *iOS — Total Control. All your music.
- Amazon Alexa *iOS
- Philips Hue * — Official Philips Hue app.
Canada
Travelling
- Air Canada + Aeroplan *iOS — Book, Fly, Aeroplan.
Lifestyle
- Centris.ca * — Find Your Next Home.
Shopping
- Best Buy Canada * — Shop Online For Deals & Save.
- Kijiji: Buy & sell, get deals * — Shop your local marketplace.
- Canadian Tire: Shop Smarter * — Shop & Get Canadian Tire Money.
- Dollarama * — Dollarama Mobile App.
Points
Food & Drinks
- Société des alcools du Québec * — SAQ.
- Tim Hortons * — Order, pay, and earn rewards.
- Domino’s Canada *
- PayRange *iOS
- Burger King Canada * — Coupons & Exclusive Offers.
- KFC Canada *
Movies
- Cineplex Mobile * — New and improved experience!
Banking
- TD Canada *iOS — Bank on the go with the TD app.
- TD Authenticate *iOS — Offline Two-Step Verification.
- RBC Mobile *iOS — Better banking.
- Omni by Desjardins *iOS — Desjardins group plans.
- Desjardins mobile services *iOS — Mobile banking simplified.
Health
- Manulife Mobile *iOS
- Dialogue Health *
- Picard & Desjardins Pharmacy — Quebec Online Pharmacy.
- Jean Coutu *
Utilities
- Hydro-Québec *iOS
- MyBell *iOS — Manage your Bell account.
Shipping
- Purolator
- Canada Post — Track and get delivery updates.
Russia
Social
- Odnoklassniki: Social network * — Messenger, chat, music, video.
- VK: social network, messenger * — Live chat, business and media.
Maps
- Yandex.Maps & Navigator — Transport, Transit, Navigation.
Transport
Paid
Utils
- 1Password 8 - Password Manager * — Store your passwords safely. — 2.99 C$/month.
- Amount - Unit Converter * — Simple unit converter. — C$1.
- Hours & Minutes Calculator *iOS — C$2.79.
- VPN for privacy | NordVPN * — Connect for private Wi-Fi. — C$5.39/month.
- Last Time Tracker *iOS — Track your important events. — C$3.99.
Languages
- AnkiMobile Flashcards — Smart & powerful flashcards. — C$35.
Streaming
- Netflix * — C$16.49/month (Full HD), C$20.99/month (4K).
- Amazon Prime Video * — Originals, movies, TV, sports. — C$6.58/month.
- Disney+ * — Unlimited entertainment. — C$11.99/month.
- Paramount+ — A Mountain of Entertainment. — C$5.99/month.
- Crave — The best series, movies & more. — C$19.99/month.
- AMC+ | TV Shows & Movies — New Series, Films & LIVE TV. — C$8.99/month.
- Crunchyroll — Stream anime shows and movies. — C$7.99/month.
- Shudder: Horror & Thrillers — Watch Movies and Series. — C$5.99/month.
- The Criterion Channel — Watch classic movies and more. — C$14.49/month.
- FlixFling Streaming — Streaming Movies and Music. — C$7.99/month.
- Sundance Now: Films & Series — C$6.99/month.
Video
- Infuse 7 * — An elegant video player. — C$104.99.
macOS, Linux & Windows Apps
Browsers
- Firefox — Get the browser that protects what’s important. No shady privacy policies or back doors for advertisers. Just a lightning fast browser that doesn’t sell you out.
- Brave — The new Brave browser blocks ads and trackers that slow you down and invade your privacy. Discover a new way of thinking about how the web can work.
Editors
- Sublime Text — Text Editing, Done Right.
- VS Code — Code editing. Redefined.
- Apache OpenOffice — Compatible with other major office suites.
Communication
- Jami — Jami is free software for universal communication which respects the freedoms and privacy of its users.
- Discord — Imaging a place where you can belong to a school club, a gaming group, or a worldwide art community. Where just you and a handful of friends can spend time together. A place that makes it easy to talk every day and hang out more often.
- Telegram Desktop — Fast and secure desktop app, perfectly synced with your mobile phone.
- Skype — Preserving the connections that matter most with Skype.
- Microsoft Teams — Meet, chat, call, and collaborate in just one place.
- Slack — With the Slack app, your team is never more than a click away.
- VK Messenger
Utils
- AnyDesk — Remote desktop.
- muCommander — The easy to use file manager.
TV/Movies/Streaming
- Plex — Plex brings together all the media that matters to you.
- OBS Studio — Free and open source software for video recording and live streaming.
Notes
- Simplenote — The simplest way to keep notes.
Downloaders
- Free Download Manager — It’s a powerful modern download accelerator and organizer for Windows, macOS, Android, and Linux.
- Deluge — Deluge is a lightweight, Free Software, cross-platform BitTorrent client.
Utils
- AnyDesk — Remote desktop.
- muCommander — The easy to use file manager.
Paid
- 1Password — The world’s most-loved password manager — C$2.99/month.
watchOS Apps
Weather
- The Weather Network — Detailed Weather Forecast.
Games
- Chess - Play & Learn — Games, Puzzles, and Friends!
- Microsoft Outlook — Secure Email, Calendar & Files.
Health & Fitness
- Nike Run Club — Running Tracker & Coaching.
- Sleep Watch by Bodymatter — Auto Sleep Tracker.
- Qardio heart health — Blood pressure, weight, ECG.
- AllTrails: Hike, Bike & Run — GPS Hiking & Biking Trail Maps.
Food & Drinks
- Starbucks — Order, pay, and earn Stars.
Communication
- Messenger — Text, audio and video calls.
Authenticators
- Twilio Authy
- Microsoft Authenticator — Protects your online identity.
Maps/Navigation
- Google Maps - Transit & Food — GPS, City Navigation & Traffic.
Books
- Audible audio books & podcasts — Stream & listen to Audiobooks.
Business
Music
- Spotify New Music and podcasts — Discover playlists and songs.
- SoundHound - Music Discovery — Find & play songs with lyrics.
Utils
- MultiTimer: Multiple timers — Visual countdown seconds timer.
Environment
- IQAir AirVisual | Air Quality — Global air pollution AQI PM2.5.
Shipping
- FedEx Mobile — Track, ship, locations & more.
Food/Drinks
- Yelp: Local Food & Services — Local food, Shopping, Services.
Health & Fitness
- Lose It! — Calorie Counter — Food Tracker for Weight Loss.
Canada
Food & Drinks
Banking
- TD Canada — Bank on the go with the TD app.
- RBC Mobile — Better banking.
- Desjardins mobile services — Mobile banking simplified.
Shipping
- Canada Post — Track and get delivery updates.
Russia
Maps
- Yandex.Maps & Navigator — Transport, Transit, Navigation.
Paid
Utils
- 1Password 8 - Password Manager — Store your passwords safely. — 2.99 C$/month.
- Hours & Minutes Calculator — C$2.79.
Health & Fitness
- AutoSleep Track Sleep on Watch — Auto Sleep Tracker & Alarm. — C$5.49.