Note: everything here is pretty specific to my usage/accounts and not written for public use... You'll probably have to tweak a bunch of stuff.
$ bean-extract config.py ~/Downloads # the csvs should be in hereNote: everything here is pretty specific to my usage/accounts and not written for public use... You'll probably have to tweak a bunch of stuff.
$ bean-extract config.py ~/Downloads # the csvs should be in hereBelow is the list of modern JS frameworks and almost frameworks – React, Vue, Angular, Ember and others.
All files were downloaded from https://cdnjs.com and named accordingly.
Output from ls command is stripped out (irrelevant stuff)
$ ls -lhS
566K Jan 4 22:03 angular2.min.js
| /* | |
| Based on: | |
| 1. http://stephen.io/mediaqueries | |
| 2. https://css-tricks.com/snippets/css/media-queries-for-standard-devices/ | |
| */ | |
| /* iPhone X in portrait & landscape */ | |
| @media only screen | |
| and (min-device-width : 375px) | |
| and (max-device-width : 812px) |
| { | |
| "minimum-stability":"dev", | |
| "require": { | |
| "magento/ce": "1.9.1.0", | |
| "aoepeople/composer-installers": "*", | |
| "magento-hackathon/indexer-stats":"*", | |
| "firegento/magesetup":"*", | |
| "firegento/pdf":"*", |
| <?php | |
| /** | |
| * Cleanup images from Magento | |
| */ | |
| require 'app/Mage.php'; | |
| if (!Mage::isInstalled()) { | |
| echo "Application is not installed yet, please complete install wizard first."; | |
| exit; |
| <?php | |
| require_once 'abstract.php'; | |
| class Mage_Shell_CheckImages extends Mage_Shell_Abstract | |
| { | |
| const CATALOG_PRODUCT = '/catalog/product'; | |
| const CACHE = '/cache/'; | |
| protected function _glob_recursive($pattern, $flags = 0) |
| @echo off | |
| REM Copyright (C) 2013 | |
| REM Shaleen Jain | |
| REM shalzz@outlook.com | |
| REM | |
| REM Batch file for creating Wifi Hotspot | |
| if _%1_==_payload_ goto :payload | |
| :getadmin | |
| echo %~nx0: elevating self |
| Video on this Gist: https://www.youtube.com/watch?v=zvpLDuRY4ss&feature=c4-overview&list=UUj8_147vA3FQ1quI_CjciIQ | |
| #Initialize a bare repo on the webserver. This would preferably be outside of your public website dir but if you are on a shared host you may not have that option. I like to make a folder just outside of the live folder called git. So for me it would look like this… | |
| $ cd /var/www | |
| $ mkdir git && cd git | |
| $ git init –-bare | |
| #Now you need to create a post-receive hook that will check out the latest tree from the Git repo you just setup into the /var/www/html folder where you want your website to be. You can make this whatever folder you want your code to end up in. | |
| #This will create a file called post-receive in the hooks dir of the git repo. |
| var _scripts = [ | |
| '/vendor/javascripts/jquery.js', | |
| '/vendor/javascripts/moment.js', | |
| '/vendor/javascripts/mixpanel.js', | |
| '/javascripts/main.js' | |
| ]; | |
| (function (scripts) { | |
| 'use strict'; | |
| function downloadJSAtOnload() { |
| <html> | |
| <head> | |
| <title>Google Maps Multiple Markers</title> | |
| <script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script> | |
| </head> | |
| <body> | |
| <div id="map" style="height: 400px; width: 500px;"> | |
| </div> | |
| <script type="text/javascript"> |