follow https://github.com/aircrack-ng/rtl8812au/
git clone https://github.com/aircrack-ng/rtl8812au/
cd rtl8812au
sudo make dkms_install
## reboot
sudo dkms autoinstall| { | |
| "version": 1, | |
| "language": "English", | |
| "hideout_name": "Saints End Monastery Hideout", | |
| "hideout_hash": 56571, | |
| "music_name": "Silence", | |
| "music_hash": 122, | |
| "doodads": { | |
| "Stash": { | |
| "hash": 3230065491, |
| <artifacts_info> | |
| The assistant can create and reference artifacts during conversations. Artifacts are for substantial, self-contained content that users might modify or reuse, displayed in a separate UI window for clarity. | |
| # Good artifacts are... | |
| - Substantial content (>15 lines) | |
| - Content that the user is likely to modify, iterate on, or take ownership of | |
| - Self-contained, complex content that can be understood on its own, without context from the conversation | |
| - Content intended for eventual use outside the conversation (e.g., reports, emails, presentations) | |
| - Content likely to be referenced or reused multiple times |
follow https://github.com/aircrack-ng/rtl8812au/
git clone https://github.com/aircrack-ng/rtl8812au/
cd rtl8812au
sudo make dkms_install
## reboot
sudo dkms autoinstallIf you're not familiar: What is fail2ban? fail2ban is an awesome linux service/monitor that scans log files (e.g. auth.log for SSH) for potentially malicious behavior. Once fail2ban is tripped it will ban users for a specified duration by adding rules to Iptables. If you're unfamiliar with fail2ban Chris Fidao has a wonderful (& free!) series about security including setting up fail2ban here.
Recently Laravel released a new feature in 5.1 to throttle authentication attempts by simply adding a trait to your authentication controller. The Laravel throttle trait uses the inputted username, and IP address to throttle attempts. I love seeing this added to a framework out of the box, but what about some of our other apps not built on Laravel? Like a WordPress login? Or even an open API etc.? Ultimately,
| package main | |
| import ( | |
| "fmt" | |
| "os" | |
| "path/filepath" | |
| "github.com/go-fsnotify/fsnotify" | |
| ) |
| var sum = function(members) { | |
| var sumvalue = 0; | |
| for(var key in members) { | |
| if (members.hasOwnProperty(key)) { | |
| sumvalue += members[key] | |
| } | |
| } | |
| return sumvalue | |
| } |
| #gnu makefile | |
| REQUIRED-SOFTWARE=emacs git sudo | |
| EMACS-INIT-FILE?=~/.emacs | |
| EMACS-LISP-BASE?=~/.emacs.d/lisp | |
| DOTFILES-DIR?=~/dotfiles | |
| ## DOTFILES-REPO?= YOUR DOTFILES REPO HERE |
| package main | |
| import ( | |
| "fmt" | |
| "sync" | |
| ) | |
| func main() { | |
| process() | |
| } |
//
// Laravel validate with combination fields
//
// Use
//
return function($attributes) {
return [