Why:
This change addresses the need by:
| window.breakpoints = { | |
| xs: { min: 0, max: 480 }, | |
| sm: { min: 481, max: 768 }, | |
| md: { min: 769, max: 992 }, | |
| lg: { min: 993, max: 10000 }, | |
| is: function(size) { | |
| return ( | |
| window.innerWidth >= breakpoints[size].min && | |
| window.innerWidth <= breakpoints[size].max |
| def greetings | |
| now = time = Time.now | |
| morning = today.beginning_of_day | |
| noon = today.noon | |
| evening = today.change( hour: 17 ) | |
| night = today.change( hour: 20 ) | |
| tomorrow = today.tomorrow | |
| if (morning..noon).cover? now |
| // https://github.com/twbs/bootstrap-sass/blob/master/assets/stylesheets/bootstrap/_variables.scss | |
| // | |
| //== Media queries breakpoints | |
| // | |
| //## Define the breakpoints at which your layout will change, adapting to different screen sizes. | |
| // Extra small screen / phone | |
| //** Deprecated `$screen-xs` as of v3.0.1 | |
| $screen-xs: 480px !default; | |
| //** Deprecated `$screen-xs-min` as of v3.2.0 |
| require 'net/http' | |
| require 'uri' | |
| uri = URI.parse("https://api.keen.io/3.0/organizations/ORG_ID/projects") | |
| request = Net::HTTP::Post.new(uri) | |
| request.content_type = "application/json" | |
| request["Authorization"] = "ORGANIZATION_KEY" | |
| request.body = "{ | |
| \"name\": \"My First Project\", | |
| \"users\": [ |
Why:
This change addresses the need by:
| curl get.pow.cx/uninstall.sh | sh |
| Type this in your terminal to find out the PID of the process that's using the 3000 port: | |
| $ lsof -wni tcp:3000 | |
| Then, use the number in the PID column to kill the process: | |
| $ kill -9 PID |
| SELECT * | |
| FROM TABLE_NAME | |
| INTO OUTFILE '/tmp/filename.csv' | |
| FIELDS TERMINATED BY ',' | |
| ENCLOSED BY '"' | |
| LINES TERMINATED BY ','; |
| <?php | |
| if(in_array('mutualfund', $parts)) | |
| { | |
| if(($handle = fopen(dirname(__FILE__). "../../shared_csv/top_mutual_funds.csv", "r")) !== FALSE){ | |
| while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) { | |
| echo "<pre>".print_r($data)." <br/></pre>"; | |
| } | |
| fclose($handle); | |
| } | |
| else{ |