I hereby claim:
- I am alfredarouna on github.
- I am alfredarouna (https://keybase.io/alfredarouna) on keybase.
- I have a public key ASCH940vyoOO--aY7pajo78_CF-AC3J3hNucauc1kmLcbwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
%% Copyright 2014 Alfred AROUNA | |
% | |
% This work may be distributed and/or modified | |
% | |
% 1 - under the conditions of the LaTeX Project Public License | |
% 2 - under the GNU Public License. | |
% | |
% | |
% See the file doc/generic/pgf/licenses/LICENSE for more details. | |
% |
Short URL: caseywatts.com/electronworkshop
% Copyright 2016 by Christoph Walsh | |
% | |
% This file may be distributed and/or modified | |
% | |
% 1. under the LaTeX Project Public License and/or | |
% 2. under the GNU Public License. | |
% Used material from: | |
% https://github.com/edasubert/beamerMaterialDesign and | |
% http://ctan.mackichan.com/macros/latex/contrib/beamer/base/themes/outer/beamerouterthememiniframes.sty |
# Get data from ApNic | |
# https://stats.labs.apnic.net/ecdsa/BJ | |
# For instance | |
cat bj_gpdns.csv | |
ISP,Sample,GPDNS % | |
CanalBox-Benin-AS,1299,61.12 | |
SUD-TELCOM-AS,186,34.41 | |
BENINTELECOM,35118,92.57 | |
Spacetel,60193,70.54 | |
JENY-SAS-AS,3091,55.71 |
#!/bin/bash | |
[email protected] | |
URL="https://webmail.example.com" | |
EMAILMESSAGE="email_password.txt" | |
SUBJECT="New password for email account" | |
LOGMSG="emaillog.txt" | |
echo > $LOGMSG |
#!/bin/bash | |
# This script require Dsync configuration | |
# https://wiki2.dovecot.org/Migration/Dsync | |
# - IMAP migration configuration | |
# - POP3 migration configuration | |
# Dsync can use master authentication (https://wiki2.dovecot.org/Authentication/MasterUsers) | |
NOW=$(date +"%m-%d-%Y") | |
SUBJECT="Email Backed Up - "$NOW"" | |
EMAIL="[email protected]" |
#/etc/raddb/sites-enabled/default | |
[...] | |
# Post-Authentication | |
# Once we KNOW that the user has been authenticated, there are | |
# additional steps we can take. | |
post-auth { | |
[...] | |
# | |
# Un-comment the following if you want to modify the user's object | |
# in LDAP after a successful login. |
import getdns | |
import datetime | |
import time | |
from influxdb import InfluxDBClient | |
from influxdb.client import InfluxDBClientError | |
DBUSER = 'influx_dbuser' | |
DBPASSWORD = 'influx_dbpass' |
echo "[Config] Installing archlinuxfr" | |
echo >> /etc/pacman.conf<<EOF | |
[archlinuxfr] | |
SigLevel = Never | |
Server = http://repo.archlinux.fr/$arch | |
EOF | |
echo "[Update] Updating repositories" | |
pacman -Sy |