Here are the step to install Cannon LBP-810 on to Arch Linux:
- Turn off printer
- install capt-src if it's not already installed
yay capt-src
- restart CUPS service:
Here are the step to install Cannon LBP-810 on to Arch Linux:
yay capt-src
#!/bin/sh | |
function readlink_file() | |
{ | |
next_path=$1 | |
while [ "$i" != 10 ] && [ "x$next_path" != "x$path" ]; do | |
path=$next_path | |
next_path=$(readlink "$path" || echo $path) | |
i=`expr $i + 1` | |
done |
https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching
Maintainer: Keil Miller Jr
How to create and manage an AUR package.
The following link should be read:
#!/bin/bash | |
# A bash script to update a Cloudflare DNS A record with the external IP of the source machine | |
# Used to provide DDNS service for my home | |
# Needs the DNS record pre-creating on Cloudflare | |
# Proxy - uncomment and provide details if using a proxy | |
#export https_proxy=http://<proxyuser>:<proxypassword>@<proxyip>:<proxyport> | |
# Cloudflare zone is the zone which holds the record |
#!/usr/bin/env php | |
<?php | |
/** | |
* Automated process to extract SVG Icomoon icons | |
* | |
* Usage: php icomoon-extract.php path/to/icomoon.svg [path/to/destiny/] | |
* | |
* It takes each non-empty <glyph> and outputs into a svg file with one <path>. | |
* It also adds a matrix to resize to 48x48 px, some rectangles to help | |
* positioning, and includes some guides and grid. |
[opcache] | |
; Determines if Zend OPCache is enabled | |
opcache.enable=1 | |
; Determines if Zend OPCache is enabled for the CLI version of PHP | |
;opcache.enable_cli=1 | |
; The OPcache shared memory storage size. | |
opcache.memory_consumption=512 |
var SphereControls = function (camera, domElement, config) { | |
var self = this; | |
config = config || {}; | |
domElement = ( domElement !== undefined ) ? domElement : document; | |
domElement.addEventListener( 'mousedown', onDocumentMouseDown, false ); | |
domElement.addEventListener( 'mousemove', onDocumentMouseMove, false ); | |
domElement.addEventListener( 'mouseup', onDocumentMouseUp, false ); |