This is a curated list of iOS (Swift & ObjC) frameworks which are inspired by React and Elm.
- ReactSwift by @ColinEberhardt
- https://github.com/ColinEberhardt/ReactSwift
This is a curated list of iOS (Swift & ObjC) frameworks which are inspired by React and Elm.
defmodule App.ChangesetView do | |
use App, :view | |
@doc """ | |
Traverses and translates changeset errors. | |
See `Ecto.Changeset.traverse_errors/2` | |
""" | |
def translate_errors(changeset) do | |
Ecto.Changeset.traverse_errors(changeset, &translate_error/1) | |
end |
var ic = '090303086521'; | |
if(ic.match(/^(\d{2})(\d{2})(\d{2})-?\d{2}-?\d{4}$/)) { | |
var year = RegExp.$1; | |
var month = RegExp.$2; | |
var day = RegExp.$3; | |
console.log(year, month, day); | |
var now = new Date().getFullYear().toString(); |
These are the Kickstarter Engineering and Data role definitions for both teams.
# iOS | |
app_identifier "com.myapp.app" # The bundle identifier of your app | |
apple_id "me@gmail.com" # Your Apple email address | |
team_id "1234ABCD" # Developer Portal Team ID | |
# Android | |
json_key_file "./google-play-api-secret.json" # Path to the json secret file - Follow https://github.com/fastlane/supply#setup to get one | |
package_name "com.myapp.app" # Your Android app package |
# 0 is too far from ` ;) | |
set -g base-index 1 | |
# Automatically set window title | |
set-window-option -g automatic-rename on | |
set-option -g set-titles on | |
#set -g default-terminal screen-256color | |
set -g status-keys vi | |
set -g history-limit 10000 |
import UIKit | |
// Usage: Subclass your UIView from NibLoadView to automatically load a xib with the same name as your class | |
protocol NibDefinable { | |
var nibName: String { get } | |
} | |
@IBDesignable | |
class NibLoadingView: UIView, NibDefinable { |
<!-- Essential META Tags --> | |
<meta property="og:title" content="European Travel Destinations"> | |
<meta property="og:description" content="Offering tour packages for individuals or groups."> | |
<meta property="og:image" content="http://euro-travel-example.com/thumbnail.jpg"> | |
<meta property="og:url" content="http://euro-travel-example.com/index.htm"> | |
<meta name="twitter:card" content="summary_large_image"> | |
<!-- Non-Essential, But Recommended --> | |
<meta name="og:site_name" content="European Travel, Inc."> |