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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# -*- coding:utf-8 -*- | |
""" | |
Create a password that can be found/calculated | |
without a computer, using binary to ascii conversion. | |
Example: | |
Consider the following binary code: | |
00101011 01011100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# First, follow install instructions at https://github.com/meganz/web-extension | |
git pull | |
git submodule update --remote --merge | |
# Temporary fixes related to https://github.com/meganz/web-extension/issues/11 | |
cp webclient/lang/en_prod.json webclient/lang/en.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import datetime as dt | |
# OPSEC Warning: change simId and appInstallId | |
# This script run well over Tor or VPN (but you may encounter rate limitation) | |
class OrangePhoneAPI: | |
def __init__(self) -> None: | |
self.simId = "12345678912345678912" | |
self.appInstallId = "f8de172f-1315-43ab-a733-7b186879c5de" |
How to push to a public Github repo and trigger a deploy event
Setup your CI job
git remote set-url origin https://sundowndev:${{ secrets.GITHUB_TOKEN }}@github.com/sundowndev/livre-blanc-video.git
git config user.name "${{ secrets.GITHUB_USER }}"
git config user.email "${{ secrets.GITHUB_USER }}@users.noreply.github.com"
# You can now push