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
| -------------------michael------------------ | |
| 1. Dez Bryant WR DAL 9.3 $ 6900 | |
| 2. Jared Goff QB LAR 16.7 $ 6700 | |
| 3. Carlos Hyde RB SF 11.5 $ 6300 | |
| 4. Evan Engram TE NYG 9.0 $ 6200 | |
| 5. Devonta Freeman RB ATL 12.5 $ 6000 | |
| 6. Sterling Shepard WR NYG 8.3 $ 5500 | |
| 7. Lamar Miller RB HOU 10.7 $ 5200 | |
| 8. Marquise Goodwin WR SF 6.0 $ 3800 | |
| 9. Giants DST NYG 8.2 $ 3200 |
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
| from __future__ import division | |
| from collections import Counter, OrderedDict, defaultdict | |
| from itertools import chain, combinations | |
| from copy import deepcopy | |
| from random import getrandbits, uniform | |
| from pulp import LpProblem, LpMaximize, LpVariable, LpInteger, lpSum | |
| from .exceptions import LineupOptimizerException, LineupOptimizerIncorrectTeamName, LineupOptimizerIncorrectPositionName | |
| from .settings import BaseSettings | |
| from .player import Player | |
| from .lineup import Lineup |
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
| echo 'export NVM_DIR="$HOME/.nvm"' > ~/.bash_profile | |
| echo '[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"' > ~/.bash_profile | |
| . ~/.bash_profile |
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/bash | |
| find . -name "node_modules" -exec rm -rf '{}' + |
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/bash | |
| echo "===============================" | |
| echo "Installing PHP 7" | |
| echo "===============================" | |
| sudo yum install php70 | |
| echo "===============================" | |
| echo "Installing PHP 7 additional commonly used php packages" | |
| echo "===============================" |
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/sh | |
| # Based on instructions found here: http://wiki.razuna.com/display/ecp/FFMpeg+Installation+on+CentOS+and+RedHat#FFMpegInstallationonCentOSandRedHat-InstallX264 | |
| if [ "`/usr/bin/whoami`" != "root" ]; then | |
| echo "You need to execute this script as root." | |
| exit 1 | |
| fi | |
| cat > /etc/yum.repos.d/centos.repo<<EOF |
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
| /*! | |
| * Datepicker for Bootstrap | |
| * | |
| * Copyright 2012 Stefan Petre | |
| * Licensed under the Apache License v2.0 | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| */.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-datetimepicker-widget{top:0;left:0;width:250px;padding:4px;margin-top:1px;z-index:3000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.bootstrap-datetimepicker-widget:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,0.2);position:absolute;top:-7px;left:6px}.bootstrap-datetimepicker-widget:after{content:'';display:inline-block;border-left:6px solid transparent;b |
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
| console.log("%cWelcome to utilidev.com", "color: #fafafa; font-weight: bold; background-color: #1e88e5;text-transform:uppercase;font-size: 50px; padding-left: 20px;padding-right: 20px;font-family: sans-serif;"); |
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
| var gulp = require('gulp'); | |
| var clean = require('gulp-clean'); | |
| var jshint = require('gulp-jshint'); | |
| var concat = require('gulp-concat'); | |
| var uglify = require('gulp-uglify'); | |
| var imagemin = require('gulp-imagemin'); | |
| var bases = { | |
| app: 'app/', |
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 wordpress_defaults () { | |
| cd $SITE_URL | |
| SITES=~/Sites | |
| FULLPATH=$SITES/$SITE_URL | |
| WP_CONTENT=$FULLPATH/wp-content | |
| THEMES_PATH=$WP_CONTENT/themes | |
| PLUGIN_PATH=$WP_CONTENT/plugins | |
| cd $PLUGIN_PATH |