- Open (or create)
chrome/userContent.cssunder your Firefox profile folder - Append attached CSS content and save file
- Restart Firefox
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
| Set-ItemProperty -Path $defaultFTP -Name ftpServer.security.ssl.serverCertHash -Value 582EF84C1D431738C0A5F75C845CAA03D81E63B6 # Replace my sample thumbprint with the value from your certificate | |
| # Data channel ports are a per server configuration not per site | |
| Set-WebConfigurationProperty -PSPath IIS:\ -Filter system.ftpServer/firewallSupport -Name lowDataChannelPort -Value 5001 | |
| Set-WebConfigurationProperty -PSPath IIS:\ -Filter system.ftpServer/firewallSupport -Name highDataChannelPort -Value 5001 |
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
| /* "<name of block>": [<start of block>, <end of block>] */ | |
| { | |
| "Basic Latin": [0x0000, 0x007F], | |
| "Latin-1 Supplement": [0x0080, 0x00FF], | |
| "Latin Extended-A": [0x0100, 0x017F], | |
| "Latin Extended-B": [0x0180, 0x024F], | |
| "IPA Extensions": [0x0250, 0x02AF], | |
| "Spacing Modifier Letters": [0x02B0, 0x02FF], | |
| "Combining Diacritical Marks": [0x0300, 0x036F], | |
| "Greek and Coptic": [0x0370, 0x03FF], |
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
| [ | |
| { | |
| "$id": "1", | |
| "$type": "SourceTree.Api.Host.Identity.Model.IdentityAccount, | |
| SourceTree.Api.Host.Identity", | |
| "Authenticate": true, | |
| "HostInstance": { | |
| "$id": "2", | |
| "$type": "SourceTree.Host.Atlassianaccount.AtlassianAccountInstance, | |
| SourceTree.Host.AtlassianAccount", |
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
| 'Usage | |
| Set MyBase64Encoder = New CBase64 | |
| MyBase64Encoder.Charset = "utf-8" | |
| Response.Write MyBase64Encoder.EncodeText("MyText With Accented Characters é à Û") | |
| Set MyBase64Encoder = Nothing : MyBase64Encoder = Empty | |
| ' | |
| ' Description: Base64 encode and decode | |
| ' Author: wangye <pcn88 at hotmail dot com> |
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
| '************************ | |
| 'Name: Disable Connection | |
| 'Author: Jeremy England | |
| 'Company: SimplyCoded | |
| 'Date: 10/01/2016 | |
| '************************ | |
| Option Explicit | |
| Dim interface, interfaceName, interfaceTarget, available, verb | |
| 'Pick the Interface Name you want to disable |
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
| // Paste in http://fiddle.tinymce.com/baaaab | |
| // This settings strip all span and font tag, but preserving color and text-decoration | |
| <script type="text/javascript"> | |
| tinyMCE.init({ | |
| // General options | |
| mode : "textareas", | |
| theme : "advanced", | |
| plugins : "autolink,lists,spellchecker,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,imagemanager,filemanager", | |
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 fsDoOverwrite = true // Overwrite file with base64 code | |
| var fsAsASCII = false // Create base64 code file as ASCII file | |
| var adTypeBinary = 1 // Binary file is encoded | |
| function encode(from, to) { | |
| var inputStream = WScript.CreateObject("ADODB.Stream"); | |
| inputStream.Type = adTypeBinary | |
| inputStream.Open(); | |
| inputStream.LoadFromFile(from); | |
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
| Add-PSSnapin VeeamPSSnapin -ErrorAction SilentlyContinue | |
| #connect to your backup server | |
| Connect-VBRServer -Server "YOURBACKUPSERVER" | |
| #get this machine (the data processor) ip address | |
| $targetServer = (Get-NetIPAddress -AddressFamily IPv4 | Select-Object -First 1).IPAddress | |
| $targetServerCreds = Get-VBRCredentials -Name "lab\administrator" | |
| #backup job name |
NewerOlder
