The _'s in the file names are representative of a folder path.
The following is the console output of how these files were generated:
C:\Windows\system32>cordova -v
3.5.0-0.2.6
C:\Windows\system32>phonegap -v
3.5.0-0.20.7
The _'s in the file names are representative of a folder path.
The following is the console output of how these files were generated:
C:\Windows\system32>cordova -v
3.5.0-0.2.6
C:\Windows\system32>phonegap -v
3.5.0-0.20.7
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
I've been wanting to do a serious project in Go. One thing holding me back has been a my working environment. As a huge PyCharm user, I was hoping the Go IDE plugin for IntelliJ IDEA would fit my needs. However, it never felt quite right. After a previous experiment a few years ago using Vim, I knew how powerful it could be if I put in the time to make it so. Luckily there are plugins for almost anything you need to do with Go or what you would expect form and IDE. While this is no where near comprehensive, it will get you writing code, building and testing with the power you would expect from Vim.
I'm assuming you're coming with a clean slate. For me this was OSX so I used MacVim. There is nothing in my config files that assumes this is the case.
LD_PRELOAD=/usr/local/Cellar/jemalloc/3.6.0/lib/libjemalloc.dylib unicorn -c config/unicorn.rb -E production -p 3000
http://samsaffron.com/archive/2014/04/08/ruby-2-1-garbage-collection-ready-for-production
LD_PRELOAD=/home/sam/Source/jemalloc-3.5.0/lib/libjemalloc.so RUBY_GC_HEAP_OLDOBJECT_LIMIT_FACTOR=0.9 ruby stress.rb
| #!/bin/bash | |
| # Check out the blog post at: | |
| # | |
| # http://www.philipotoole.com/influxdb-and-grafana-howto | |
| # | |
| # for full details on how to use this script. | |
| AWS_EC2_HOSTNAME_URL=http://169.254.169.254/latest/meta-data/public-hostname | |
| INFLUXDB_DATABASE=test1 |
| require 'nokogiri' | |
| namespace :ember_cli_rails do | |
| desc "compile ember and update application.html.erb with ENV vars" | |
| task :build => [:ember, :update_env] do | |
| end | |
| desc 'Build ember app and copies css and js files to rails' |
I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!
\
The result: [http://xkcd.reknet.ca][1]
After seeing a nice [HTML/JS version][2] of [xkcd #1340][3] and a comment wondering if the same was possible for the world clock in [xkcd #1335][4] I decided to try my hand at it. The original is loaded from a set of static images, one for every 15 minutes, and refreshed via javascript. Let's see if I can do something similar dynamically.