This file contains hidden or 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
#!/usr/bin/env python3 | |
from __future__ import print_function | |
import sys | |
import twitter | |
from keys import ACCESS_TOKEN_KEY, ACCESS_TOKEN_SECRET, CONSUMER_KEY, CONSUMER_SECRET | |
api = twitter.Api( | |
CONSUMER_KEY, CONSUMER_SECRET, ACCESS_TOKEN_KEY, ACCESS_TOKEN_SECRET | |
) |
This file contains hidden or 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
$ grep -v "^#" /etc/systemd/logind.conf | |
[Login] | |
HandleHibernateKey=suspend | |
HandleLidSwitch=suspend | |
HandleLidSwitchExternalPower=suspend | |
HandleLidSwitchDocked=suspend | |
LidSwitchIgnoreInhibited=yes | |
$ grep -v "^#" /etc/systemd/sleep.conf | |
[Sleep] |
This file contains hidden or 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
{ | |
"basics": { | |
"name": "William J. Cuthrell (Jay)", | |
"label": "Corporate Free Safety", | |
"summary": | |
"Fractional Executive. It is my mission to delight customers, deliver sustainable sales growth, and provide innovative servant leadership.", | |
"website": "https://jaycuthrell.com", | |
"email": "[email protected]", | |
"location": { | |
"city": "Beaufort, NC", |
This file contains hidden or 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
https://goo.gl/psK2wV | |
https://musiclab.chromeexperiments.com/Song-Maker/song/4973935362048000 |
I hereby claim:
- I am jaycuthrell on github.
- I am jaycuthrell (https://keybase.io/jaycuthrell) on keybase.
- I have a public key whose fingerprint is 4407 D373 7F4D CDFE 90DD 89F4 4462 E55C BE13 D9C6
To claim this, I am signing this object:
This file contains hidden or 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
Gartner: | |
https://www.gartner.com/doc/2867017/-planning-guide-overview-architecting | |
https://www.gartner.com/doc/2929317/framework-evaluating-big-data-initiatives | |
https://www.gartner.com/doc/2773117/security-futures-plan-peak-threat | |
https://www.gartner.com/doc/2691917/big-data-needs-datacentric-security | |
https://www.gartner.com/doc/2621115/big-data-analytics-requires-ethical | |
Books and Training: | |
http://www.amazon.com/Data-Science-Big-Analytics-Discovering/dp/111887613X | |
http://www.kaggle.com/competitions#getting-started |
This file contains hidden or 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
#!/usr/bin/perl | |
# via http://perlmaven.com/count-words-in-text-using-perl | |
# $ cat fruit.txt | |
# apple | |
# pear | |
# banana | |
# pear | |
# pear | |
# banana |
This file contains hidden or 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
<?php | |
// Copyright VMware, Inc. 2009-2010. All Rights Reserved. | |
// example via http://communities.vmware.com/community/beta/vcloudsdkphp | |
// get and power on a virtual machine | |
require_once 'config.php'; // includes all needed libraries and parameters setting | |
$service = VMware_VCloud_SDK_Service::getService(); | |
$service->login ($server, $auth, $httpConfig); | |
$orgRefs = $service->getOrgRefs(); //get references for vCloud organization entities | |
$sdkOrg = $service->createSDKObj($orgRefs[0]); // create an SDK Org object | |
$vdcRefs = $sdkOrg->getVdcRefs(); // get references to vCloud vDC entities |
This file contains hidden or 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
# grab a copy | |
[bradybunch]$ git clone git://github.com/petewarden/geodict.git | |
Initialized empty Git repository in /Users/marsha/Marsha/marsha/geodict/.git/ | |
remote: Counting objects: 21, done. | |
remote: Compressing objects: 100% (20/20), done. | |
remote: Total 21 (delta 4), reused 0 (delta 0) | |
Receiving objects: 100% (21/21), 31.21 MiB | 1.28 MiB/s, done. | |
Resolving deltas: 100% (4/4), done. |