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
| /** | |
| * Simple localStorage with Cookie Fallback | |
| * | |
| * USAGE: | |
| * ---------------------------------------- | |
| * Set New / Modify: | |
| * store('my_key', 'some_value'); | |
| * | |
| * Retrieve: | |
| * store('my_key'); |
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
| // Extend Backbone Classes with a 'super' function to execute a method of an instance's superclass | |
| _.each(['Collection', 'Model', 'View', 'Router'], function(className) { | |
| Backbone[className].prototype.super = function(funcName) { | |
| var parentPrototype = this.constructor.__super__; | |
| if (parentPrototype && typeof parentPrototype[funcName] === 'function') { | |
| return this.constructor.__super__[funcName].apply(this, _.rest(arguments)); | |
| } | |
| }; | |
| }); |
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 toArray(args) { | |
| return [].slice.call(args); | |
| } | |
| function autocurry(fn) { | |
| var len = fn.length; | |
| var args = []; | |
| return function next() { | |
| args = args.concat(toArray(arguments)); | |
| return (args.length >= len) ? |
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
| "192.168.1.1".split('.').reverse.map(_.toLong).zipWithIndex.map(t => (t._1 << (t._2 * 8L))).reduce(_ | _) |
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
| define(["util/baz"], function(Baz) { | |
| return { baz: new Baz() }; | |
| }); |
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
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
| <meta name="viewport" content="width=device-width"> | |
| <link rel="stylesheet" href="css/main.css"> | |
| <title></title> |
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
| RewriteEngine on | |
| RewriteCond $1 !^(index\.php|(.*)\.(gif|jpe?g|png|js|css|ico)) | |
| RewriteRule ^(.*)$ /index.php/$1 [L] |
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
| 1. laravel.com/docs | |
| 2. laravel.io | |
| 3. laravel-tricks.com | |
| 4. laracasts.com | |
| 5. laravel-recipes.com | |
| 6. cheats.jesse-obrien.ca | |
| 7. laravelweekly.com | |
| 8. http://fideloper.com | |
| 9. http://jasonlewis.me | |
| 10. http://culttt.com/search/?q=laravel |
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
| $(document).mouseup(function (e) | |
| { | |
| var container = $("YOUR CONTAINER SELECTOR"); | |
| if (!container.is(e.target) // if the target of the click isn't the container... | |
| && container.has(e.target).length === 0) // ... nor a descendant of the container | |
| { | |
| container.hide(); | |
| } | |
| }); |
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 time | |
| from selenium import webdriver | |
| from selenium.webdriver.common.keys import Keys | |
| driver= webdriver.Firefox() | |
| #driver= webdriver.Chrome("E:\QA\Resource\WEBDRIVER\chromedriverserver\chromedriver.exe") | |
| driver.get("http://mail.google.com") |
OlderNewer