{{{ #!html
}}}[[PageOutline(1, Contents)]]
Here are a few solutions for capturing your desktop and recording a video of your screen with ffmpeg. (A Chinese version of this page is [[Capture/Desktop中文版本|also available]].)
[ | |
"https://chrome.google.com/webstore/detail/ballloon-for-chrome/kbmligehjhghebleanjcmenomghmcohn", | |
"https://chrome.google.com/webstore/detail/shine-for-reddit/acoiihnnfofnpbnofdcgcapbjlcopifa", | |
"https://chrome.google.com/webstore/detail/tag-assistant-by-google/kejbdjndbnbjgmefkgdddjlbokphdefk", | |
"https://chrome.google.com/webstore/detail/highly-highlighter/hjpahjhcglfdopbholajmhpamgblhjhg", | |
"https://chrome.google.com/webstore/detail/screencastify-screen-vide/mmeijimgabbpbgpdklnllpncmdofkcpn", | |
"https://chrome.google.com/webstore/detail/sms-from-gmail-facebook-m/iffdacemhfpnchinokehhnppllonacfj", | |
"https://chrome.google.com/webstore/detail/wot-web-of-trust-website/bhmmomiinigofkjcapegjjndpbikblnp", | |
"https://chrome.google.com/webstore/detail/mega/bigefpfhnfcobdlfbedofhhaibnlghod", | |
"https://chrome.google.com/webstore/detail/time-is-money/ooppbnomdcjmoepangldchpmjhkeendl", |
using UnityEngine; | |
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Threading; | |
class BitmapEncoder | |
{ | |
public static void WriteBitmap(Stream stream, int width, int height, byte[] imageData) |
# ============================================================ | |
# Author: 凍仁翔 / chusiang.lai (at) gmail.com | |
# Blog: http://note.drx.tw | |
# Filename: grub.cfg | |
# Modified: 2015-01-15 10:21 | |
# Description: grub config of mix disk for the Clonezilla and Debian. | |
# | |
# Now, we can boot with: | |
# * Clonezilla Live | |
# * Install Debian 7.7 |
User local install as much as possible, leaving system-wide kit (e.g. python & python-pip .debs) alone. Tested on Debian, Ubuntu, Mint & ChromeOS/Crostini.
Set up the dev environment (this is the only system-wide part):
sudo apt install build-essential libsqlite3-dev sqlite3 bzip2 libbz2-dev zlib1g-dev libssl-dev openssl libgdbm-dev liblzma-dev libreadline-dev libncursesw5-dev libffi-dev uuid-dev
#Optionally:
sudo apt install libxml2-dev libxslt1-dev git mercurial
A clear how-to with instruction to get proxmox virtual machines provisioned with Terraform.
You need go installed to compile the Telmate provider located here.
You additionally need terraform installed.
You need cloud-init installed on proxmox. This wiki page has a decent howto. Go ahead and also create a cloud-init image created.
" Maintainer: Rafael Kallis <rafaelkallis.com> | |
" Keybindings: | |
" gd: go to identifier (D)efinition | |
" ge: go to next (E)rror | |
" gf: (F)ix errors | |
" gl: toggle (L)inter | |
" gn: toggle line (N)umbers | |
" go: search and (O)pen file | |
" gq: (Q)uit normal mode |
# | |
# DISABLE SECURE BOOT IN BIOS! | |
# | |
# fish | |
sudo dnf install fish util-linux-user | |
chsh -s /usr/bin/fish | |
mkdir ~/.config/fish | |
touch ~/.config/fish/config.fish |
using UnityEngine; | |
using System.Collections; | |
public class Headbobber : MonoBehaviour { | |
private float timer = 0.0f; | |
public float bobbingSpeed = 0.18f; | |
public float bobbingAmount = 0.2f; | |
public float midpoint = 2.0f; |
/** | |
* OpenCV video streaming over TCP/IP | |
* Client: Receives video from server and display it | |
* by Steve Tuenkam | |
*/ | |
#include "opencv2/opencv.hpp" | |
#include <sys/socket.h> | |
#include <arpa/inet.h> | |
#include <unistd.h> |