Just to remind me
laravel new myProject
cd myProject
git init
git add .
git commit -m "Initial commit"
php artisan jetstream:install livewire
\
#### General PFCTL Commands #### | |
$ pfctl -d disable # packet-filtering | |
$ pfctl -e enable # packet-filtering | |
$ pfctl -q # run quiet | |
$ pfctl -v -v # run even more verbose | |
#### Loading PF Rules #### | |
$ pfctl -f /etc/pf.conf # load /etc/pf.conf | |
$ pfctl -n -f /etc/pf.conf # parse /etc/pf.conf, but dont load it | |
$ pfctl -R -f /etc/pf.conf # load only the FILTER rules | |
$ pfctl -N -f /etc/pf.conf # load only the NAT rules |
# Modified for OpenBSD | |
# Assumes being root | |
# Requires curl to be installed, wget can also be used, relevant commands need to be adjusted. acme.sh supports both. | |
# Configured to use Cloudflare DNS for verification | |
# How to use "acme.sh" to set up Lets Encrypt without root permissions | |
# See https://github.com/Neilpang/acme.sh for more | |
# This assumes that your website has a webroot at "/var/www/<domain>" | |
# I'll use the domain "EXAMPLE.com" as an example |
# acme_tiny --account-key /opt/local/etc/acme/account.key \
--csr /opt/local/etc/acme/domain.csr \
--acme-dir /opt/local/www/acme \
> /opt/local/etc/acme/signed.crt
# curl -s 'https://letsencrypt.org/certs/lets-encrypt-x3-cross-signed.pem' > /opt/local/etc/acme/intermediate.pem
cat /opt/local/etc/acme/signed.crt /opt/local/etc/acme/intermediate.pem > /opt/local/etc/acme/fullchain.pem
user www www; | |
worker_processes 1; | |
events { | |
# After increasing this value You probably should increase limit | |
# of file descriptors (for example in start_precmd in startup script) | |
worker_connections 1024; | |
} | |
package cl.puas.web.servlet; | |
import sun.misc.BASE64Decoder; | |
import javax.imageio.ImageIO; | |
import javax.servlet.ServletException; | |
import javax.servlet.http.HttpServlet; | |
import javax.servlet.http.HttpServletRequest; | |
import javax.servlet.http.HttpServletResponse; | |
import java.awt.image.BufferedImage; |
https://superuser.com/questions/680416/how-to-add-something-every-x-line |
UNIX BUILD NOTES | |
================ | |
To Build | |
-------- | |
cd src/ | |
make -f makefile.unix # Headless MAJACOIN | |
See readme-qt.rst for instructions on building MAJACOIN QT, |
input { | |
jdbc { | |
# Oracle JDBC Driver | |
jdbc_driver_library => "H:\downloads\ojdbc14.jar\ojdbc14.jar" | |
jdbc_driver_class => "Java::oracle.jdbc.driver.OracleDriver" | |
jdbc_connection_string => "jdbc:oracle:thin:@localhost:1521/orcl.local" | |
jdbc_user => "scott" | |
jdbc_password => "pass123" | |
# SQL query to execute | |
statement => "select * from emp" |