Helpful resources:
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
<!doctype html> | |
<html> | |
<head> | |
<style> | |
.row { | |
display: flex; | |
} | |
.column { |
This guide aims to document useful commands that I commonly see used in Linux and Unix environments to their closest equivalent in Powershell.
Command: wc
System/Type | Min | Max | Notes |
---|---|---|---|
.NET (DateTime) | 1/1/0001 12:00:00 AM | 12/31/9999 11:59:59 PM | |
T-SQL (datetime) | January 1, 1753 | December 31, 9999 | Default value is 1900-01-01 00:00:00 |
Oracle (DATE) | 0001-01-01 | 9999-12-31 | |
Oracle (TIME) | 00:00:00 | 24:00:00 | |
Oracle (TIMESTAMP) | 0001-01-01-00.00.00.000000 | 9999-12-31-23.59.59.999999 | |
ISO 8601 | 1583-01-19T0:00:00Z | 9999-12-31T023:59:59Z |
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
module Main exposing (main) | |
import Html exposing (Html, li, text, ul) | |
import Html.Attributes exposing (style) | |
-- Advent of Code 2017 - Day 1 Part 2 (http://adventofcode.com/2017/day/1) | |
main : Html msg | |
main = | |
ul [] |
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
module Main exposing (main) | |
import Html exposing (Html, li, text, ul) | |
import Html.Attributes exposing (style) | |
-- Advent of Code 2017 - Day 1 (http://adventofcode.com/2017/day/1) | |
-- https://ellie-app.com/hBMTrVXyna1/1 | |
main : Html msg | |
main = |
If you find yourself forced to work in a Windows 7 environment but need or would like access to some Windows 10 features it turns out there is at least one way that I've stumbled accross which has worked for me.
As far as free options that are well supported in Windows 7 Oracle Virtual Box seemed to be the best option I could find. If you go this route make sure to enable virtualization in the BIOS of your system to enable installing a 64-bit guest OS.
Set the default editor (VSCode)
git config --global core.editor "code --wait"
See answer from rexcfnghk on StackOverflow for more details.
Set the default merge/diff tools (P4Merge)
NewerOlder