Enter this in the search box along with your search terms:
Get all gists from the user santisbon.
user:santisbon
Find all gists with a .yml extension.
extension:yml
Find all gists with HTML files.
language:html
Enter this in the search box along with your search terms:
Get all gists from the user santisbon.
user:santisbon
Find all gists with a .yml extension.
extension:yml
Find all gists with HTML files.
language:html
I’m currently working (I’m just at the beginning, and I’m quite slow) on a personal project that will use Keepass files (kdb and kdbx).
I tried to find some documentation about .kdb and .kdbx format, but I didn’t find anything, even in the Keepass official website. I you want to know how these file formats are structured, you must read Keepass’s source code. So I wrote this article that explains how Keepass file format are structured, maybe it will help someone.
| . { Invoke-WebRequest -UseBasicParsing http://boxstarter.org/bootstrapper.ps1 } | Invoke-Expression | |
| Get-Boxstarter -Force | |
| Install-BoxstarterPackage ` | |
| -PackageName https://gist.githubusercontent.com/jrotello/b7ea60809e5a0afac4a6c3cc7936ca9a/raw/Windows10-Setup.ps1 ` | |
| -Credential (Get-Credential -Message "Please provide login credentials for Boxstarter reboots") |
You may want a linter plugin to lint your code in Vim but you probably don't need it. At least try the built-in way before jumping on the plugin bandwagon.
autocmd FileType <filetype> setlocal makeprg=<external command>
This autocommand tells Vim to use <external command> when invoking :make % in a <filetype> buffer. You can add as many similar lines as needed for other languages.
| alias YOU YOUR NAME <email@somewhere.com> |
| # Copyright (c) Microsoft Corporation. All rights reserved. | |
| # For personal use only. Provided AS IS and WITH ALL FAULTS. | |
| # Set-WmiNamespaceSecurity.ps1 | |
| # Example: Set-WmiNamespaceSecurity root/cimv2 add steve Enable,RemoteAccess | |
| # Taken from https://live.paloaltonetworks.com/t5/Management-Articles/PowerShell-Script-for-setting-WMI-Permissions-for-User-ID/ta-p/53646 | |
| # Modified by Stuart Clarkson (https://github.com/Tras2) | |
| Param ( |
| // Examples for using socat (and filan) | |
| //"$" means normal user, "#" requires privileges, "//" starts a comment | |
| /////////////////////////////////////////////////////////////////////////////// | |
| // similar to netcat | |
| // connect to 10.1.1.1 on port 80 and relay to and from stdio |
| # Upgrade / Update outdated casks installed. | |
| # -------------------------------------------------------------------------------- | |
| # Looks for outdated casks and installs the the latest version. | |
| # User data (like application preferences) is intact. | |
| # Updated one liner (thanks Henrik242) | |
| # -------------------------------------------------------------------------------- | |
| brew upgrade $(brew outdated --cask --greedy --quiet) | |