This document describes how to use FUSE OverlayFS to link your global Firefox installation with the PWAsForFirefox runtime.
- Your OS uses systemd.
- Firefox is installed (without Snap or Flatpak).
#compdef winget | |
function _winget { | |
local word="${words[CURRENT]}" | |
local commandline="${words[*]}" | |
local position="$(( $CURSOR ))" | |
local completions | |
completions=("${(f)$(winget complete --word "${word}" --commandline "${words}" --position $position 2>/dev/null)}") | |
completions=("${completions[@]//$'\r'/}") |
The objectives of the experiment are to develop a system for land categorization and classification system of satellite photos from Raspberry Pi NoIR camera. Such technologies (but on a bigger scale) would also allow analysing unknown land and easy constructions of rudimentary maps on less discovered places on Earth or analysing land of newly discovered planets, as well as navigation systems based on land images.
Our algorithm uses OpenCV’s Python library and Numpy to process images. For every photo, it uses colour-based classification functions to generate grayscale masks for clouds, oceans, and land, as well as edge detection. We decided to use OpenCV’s threshold with a value between 185 and 255 for cloud detection, ocean mask was detected with checking if red and green components of each pixel were smaller than blue one, and land mask additionally checked that all three components are similar enough.
Program takes all photos in directory, process each of them in separate proc
This is JavaScript WebSocket client for ZeroFrame API. It supports (almost) same features as default ZeroFrame that is included in ZeroNet sites, but it is using WebSocket client so it can be used in local programs, such as Node.js and Electron.
This is part of clients that will try to add ZeroNet support to local programs outside the browser. I'm currently also creating clients for Python and PHP which will add more possibilities for ZeroNet usage. Please let me know in comments which languages would you also like to support.
The program is now also available as GitHub repository and NPM package on filips123/ZeroFrameJS
. Updated documentation is also available there.
<style> | |
.screen { | |
padding: 0px; | |
margin: 0px; | |
line-height: 0px; | |
} | |
.screen-text { | |
white-space: pre; | |
position: relative; |
version: '3' | |
services: | |
osjs: | |
image: osjs/osjs:v3 | |
environment: | |
- NODE_ENV=development | |
command: nodemon --watch package-lock.json --watch src/server --watch src/packages src/server/index.js | |
volumes: | |
- ./src:/usr/src/osjs/src |
const PHP_MODULE = 'https://oraoto.github.io/pib/php.js' | |
const loadResource = url => new Promise((resolve) => { | |
const head = document.getElementsByTagName('head')[0] | |
const theScript = document.createElement('script') | |
theScript.src = url; | |
theScript.onload = () => { | |
resolve() | |
}; |
from random import randint | |
import sys | |
COMMON = 'common.txt' | |
MIN_LENGTH = 4 | |
MAX_LENGTH = 8 | |
NUM = 2048 |
This is Slovenian Translation for Plyr (https://github.com/sampotts/plyr). Provide an i18n
object as one of your options when initialising Plyr.
To je slovenski prevod za Plyr (https://github.com/sampotts/plyr). Pri inicializaciji Plyr kot eno od možnosti podajte objekt i18n
.