reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f
reg.exe delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f
reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f
reg.exe delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f
| ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev | |
| update_config=1 | |
| country=[WIFI COUNTRY CODE] | |
| network={ | |
| ssid="[NETWORK SSID]" | |
| psk="[NETWORK PASSWORD]" | |
| } |
| # Inserts a blank line between shell prompts | |
| add_newline = true | |
| # Replace the "❯" symbol in the prompt with "➜" | |
| [character] # The name of the module we are configuring is "character" | |
| success_symbol = "[➜](bold green)" # The "success_symbol" segment is being set to "➜" with the color "bold green" | |
| # Disable the package module, hiding it from the prompt completely | |
| [package] | |
| disabled = false |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title></title> | |
| </head> | |
| <body> | |
| <button type="" class="modal_btn">Show Modal</button> | |
| <div class="modal_window"> | |
| <h1>Hello world</h1> | |
| <button class="close_button">Close</button> |
| /*-- PLUGIN --*/ | |
| /* | |
| * | |
| * Placeholder.js 1.1 | |
| * Creates placeholder on inputs/textareas for browsers that don't support it (well, IE...) | |
| * | |
| * @ Created by Guillaume Gaubert | |
| * @ http://widgetulous.com/placeholderjs/ | |
| * @ © 2011 Guillaume Gaubert | |
| * |
| var count = 8; | |
| var colors = ["#FFA722","#22D3FF","#0AB418","#854BFF","#FF2663","#FF0D4C","#FFA722","#FF0D4C"]; | |
| for (var i = 0; i < count; i++){ | |
| var rand = Math.floor(Math.random()*colors.length); | |
| $('#skill' + i).css("background-color", colors[rand]); | |
| } | |
| window.setInterval( function () { | |
| var hue = 'rgb(' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ')'; |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="robots" content="index, follow" /> | |
| <meta name="description" content="" /> | |
| <meta name="keywords" content="" /> | |
| <meta name="author" content="" /> | |
| <title></title> | |
| <!-- iPhone Icon --> |
| /* http://meyerweb.com/eric/tools/css/reset/ | |
| v2.0 | 20110126 | |
| License: none (public domain) | |
| */ | |
| html, body, div, span, applet, object, iframe, | |
| h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
| a, abbr, acronym, address, big, cite, code, | |
| del, dfn, em, img, ins, kbd, q, s, samp, | |
| small, strike, strong, sub, sup, tt, var, |