I hereby claim:
- I am denysvitali on github.
- I am denvit (https://keybase.io/denvit) on keybase.
- I have a public key whose fingerprint is 98EC 284B 27D5 0D25 D516 7532 8883 F389 50E6 54A4
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
clear | |
echo "----------------------" | |
echo "DKIM setter by denv.it" | |
echo "----------------------" | |
default="denv.it" | |
read -p "Inserisci il nome del dominio [$default]: " domain_name | |
domain_name=${domain_name:-$default} | |
echo $domain_name | |
cd "/etc/opendkim/keys" |
127.0.0.1 adbreak.ch | |
127.0.0.1 www.adbreak.ch |
library ieee; | |
use ieee.std_logic_1164.all; -- =================== | |
use ieee.std_logic_arith.all; -- | LIBRERIE | | |
use ieee.std_logic_unsigned.all; -- =================== | |
entity es5_led is | |
port( | |
CLK : in std_logic; | |
L: out std_logic_vector (3 downto 0); | |
P: in std_logic |
# Lines configured by zsh-newuser-install | |
HISTFILE=~/.histfile | |
HISTSIZE=1000 | |
SAVEHIST=1000 | |
bindkey -v | |
# End of lines configured by zsh-newuser-install | |
# The following lines were added by compinstall | |
zstyle :compinstall filename '~/.zshrc' | |
zstyle ':completion:*' menu select | |
bindkey "^[[1;5C" forward-word |
%F{12}%n%f %F{11}%B%~%b%f |
{ | |
"bitwise": false, | |
"camelcase": false, | |
"curly": true, | |
"eqeqeq": true, | |
"es3": false, | |
"esversion": 6, | |
"forin": true, | |
"freeze": true, | |
"immed": true, |
local remove_user_cfg = load_from_file('data/add_user_cfg.lua') | |
local function urlencode(str) | |
if (str) then | |
str = string.gsub (str, "\n", "\r\n") | |
str = string.gsub (str, "([^%w ])", | |
function (c) return string.format ("%%%02X", string.byte(c)) end) | |
str = string.gsub (str, " ", "+") | |
end | |
return str |