Skip to content

Instantly share code, notes, and snippets.

View mikew's full-sized avatar

Mike Wyatt mikew

  • 709scene
  • Halifax, Nova Scotia
  • 10:24 (UTC -04:00)
View GitHub Profile
@carlessanagustin
carlessanagustin / win2ix.md
Last active October 20, 2024 13:58
Windows and Unix command line equivalents
Windows command Unix command Notes
set env Set on Windows prints a list of all environment variables. For individual environment variables, set is the same as echo $ on Unix.
set Path export $PATH Print the value of the environment variable using set in Windows.
set PROJ -- result: PROJ=c:\project
echo %PROJ% echo $PROJ result: c:\project

|

@poteto
poteto / _media_queries.sass
Created October 22, 2012 13:54
Sass media queries
// Standard device screen widths
$iphone-portrait: 320px
$iphone-landscape: 480px
$ipad-portrait: 767px
$ipad-landscape: 980px
$desktop: 1224px
$desktop-large: 1824px
// General device targeting
// Use: Only use if you want the style to apply to many devices