intro to databricks java
intro to db scala
Databricks Python code
Databricks related SQL code
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
SELECT | |
-- Numeric DataTypes | |
CASE WHEN [f].[DataType] IN ('bigint', 'int', 'smallint', 'tinyint', 'bit', 'decimal', 'numeric', 'money', 'smallmoney', 'float', 'real') | |
THEN CASE WHEN [f].[DataType] IN ('decimal', 'numeric') | |
THEN '(' + CAST(f.[Precision] AS VARCHAR(5)) + ',' + CAST(f.[Scale] AS VARCHAR(5)) + ')' | |
WHEN [f].[DataType] IN ('float', 'real') | |
THEN '' | |
--THEN '(' + CAST(f.[Precision] AS VARCHAR(5)) + ')' | |
WHEN [f].[DataType] IN ('bigint', 'int', 'smallint', 'tinyint', 'bit', 'money', 'smallmoney') | |
THEN '' |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>items</key> | |
<array> | |
<dict> | |
<key>assets</key> | |
<array> | |
<dict> |
- Litmus Email Testing
- A Comprehensive Website Planning Guide | Smashing Magazine
- {placekitten}
- Classic Digg-Style Radio Buttons with CSS and jQuery
- Sublime text 2
- How to recreate the new e-bay site scrolling effect | PEPSized
- 8 Useful Responsive CSS Frameworks | Tools
- Pineapple · Web Tutorials and Resources That Don't Suck
- Pixel-fitting by Dustin Curtis
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
# Installl wget (only curl on new mac) with brew | |
brew install wget | |
# Downloading options | |
## wget | |
### wget [OPTION]... [URL]... | |
wget http://www-us.apache.org/dist/tomcat/tomcat-8/v8.5.9/bin/apache-tomcat-8.5.9.tar.gz | |
## curl | |
### curl [options] [URL...] |
Github's Classification of Language per File Extension (loose):
LanguageID | LanguageName | Extension | Type | Color |
---|---|---|---|---|
0 | 1C Enterprise | 0 | Programming | #814CCC |
0 | 1C Enterprise | .bsl | Programming | #814CCC |
0 | 1C Enterprise | .os | Programming | #814CCC |
1 | ABAP | .abap | Programming | #E8274B |
2 | AGS Script | .ags | Programming | #B9D9FF |
2 | AGS Script | .asc | Programming | #B9D9FF |
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
#Installing Nodejs | |
echo "Installing Nodejs" | |
nvm install node | |
nvm use node | |
npm install -g coffee-script | |
npm install -g grunt-cli | |
npm install -g gulp | |
npm install -g bower |
NewerOlder