Filter | Description | Example |
---|---|---|
allintext | Searches for occurrences of all the keywords given. | allintext:"keyword" |
intext | Searches for the occurrences of keywords all at once or one at a time. | intext:"keyword" |
inurl | Searches for a URL matching one of the keywords. | inurl:"keyword" |
allinurl | Searches for a URL matching all the keywords in the query. | allinurl:"keyword" |
intitle | Searches for occurrences of keywords in title all or one. | intitle:"keyword" |
Discover gists
#!/bin/bash | |
#----------------------------------------------------------------------------- | |
# pixma2pdf.sh version 3.0 | |
# | |
# Copyright (c) 2009, 2013 Torkild U. Resheim - torkildr@gmail.com | |
# Released under the Eclipse Public License version 1.0 | |
#----------------------------------------------------------------------------- | |
t=$(tempfile) || exit | |
trap "rm -f -- '$t'" EXIT |
- Have your TV rooted
- Open Terminal with SSH client or dev-manager-desktop
- Run
curl -fsSL https://gist.githubusercontent.com/mariotaku/f7228c5459fc7ad2172a2b69dd51a4eb/raw/webosbrew-install-tailscale.sh | sh
and wait for it to finish
from kivy.app import App | |
from kivy.core.window import Window | |
from kivy.uix.button import Button | |
from kivy.uix.boxlayout import BoxLayout | |
from kivy.uix.popup import Popup | |
from kivy.uix.label import Label | |
from kivy.uix.textinput import TextInput | |
from kivy.uix.image import Image | |
from kivy.uix.floatlayout import FloatLayout | |
from kivy.uix.checkbox import CheckBox |
I wanted to install GIT-Lfs
on my user account without access to server root account. I write this to my future self.
- Download
tar.gz
file from git-lfs website.
wget https://github.com/git-lfs/git-lfs/releases/download/v3.2.0/git-lfs-linux-amd64-v3.2.0.tar.gz
2.Untar it
tar xvf git-lfs-linux-amd64-v3.2.0.tar.gz
Free Visual Studio 2022 Product key: | |
Visusal Studio 2022 Professional Product Key: | |
NXXPC-Q94CK-YJYWC-JTQVW-9TR8X | |
TD244-P4NB7-YQ6XK-Y8MMM-YWV2J | |
Visual STudio 2022 Pro DOwnload : | |
https://c2rsetup.officeapps.live.com/c2r/downloadVS.aspx?sku=professional&channel=Release&version | |
Visual Studio 2022 Enterprise product key: | |
RT8M4-FNKYB-934F7-6R287-T3FB8 |
--- | |
hosts: all | |
tasks: | |
- name: add github ssh key | |
copy: > | |
src=files/id_rsa.github | |
dest=/root/.ssh/id_rsa.github | |
owner=root | |
group=root |
Bypass disable-devtool
(Working as of 2025-02-09)
There are websites that use disable-devtool to prevent you from opening or using devtools. They typically prevent you from right clicking or using the keyboard shortcut to open devtools. Even if you successfully do so, they detect it and redirect you elsewhere. You can bypass this by using one of the following ways.
If the shortcut F12 on Windows or Option + ⌘ + I on Mac do not work. Press the three vertically aligned dots in the top right corner of your Google Chrome or Microsoft Edge window. Under the section "More Tools", you'll see the option to select "Developer Tools" which opens the toolkit in your window.
Updated docs have moved to the MeshChat repo, this copy has been left here for reference.
https://github.com/liamcottle/reticulum-meshchat/blob/master/docs/meshchat_on_raspberry_pi.md
Simple guide to install MeshChat on a Raspberry Pi.
This would allow you to connect an RNode (such as Heltec v3) to the Pi via USB, and then access the MeshChat Web UI from another machine.
Setup a self hosted Meshtastic monitoring system on a Raspberry Pi with a Waveshare SX1262 LoRa Hat.
sudo apt update
sudo apt upgrade