Skip to content

Instantly share code, notes, and snippets.

View leonsp's full-sized avatar

Leons Petrazickis leonsp

View GitHub Profile
@leonsp
leonsp / Tutorial - Spark in R.ipynb
Created November 5, 2018 17:06
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

Keybase proof

I hereby claim:

  • I am leonsp on github.
  • I am leonsp (https://keybase.io/leonsp) on keybase.
  • I have a public key ASASHrDzu0oSxCBzOh9WXXyopfQMgyivTdnzIwVOccAszgo

To claim this, I am signing this object:

Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@leonsp
leonsp / gist:7759253
Created December 2, 2013 21:20
Get a list of all available price ids in Softlayer using Ruby
require 'softlayer_api'
$SL_API_USERNAME = "foo"
$SL_API_KEY = "foo"
as = SoftLayer::Service.new("SoftLayer_Account")
packages = as.getActivePackages
puts packages.to_s
@leonsp
leonsp / gist:7759239
Created December 2, 2013 21:19
Get list of all available package ids on Softlayer using Ruby
require 'softlayer_api'
$SL_API_USERNAME = "foo"
$SL_API_KEY = "foo"
as = SoftLayer::Service.new("SoftLayer_Account")
packages = as.getActivePackages
puts packages.to_s