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
import google.protobuf.descriptor | |
from pyspark.sql.types import ( | |
StructType, | |
StructField, | |
StringType, | |
IntegerType, | |
LongType, | |
DoubleType, | |
FloatType, |
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 Jekyll | |
# Convert org-mode files. | |
require 'org-ruby' | |
class OrgConverter < Converter | |
safe true | |
def setup | |
# No-op | |
end |
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
#!/bin/bash | |
# For installation of puppet by gem for smartos | |
# | |
pkgin -y in ruby21 openssl | |
gem install puppet | |
# gem install deep_merge | |
sudo puppet resource group puppet ensure=present | |
sudo puppet resource user puppet ensure=present gid=puppet shell='/bin/false' |