Turn your smartphone or tablet (e.g., Iphone, Ipad, Samsung, Motorola, etc) camera into a WebCam to make video conference (e.g., Google Meeting, Zoom, Discord, etc) in Linux.
Examples:
| { | |
| "employeeId": null, | |
| "firstName": "123", | |
| "lastName": "123", | |
| "contractStartDate": "2024-11-05T20:00:00.000Z", | |
| "contractExpirationDate": null, | |
| "contractAutoRenewal": false, | |
| "supervisorId": null, | |
| "officeId": null, | |
| "positionId": "08dcd954-2b26-4f24-82a0-a615395f6ce7", |
Turn your smartphone or tablet (e.g., Iphone, Ipad, Samsung, Motorola, etc) camera into a WebCam to make video conference (e.g., Google Meeting, Zoom, Discord, etc) in Linux.
Examples:
| #!/usr/bin/env bash | |
| cd Downloads | |
| wget https://github.com/adobe-fonts/source-code-pro/archive/2.030R-ro/1.050R-it.zip | |
| if [ ! -d "~/.fonts" ] ; then | |
| mkdir ~/.fonts | |
| fi |
| # Reinstall SpaceVim along with useful bunch of tools that work well together with SpaceVim. | |
| # This is for Ubuntu 20.04 | |
| sudo apt install -y ctags miscfiles python3-dev python3-pip rsync shellcheck software-properties-common wbritish wbritish-huge ruby ruby-dev nodejs gcc g++ make universal-ctags python3-pygments ripgrep | |
| sudo select-default-wordlist | |
| sudo apt-get update | |
| sudo apt-get install -y --reinstall neovim | |
| sudo update-alternatives --install /usr/bin/vi vi /usr/bin/nvim 5 | |
| sudo update-alternatives --install /usr/bin/vim vim /usr/bin/nvim 5 |
| # delete all pods | |
| kubectl delete --all pods --namespace=default | |
| # deete all deployments | |
| kubectl delete --all deployments --namespace=default | |
| # delete all services | |
| kubectl delete --all services --namespace=default |
| /** | |
| * Deep diff between two object, using lodash | |
| * @param {Object} object Object compared | |
| * @param {Object} base Object to compare with | |
| * @return {Object} Return a new object who represent the diff | |
| */ | |
| function difference(object, base) { | |
| function changes(object, base) { | |
| return _.transform(object, function(result, value, key) { | |
| if (!_.isEqual(value, base[key])) { |
| <?php | |
| /** | |
| * Plugin Name: Fix infinite redirect on static front page | |
| * Description: Use this simple plugin to Fix infinite redirect on static front page with some WordPress versions | |
| * Plugin URI: https://tielabs.com/ | |
| * Author: TieLabs | |
| * Author URI: https://tielabs.com | |
| * Version: 0.1.0 | |
| * License: GPLv2 or later | |
| */ |
| SPC | |
| SPC: find file | |
| , switch buffer | |
| . browse files | |
| : MX | |
| ; EX | |
| < switch buffer | |
| ` eval | |
| u universal arg | |
| x pop up scratch |
| # !/bin/bash | |
| grep $1 $(locate mac-prefixes) |