rg -o 'env::var\(".*"\)' project_root/src | rg -o '".*"' | sort | sd '"' ''
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
I hereby claim:
- I am zingi on github.
- I am zingi (https://keybase.io/zingi) on keybase.
- I have a public key ASAsvXnMRp2JuGQHqyM4wV172aRcGF9t0elKU1WI9Hy4ggo
To claim this, I am signing this object:
This file contains hidden or 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
Verifying my Blockstack ID is secured with the address 1E7xKN66J67VPBAeMKa67sRWqzHUrpxDux https://explorer.blockstack.org/address/1E7xKN66J67VPBAeMKa67sRWqzHUrpxDux |
This file contains hidden or 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
from pynput import mouse | |
from mattermostdriver import Driver | |
import time | |
import datetime | |
''' | |
Since the Mattermost desktop client, only sets the status to _online_ | |
if you interact with the client window: this script was created, | |
to set the status to online even if you only move the mouse cursor. |
This file contains hidden or 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
version: '3' | |
services: | |
matrix: | |
image: avhost/docker-matrix:${TAG} | |
container_name: matrix | |
restart: always | |
ports: | |
- '8448:8448' | |
- '8008:8008' | |
- '3478:3478' |
This file contains hidden or 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
var attempts = []; | |
var attemptCount = 0; | |
let simultaneousCount = 10; | |
var found = false; | |
function randomString(length, chars) | |
{ | |
var result = ''; | |
for (var i = length; i > 0; --i) result += chars[Math.floor(Math.random() * chars.length)]; | |
return result; |
NewerOlder