- Log into BF4 Battlelog.
- Visit the Customize emblem page.
- Select the emblem you wish to export.
- Open the console (Ctrl-Shift-J).
- Enter the following code snippet to copy the raw emblem data to the clipboard:
copy('emblem.emblem.load('+JSON.stringify(emblem.emblem.data,null,2)+');'); - Paste somewhere useful, like a gist. Whatever.
- Close the console (Ctrl-Shift-J).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Skill Strength Viewer | |
| // @namespace http://blog.fabianbecker.eu/ | |
| // @version 0.1 | |
| // @description Shows individual skill strength | |
| // @author Fabian Becker | |
| // @match https://www.duolingo.com/* | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Setup bridge for guest wifi (br1) with separate subnet/dhcp | |
| # setup virtual wifi wlan0.1 | |
| #the following rules go under administration -> scripts -> firewall then reboot after saving | |
| #NOTE: -I inserts at the beginning be default, so restrictive rules at the top, permissive at the bottom. | |
| #default deny guest | |
| iptables -I FORWARD -i br1 -j DROP | |
| #Removes guest access to physical network |