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
| var xhr = new XMLHttpRequest(); | |
| xhr.open('GET', url, true); | |
| xhr.responseType = 'blob'; | |
| xhr.onload = function(e) { | |
| if (this.status == 200) { | |
| // Return the blob and set the contentType | |
| // Note: .response instead of .responseText | |
| var _viewBlob = function(data, contentType) { | |
| var file = new Blob([data], { | |
| type: contentType |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <UnleashX> | |
| <Settings> | |
| <MSDashBoard>C:\Xb0xdash.xbe</MSDashBoard> | |
| <Password MaxTries="3"></Password> | |
| <Network Enable="Yes" Type="DHCP"> | |
| <IP>192.168.1.250</IP> | |
| <Subnet>255.255.255.0</Subnet> | |
| <Gateway>192.168.1.254</Gateway> | |
| <DNS1>192.168.1.254</DNS1> |
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
| if (!window.getComputedStyle) { | |
| /** | |
| * @param {(Element|null)} e | |
| * @param {(null|string)=} t | |
| * @return {(CSSStyleDeclaration|null)} | |
| */ | |
| window.getComputedStyle = function(e, t) { | |
| return this.el = e, this.getPropertyValue = function(t) { | |
| /** @type {RegExp} */ | |
| var n = /(\-([a-z]){1})/g; |
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
| /** | |
| * JSS | |
| * Author: Jared Abbott | |
| * Copyright 2015 Jared Abbott | |
| * Distributed under the MIT license | |
| * | |
| * @param {Object} | |
| */ | |
| var _jss = function(jss, combinator) { | |
| var _toString = Function.prototype.call.bind(Object.prototype.toString); |
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
| /*! | |
| * xhrBinary.js | |
| * Author: Jared Abbott | |
| * Copyright 2015 Jared Abbott | |
| * Distributed under the MIT license | |
| */ | |
| var xhrBinary = function(url, fn) { | |
| // RESOURCES | |
| // http://mgran.blogspot.com/2006/08/downloading-binary-streams-with.html |
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
| // Author: Jared Abbott | |
| // Created: December 2015 | |
| // License: MIT | |
| var template = function(tpl, data) { | |
| // Make sure the cache is available | |
| var w = window; | |
| w.tplCache = !w.tplCache ? {} : w.tplCache; | |
| // Prepare and load the template | |
| tpl = ('"' + tpl.replace(/\{\{(.*?)\}\}/g, '"+$1+"') + '"').split(/\'+ | + \'/); |
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
| #!/usr/bin/env bash | |
| SCM_THEME_PROMPT_DIRTY=" ${red}✗" | |
| SCM_THEME_PROMPT_CLEAN=" ${bold_green}✓" | |
| SCM_THEME_PROMPT_PREFIX=" ${green}" | |
| SCM_THEME_PROMPT_SUFFIX="${green}" | |
| GIT_THEME_PROMPT_DIRTY=" ${red}✗" | |
| GIT_THEME_PROMPT_CLEAN=" ${bold_green}✓" | |
| GIT_THEME_PROMPT_PREFIX=" ${green}" |
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
| [debug] | |
| mode=environment | |
| output_map_data_info=0 | |
| show_load_info=0 | |
| show_script_messages=0 | |
| show_tile_num=0 | |
| [preferences] | |
| brightness=1.000000 | |
| combat_difficulty=1 |
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
| # INSTRUCTIONS | |
| # ============== | |
| # IMPORTANT NOTICE: | |
| # “catalyst-test”, from AUR, contains the “latest” AMD/ATI testing/beta drivers, primarily for newer cards. | |
| # Please note that Radeons HD 2 3 4 xxx ARE NOT SUPPORTED | |
| # Reference: https://aur.archlinux.org/packages/catalyst-test/ | |
| # Reference: https://wiki.archlinux.org/index.php/AMD_Catalyst | |
| # Reference: http://www.ramblgyrl.com/2014/11/install-catalyst-drivers-on-arch-linux/ | |
| # ============== |
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
| -- vim: ts=4 sw=4 noet ai cindent syntax=lua | |
| conky.config = { | |
| -- General settings | |
| alignment = 'top_right', | |
| background = true, | |
| border_width = 1, | |
| cpu_avg_samples = 2, | |
| default_color = 'white', | |
| default_outline_color = '#555', |
NewerOlder