This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"strings": { | |
"About_reward_amount": "About %{reward_amount}", | |
"Add_attachments": "Add attachments…", | |
"All_Projects": "All Projects", | |
"All_category_name_Projects": "All %{category_name} Projects", | |
"All_Art_Projects": "All Art Projects", | |
"All_Comics_Projects": "All Comics Projects", | |
"All_Crafts_Projects": "All Crafts Projects", | |
"All_Dance_Projects": "All Dance Projects", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Error while updating property 'transform' of a view managed by: RCTView | |
updateViewProp | |
ViewManagersPropertyCache.java:88 | |
setProperty | |
ViewManagerPropertyUpdater.java:123 | |
updateProps | |
ViewManagerPropertyUpdater.java:42 | |
updateProperties | |
ViewManager.java:34 | |
updateProperties |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var sign = execFile("openssl", args, { stdio: "pipe", env:{'RANDFILE': Path.join(os.tmpdir(), 'foo')} }, function(error, stdout, stderr) { | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// BetterSwift.swift | |
// Quatierbuch Lappen | |
// | |
// Created by Philip Heinser on 04.05.15. | |
// Copyright (c) 2015 Philip Heinser. All rights reserved. | |
// | |
import Foundation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let fileManager = NSFileManager.defaultManager() | |
let directoryArray = fileManager.URLsForDirectory(.DocumentDirectory, inDomains: .UserDomainMask) | |
let directoryUrl = directoryArray[0] as! NSURL | |
let documentName = "data-store" | |
let url:NSURL = directoryUrl.URLByAppendingPathComponent(documentName) | |
var document = UIManagedDocument(fileURL: url) | |
let fileExists = fileManager.fileExistsAtPath(url.path!) | |
if fileExists { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
iptables -A PREROUTING -t nat -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 8080 |