This file contains 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
STRFTIME(3) BSD Library Functions Manual STRFTIME(3) | |
NAME | |
strftime, strftime_l -- format date and time | |
The conversion specifications are copied to the buffer after expansion as | |
follows: | |
%A is replaced by national representation of the full weekday name. |
This file contains 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
Sub WordCount() | |
Dim Rng As Range, Dn As Range | |
Dim oMax As Double | |
Dim K As Variant | |
Dim Msg As String | |
Dim vWords As Variant | |
Dim myWord As Variant | |
Dim counter As Integer, WordCount As Integer | |
Set Rng = Range(Range("A1"), Range("A" & Rows.Count).End(xlUp)) |
This file contains 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
_ |
This file contains 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
{ | |
"Example Wrapper": { | |
"prefix": "bsmd", | |
"body": [ | |
"<div style=\"padding: 1.5rem; margin: 0; border: 0.2rem solid #F8F9FA;\">", | |
"", | |
"$TM_SELECTED_TEXT", | |
"", | |
"</div>" | |
], |
This file contains 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
Date | Description | Original Description | Amount | Transaction Type | Category | Account Name | Labels | Notes |
---|
This file contains 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
mixin with(val) | |
<!-- ko with: !{val} --> | |
block | |
<!-- /ko --> | |
mixin if(val) | |
<!-- ko if: !{val} --> | |
block | |
<!-- /ko --> |
This file contains 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 INTO IMMEDIATE WINDOW | |
for each sh in worksheets: sh.visible=true: next sh |
This file contains 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
Setup | |
----- | |
git clone <repo> | |
clone the repository specified by <repo>; this is similar to "checkout" in | |
some other version control systems such as Subversion and CVS | |
Add colors to your ~/.gitconfig file: | |
[color] |
This file contains 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
stages: | |
- stage: Build | |
jobs: | |
- job: Build | |
pool: | |
vmImage: 'Ubuntu-16.04' | |
continueOnError: true | |
steps: | |
- script: echo my first build job | |
- stage: Deploy |
This file contains 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
-- Show Last Login(s) | |
last -10 | |
-- Show Successful Logins | |
grep -i login /var/log/system.log | |
-- Show Failed Attempts | |
grep -i authe /var/log/system.log |
NewerOlder