Install osxfuse
(3.x.x) from https://github.com/osxfuse/osxfuse/releases.
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew update
FROM ubuntu:12.04 | |
MAINTAINER Renzo Meister <[email protected]> | |
# Update Package index | |
RUN apt-get update | |
# Install needed packages | |
RUN apt-get install -y --force-yes --no-install-recommends python-dateutil python-feedparser python-gdata python-ldap \ | |
python-libxslt1 python-lxml python-mako python-openid python-psycopg2 \ | |
python-pybabel python-pychart python-pydot python-pyparsing python-reportlab \ |
Hide Splashscreen in Ionic App |
osxfuse
(3.x.x) from https://github.com/osxfuse/osxfuse/releases.ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew update
:: | |
:: This script installs wormhole (https://github.com/warner/magic-wormhole) and | |
:: its prerequisites. Run this as an administrator. | |
:: | |
:: Install chocolatey. | |
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" | |
:: Install Python 3. | |
choco install -y python |
Function ConvertTo-DataTable { # https://powersnippets.com/convertto-pson/ | |
[CmdletBinding()]Param( # Version 01.00.01, by iRon | |
[Parameter(Position=0, Mandatory=$true, ValueFromPipeline = $true)] [PSObject[]]$Object, [HashTable]$ColumnType = @{} | |
) | |
$TypeCast = @{ | |
Guid = 'Guid', 'String' | |
DateTime = 'DateTime', 'String' | |
DateTimeOffset = 'DateTimeOffset', 'String' | |
Byte = 'Byte', 'Char', 'Int16', 'Int32', 'Int64', 'UInt16', 'UInt32', 'UInt64', 'Decimal', 'Single', 'Double', 'String', 'Boolean' | |
SByte = 'SByte', 'Int16', 'Int32', 'Int64', 'Decimal', 'Single', 'Double', 'String', 'Boolean' |