Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
# Switch xcrun to leverage Xcode 7 | |
# Note: This won't be needed once Xcode 7 is released | |
# and becomes the primary Xcode in use. | |
export DEVELOPER_DIR=/Applications/Xcode-beta.app/Contents/Developer/ | |
# Export Archive | |
xcrun xcodebuild -exportArchive -exportOptionsPlist exportPlist.plist -archivePath /path/to/app.xcarchive -exportPath /path/to/app.ipa |
{ | |
"presets":["es2015"], | |
"plugins": [ | |
"transform-es3-member-expression-literals", | |
"transform-es3-property-literals" | |
] | |
} |
import React from 'react'; | |
import _ from 'lodash'; | |
import { | |
withReducer, | |
withState, | |
} from 'recompose'; | |
class Tag { | |
constructor(tag) { |
import _ from 'lodash'; | |
const wechatScript = '//res.wx.qq.com/open/js/jweixin-1.1.0.js'; | |
export const loadSdk = () => | |
new Promise((resolve) => { | |
require('scriptjs')(wechatScript, () => { | |
resolve(global.wx); | |
}); | |
}); |
var Testcases = require('./viff-testcases'); | |
function size (width) { | |
return function(driver) { | |
return driver.setWindowSize(width, 600 /* any height*/); | |
}; | |
} | |
var testcases = new Testcases({ | |
// seleniumHost: 'http://localhost:4444/wd/hub', | |
browsers: ['firefox'], | |
envHosts: { |
;(function($, undefined) { | |
"use strict" | |
var isTouch = 'ontouchstart' in window; | |
function bindSwipeEvent(o) { | |
var $win = $(window), | |
$el = o.el, | |
startX = 0, | |
touchX, | |
distX = 0, |
<?php | |
/** | |
* @file | |
* Demo module, Basic Ajax form submit (Ajax framework). | |
*/ | |
/** | |
* Implements hook_menu(). | |
*/ |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.