Example on how to run locally an AWS Lambda via API Gateway using localstack.
Based on...
nftset=/4pda.ru/4#inet#fw4#vpn_domains | |
nftset=/4pda.to/4#inet#fw4#vpn_domains | |
nftset=/adobe.com/4#inet#fw4#vpn_domains | |
nftset=/adobe.io/4#inet#fw4#vpn_domains | |
nftset=/amazonaws.com/4#inet#fw4#vpn_domains | |
nftset=/atlassian.com/4#inet#fw4#vpn_domains | |
nftset=/bing.com/4#inet#fw4#vpn_domains | |
nftset=/bitbucket.org/4#inet#fw4#vpn_domains | |
nftset=/buf.build/4#inet#fw4#vpn_domains | |
nftset=/cdninstagram.com/4#inet#fw4#vpn_domains |
[Desktop Entry] | |
Categories=GNOME;GTK;Network;WebBrowser; | |
Comment=Browser picker | |
Exec=$HOME/.bin/browser_chooser %U | |
GenericName=Web Browser | |
Icon=firefox | |
Keywords=Internet;WWW;Browser;Web;Explorer | |
Name=Browser Chooser | |
Type=Application | |
Version=1.0 |
Example on how to run locally an AWS Lambda via API Gateway using localstack.
Based on...
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# Recommended steps: | |
# | |
# bootstrap before entering chroot | |
# copy this script into INSTALL_DIR | |
# rootinit after entering chroot | |
# x (if installing graphics) | |
# pkgs | |
# xpkgs (if installing graphics) |
<?PHP | |
// Generates a strong password of N length containing at least one lower case letter, | |
// one uppercase letter, one digit, and one special character. The remaining characters | |
// in the password are chosen at random from those four sets. | |
// | |
// The available characters in each set are user friendly - there are no ambiguous | |
// characters such as i, l, 1, o, 0, etc. This, coupled with the $add_dashes option, | |
// makes it much easier for users to manually type or speak their passwords. | |
// | |
function generateStrongPassword($length = 9, $availableSets = 'luds'): string |
<!DOCTYPE html> | |
<html lang="ru"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Переход по внешней ссылке <?= $request->get("goto") ?></title> | |
<meta name="referrer" content="origin"> | |
<noscript> | |
<META http-equiv="refresh" content="0;URL=<?= $request->get("goto") ?>"> | |
</noscript> | |
</head> |
#!/bin/sh | |
#---------------------------------------------------------- | |
# a simple mysql database backup script. | |
# version 2, updated March 26, 2011. | |
# copyright 2011 alvin alexander, http://alvinalexander.com | |
#---------------------------------------------------------- | |
# This work is licensed under a Creative Commons | |
# Attribution-ShareAlike 3.0 Unported License; | |
# see http://creativecommons.org/licenses/by-sa/3.0/ |
.mt-5 { | |
margin-top: 5px; | |
} | |
.mr-5 { | |
margin-right: 5px; | |
} | |
.mb-5 { | |
margin-bottom: 5px; | |
} | |
.ml-5 { |