- 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
| order | episode | name | url | |
|---|---|---|---|---|
| 1 | 216 | Cat and Mouse | https://www.disneyplus.com/video/5faf61af-2ce0-4baa-a647-a4f4363eba0e?cid=DTCI-Synergy-DDN-Site-Acquisition-StarWars-US-StarWars-StarWarsTheCloneWars-EN-BlogArticleEmbed-TCWChronological_StreamOnDisneyPlusCTA-NA | |
| 2 | 116 | Hidden Enemy | https://www.disneyplus.com/video/7c732b05-b90f-4090-a184-5652be228139?cid=DTCI-Synergy-DDN-Site-Acquisition-StarWars-US-StarWars-StarWarsTheCloneWars-EN-BlogArticleEmbed-TCWChronological_StreamOnDisneyPlusCTA-NA | |
| T | The Clone Wars theatrical release | https://www.disneyplus.com/movies/star-wars-the-clone-wars/AVmv1ulT1nQW?cid=DTCI-Synergy-DDN-Site-Acquisition-StarWars-US-StarWars-StarWarsTheCloneWars-EN-BlogArticleEmbed-TCWChronological_StreamOnDisneyPlusCTA-NA | ||
| 3 | 301 | Clone Cadets | https://www.disneyplus.com/video/7851718f-2530-47e2-bf32-a8b498b3efa9?cid=DTCI-Synergy-DDN-Site-Acquisition-StarWars-US-StarWars-StarWarsTheCloneWars-EN-BlogArticleEmbed-TCWChronological_StreamOnDisneyPlusCTA-NA | |
| 4 | 303 | Supply Lines | https://www.disneyplus.com/video/9d78 |
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
| package main | |
| import ( | |
| "database/sql" | |
| "database/sql/driver" | |
| "errors" | |
| "fmt" | |
| "golang.org/x/crypto/bcrypt" |
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
| console.log(scrapeHtml()); | |
| function cleanText (text) { | |
| var newText = text; | |
| if (text.toLowerCase().indexOf('[collapse]') > -1) { | |
| newText = newText.toLowerCase().split('[collapse]')[1].trim(); | |
| } | |
| return newText; |
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
| // AngularJS v1.2.26 | |
| beforeEach(module(function($provide) { | |
| $provide.decorator('$timeout', function($delegate, $browser) { | |
| var mock = angular.mock.$TimeoutDecorator($delegate, $browser); | |
| // $delegate = jasmine.createSpy().and.callFake($delegate); | |
| $delegate = sinon.spy($delegate); | |
| // Apply the ngMock $timeout functions. | |
| angular.extend($delegate, mock); |
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
| emblem.emblem.load({ | |
| "objects": [ | |
| { | |
| "opacity": 1, | |
| "angle": 24.5418833622, | |
| "flipX": false, | |
| "flipY": false, | |
| "top": 215, | |
| "height": 56.5804731331, | |
| "width": 37.4916727704, |