DEV | PR | QA | UAT | MERGED |
---|---|---|---|---|
- [ ] | - [ ] | - [ ] | - [ ] | - [ ] |
- [ ] | - [ ] | - [ ] | - [ ] | - [ ] |
- [x] | -[ ] | - [] | - [ ] | - [ ] |
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
$.map($('.active-list .list-card-title'),function(val, i){ return $(val).text()}); |
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
require 'rubygems' | |
require 'mechanize' | |
FIRST_NAME = 'FIRST_NAME' | |
LAST_NAME = 'LAST_NAME' | |
PHONE = 'PHONE' | |
EMAIL = '[email protected]' | |
PARTY_SIZE = 2 | |
SCHEDULE_RANGE = { :start_time => '19:00', :end_time => '20:30' } |
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
javascript:(function(){var%20is=document.getElementsByTagName("input");for(i=0;i<is.length;i++){if(typeof(is[i].attributes["type"])!="undefined"&&is[i].attributes["type"].value.toLowerCase()=="hidden"){is[i].setAttribute("type","text");is[i].setAttribute("style","background-color:#000000;color:#FFFFFF");}}})(); |
- http://peopledevelopmentmagazine.com/2016/05/28/leadership-effectiveness/ - All about reading energy
- http://peopledevelopmentmagazine.com/2013/10/10/cornerstone-authentic-leadership - All about listening
- http://peopledevelopmentmagazine.com/2016/04/03/mindset-shifts-better-leader/ - Mindset Shift - Owning feelings
- https://www.entrepreneur.com/article/276800?utm_source=Latest&utm_medium=site&utm_campaign=iScroll - Employee grwoth
- http://www.theexecutivecoachingblog.com/2015/12/01/the-value-of-working-on-your-values/ - how to make decisions with opposing pairs
- http://www.theexecutivecoachingblog.com/2014/10/14/a-matter-of-scope/ - staying on track with differnet levels of vision.
- http://seapointcenter.com/dimensions-of-trust/ - bulilding trust
- http://leadchangegroup.com/stop-trying-to-grow-influence-grow-this-instead/ - influence vs capacity
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
function who_is_out() { | |
var ss=SpreadsheetApp.getActiveSpreadsheet(); | |
var sheet=ss.getSheets()[0]; | |
var selection=sheet.getDataRange(); | |
var columns=selection.getNumColumns(); | |
var rows=selection.getNumRows(); | |
var outages; // keep running list of game outages | |
var outageCell; // the cell to update with outages | |
var personCell; // keeping track of the name for easier readability | |
var currentCell; // cell used for traversal |
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
Kiel: https://open.spotify.com/user/kielcrunk/playlist/6Kv1TUAxTGTzVEb8I54he9?si=t5YayscgS2q1thqJi3QAlg | |
Brandee: https://www.youtube.com/playlist?list=PL_yp0qwUKaI1XTt0ok7A1erTDngW8c61f | |
Lara: https://open.spotify.com/user/larbaq/playlist/5temNWvgdZuS4ypyegRIC6?si=EYI8SKMESGmGf12TONzRPg |
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
// Figure out how many days you need to stake something on rPlanet to recoup it's cost. | |
function recoup(aetherPerWax, stakeValue, itemCostInWax) { | |
var aetherPerDay = (24 * stakeValue); | |
var daysUntilOneWax = (aetherPerWax / aetherPerDay) | |
return (daysUntilOneWax * itemCostInWax) | |
} | |
//usage: recoup(5200,40,20) | |
// excchange rate is 5200 aether per wax, the item gets 40 aether per cycle on rPlanet and the item cost 20 wax. | |
// It'll take ~108 days to recoup what I spent |