Commands to get commit statistics for a Git repository from the command line -
using git log, git shortlog and friends.
Create a template service file at /etc/systemd/system/[email protected]. The template parameter will correspond to the name
of target host:
[Unit]
Description=Setup a secure tunnel to %I
After=network.target
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
| ; Courtesy of http://superuser.com/a/403191 | |
| ^#c:: | |
| WinGetTitle, windowName, A | |
| CenterWindow(windowTitleVariable) { | |
| WinGetPos,,, Width, Height, %windowTitleVariable% | |
| WinMove, %windowTitleVariable%,, (A_ScreenWidth - Width) / 2, (A_ScreenHeight - Height) / 2 | |
| } |
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
| function file_exists(playlist) | |
| local f=io.open(playlist, "r") | |
| if f~=nil then io.close(f) return true else return false end | |
| end | |
| function entry_complete(playlist) | |
| local f=io.open(playlist, "r") | |
| chars = f:read("*all") | |
| last_char = string.sub(chars, -1) | |
| if last_char == ";" then io.close(f) return true else return false end |
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-Type -TypeDefinition @" | |
| using System; | |
| using System.Runtime.InteropServices; | |
| namespace Utilities { | |
| public static class Display { | |
| private const uint WM_USER = 0x0400; | |
| private const uint WM_MSO = WM_USER + 0x0900; | |
| private const uint WM_MSO_WPARAM_OMFRAMEENABLESHADOW = 0x0075; |
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
| DKIM is DomainKeys Identified Mail and is used in mail servers, such as Postfix or Sendmail to sign e-mails and thus authenticating the sender so that a forgery can be detected. It also reduces the possibility of an e-mail being flagged as spam, but it's not a definite prevention. | |
| A much simpler method is using SPF (Sender Policy Framework) which, in a nutshell, verifies the sender IP address. | |
| According to the internet, using both should result to ????, PROFIT !!!. | |
| SPF does not need a specific configuration. Whitelisted servers are listed in a DNS record, TXT or SPF, and an example record is: | |
| example.com. IN TXT "v=spf1 a mx ~all" |
Saya support Internet Positif untuk memblokir porn, situs judi, dan hal-hal ilegal lainnya. Tapi pemerintah dan ISP sangat konyol karena tidak mengizinkan akses ke Vimeo, Reddit, Imgur, Netflix--yang mana bukanlah situs dengan konten utama ilegal.
Tambahkan list di bawah ke /etc/hosts.
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
| @font-face { | |
| font-family: 'ABeeZee'; | |
| font-style: normal; | |
| font-weight: 400; | |
| src: local('ABeeZee'), local('ABeeZee-Regular'), url(http://themes.googleusercontent.com/static/fonts/abeezee/v1/JYPhMn-3Xw-JGuyB-fEdNA.ttf) format('truetype'); | |
| } | |
| @font-face { | |
| font-family: 'Abel'; | |
| font-style: normal; | |
| font-weight: 400; |
