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 |
| 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); | |
| }); | |
| }); |
| <?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.