A Pen by Kamal Iqlaas on CodePen.
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
<div class="container"> | |
<div class="row text-center"> | |
<h2>Local Weather App</h2> | |
</div> | |
<div class="row"> | |
<div class="col-md-3 text-center"> | |
<h3>You are in: | |
<div id="address"></div></h3> | |
</div> | |
<div class="col-md-3 text-center"> |
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 webdriver = require('selenium-webdriver'), | |
chrome = require('selenium-webdriver/chrome'), | |
By = webdriver.By, | |
until = webdriver.until, | |
Key = webdriver.Key; | |
var o = new chrome.Options(); | |
// o.addArguments('start-fullscreen'); | |
o.addArguments('disable-infobars'); | |
o.addArguments("disable-notifications"); | |
o.setUserPreferences( { credentials_enable_service: 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
**/ | |
const int c = 261; | |
const int d = 294; | |
const int e = 329; | |
const int f = 349; | |
const int g = 391; | |
const int gS = 415; | |
const int a = 440; | |
const int aS = 455; |
A Pen by Kamal Iqlaas on CodePen.
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
rails server | |
/Users/KamalIqlaas/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/rake-12.3.0/lib/rake/task_manager.rb:59:in `[]': Don't know how to build task 'deploy' (see --tasks) (RuntimeError) | |
from /Users/KamalIqlaas/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/rake-12.3.0/lib/rake/task.rb:362:in `[]' | |
from /Users/KamalIqlaas/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/capistrano-3.10.0/lib/capistrano/dsl/task_enhancements.rb:7:in `before' | |
from /Users/KamalIqlaas/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/bundler/gems/capistrano-gitflow-41dc0f522e0c/lib/capistrano/gitflow/helpers/helper.rb:16:in `gitflow_callbacks' | |
from /Users/KamalIqlaas/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/bundler/gems/capistrano-gitflow-41dc0f522e0c/lib/capistrano/tasks/gitflow.rb:32:in `block in <top (required)>' | |
from /Users/KamalIqlaas/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/rake-12.3.0/lib/rake/task_manager.rb:220:in `in_namespace' | |
from /Users/KamalIqlaas/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/rake |
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
equire File.expand_path('../boot', __FILE__) | |
require 'rails/all' | |
Bundler.require(*Rails.groups) | |
# ENVied.require(*ENV['ENVIED_GROUPS'] || Rails.groups) | |
module Name | |
class Application < Rails::Application | |
config.api_only = false |