gantt
dateFormat YYYY-MM-DD
axisFormat %d
title Example
Requirements :a1, 2021-01-11, 4w
Design :a2, after a1, 4w
Development :a3, after a2, 4w
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
| import collections | |
| import profile | |
| nums = [82597,-9243,62390,83030,-97960,-26521,-61011,83390,-38677,12333,75987,46091,83794,19355,-71037,-6242,-28801,324,1202,-90885,-2989,-95597,-34333,35528,5680,89093,-90606,50360,-29393,-27012,53313,65213,99818,-82405,-41661,-3333,-51952,72135,-1523,26377,74685,96992,92263,15929,5467,-99555,-43348,-41689,-60383,-3990,32165,65265,-72973,-58372,12741,-48568,-46596,72419,-1859,34153,62937,81310,-61823,-96770,-54944,8845,-91184,24208,-29078,31495,65258,14198,85395,70506,-40908,56740,-12228,-40072,32429,93001,68445,-73927,25731,-91859,-24150,10093,-60271,-81683,-18126,51055,48189,-6468,25057,81194,-58628,74042,66158,-14452,-49851,-43667,11092,39189,-17025,-79173,13606,83172,92647,-59741,19343,-26644,-57607,82908,-20655,1637,80060,98994,39331,-31274,-61523,91225,-72953,13211,-75116,-98421,-41571,-69074,99587,39345,42151,-2460,98236,15690,-52507,-95803,-48935,-46492,-45606,-79254,-99851,52533,73486,39948,-7240,71815,-585,-96252,90990,-93815,93340,-71848,58733,-14859,-83082,-7579 |
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
| library(tidyverse) | |
| library(gganimate) | |
| NUMPLAYERS = 45 | |
| ROUNDS = 5000 | |
| INITWEALTH = 45 | |
| #initialize the bank | |
| #columns wealths of the NUMPLAYERS players | |
| #rows show wealths of each of the ROUNDS ticks of the clocks |
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
| library(tidyverse) | |
| library(gganimate) | |
| NUMPLAYERS = 45 | |
| ROUNDS = 5000 | |
| INITWEALTH = 45 | |
| #initialize the bank | |
| #columns wealths of the NUMPLAYERS players | |
| #rows show wealths of each of the ROUNDS ticks of the clocks |
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
| #!/bin/python | |
| import urllib | |
| works = 'http://osuosl.org' | |
| broken = 'https://osuosl.org' | |
| urllib.urlopen(works) | |
| print 'HTTP works' |
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
| $ git status | |
| # On branch jldugger/ohai-plugin | |
| # Changes to be committed: | |
| # (use "git reset HEAD <file>..." to unstage) | |
| # | |
| # modified: .kitchen.yml # add recipe to test | |
| # new file: files/default/httpd_modules.rb # actual ohai plugin | |
| # modified: metadata.rb # define ohai dependency | |
| # new file: recipes/ohai_httpd_modules.rb # install ohai plugin | |
| # modified: spec/spec_helper.rb # manage dependency |
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
| Reading List | |
| ------------ | |
| Random Walk on Wall St., *Burton Gordon Malkiel* | |
| Financial Markets, *Robert Shiller* http://oyc.yale.edu/economics/econ-252-11 | |
| Investing Priorities | |
| -------------------- | |
| Invest as much as you can in the highest priority, then apply the balance to |
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
| gitlab'['ldap']['enabled'] = True | |
| gitlab['ldap']['host'] = 'ldap.osuosl.org' | |
| gitlab['ldap']['base'] = 'dc=osuosl,dc=org' | |
| gitlab['ldap']['port'] = 636 | |
| gitlab['ldap']['uid'] = 'uid' | |
| gitlab['ldap']['method'] = 'ssl' | |
| gitlab['ldap']['allow_username_or_email_login']=false |
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
| SELECT DATE(FROM_UNIXTIME(AVG(UNIX_TIMESTAMP(Created)))) | |
| FROM Tickets | |
| WHERE Status NOT IN ('rejected','stalled','deleted','resolved') | |
| AND Queue IN (27); |
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' } |