Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| // Import here to bypass non-SSR issues with EUI | |
| @import "~@elastic/eui/src/theme_light.scss"; | 
| // initialize as soon as the DOM is ready | |
| Session.set('CordovaLoaded', false); | |
| Meteor.startup(function() { | |
| console.log('cordova loading'); | |
| // delay loading of cordova until after DOM is ready | |
| // determine WHICH cordova to load | |
| var cordovajspath = '/cordova-2.6.0.js'; | |
| if (navigator.userAgent.match(/(iPad|iPhone|iOS)/) != null) { | |
| cordovajspath = '/cordova-2.6.0-ios.js'; | |
| } else if (navigator.userAgent.match(/(Android)/) != null) { | 
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| #!/bin/bash | |
| mkdir /tmp/curl-ca-bundle | |
| cd /tmp/curl-ca-bundle | |
| wget http://curl.haxx.se/download/curl-7.22.0.tar.bz2 | |
| tar xzf curl-7.22.0.tar.bz2 | |
| cd curl-7.22.0/lib/ | |
| ./mk-ca-bundle.pl | |
| if [ ! -d /usr/share/curl/ ]; then | |
| sudo mkdir -p /usr/share/curl/ | |
| else |