class Dog: Object {
dynamic var id = ""
dynamic var name = ""
dynamic var tempVariable = ""
All societies under-invest in their infrastructure—in the systems that allow them to thrive. There is hardware infrastructure: clean water, paved roads, sewer systems, airports, broadband; and, Fallows suggested, software infrastructure: organizational and cultural practices such as education, safe driving, good accounting, a widening circle of trust. China, for example, is having an orgy of hard infrastructure construction. It recently built a hundred airports while America built zero. But it is lagging in soft infrastructure such as safe driving and political transition.
Infrastructure always looks unattractive to investors because the benefits: 1) are uncertain; 2) are delayed; and 3) go to others—the public, in the future. And the act of building infrastructure can be highly disruptive in the present. America for the last forty years has starved its infrastructure, but in our history some highly controversial remarkable infrastructure decisions got through, each apparently by a miracle—the Louisian
// These are answers I've found on Stack Overflow or solutions I've created myself | |
// I hope they can help you too | |
import Foundation | |
import AVFoundation | |
import CoreData | |
import AddressBook | |
import AddressBookUI | |
// 1) Create a background with a gradient for your view |
I believe that the definition of definition is reinvention. To not be like your parents. To not be like your friends. To be yourself.
Completely.
When I was young I had no sense of myself. All I was, was a product of all the fear and humiliation I suffered. Fear of my parents. The humiliation of teachers calling me "garbage can" and telling me I'd be mowing lawns for a living. And the very real terror of my fellow students. I was threatened and beaten up for the color of my skin and my size. I was skinny and clumsy, and when others would tease me I didn't run home crying, wondering why.
I knew all too well. I was there to be antagonized. In sports I was laughed at. A spaz. I was pretty good at boxing but only because the rage that filled my every waking moment made me wild and unpredictable. I fought with some strange fury. The other boys thought I was crazy.
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | |
http://www.java2s.com/Tutorial/Java/0490__Security/Createsa1024bitRSAkeypairandstoresittothefilesystemastwofiles.htm | |
http://www.javamex.com/tutorials/cryptography/rsa_encryption.shtml | |
https://stackoverflow.com/questions/1709441/generate-rsa-key-pair-and-encode-private-as-string | |
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | |
import android.app.Service; | |
import android.content.Intent; |
import java.security.SecureRandom; | |
import java.security.NoSuchAlgorithmException; | |
import javax.crypto.Cipher; | |
import javax.crypto.KeyGenerator; | |
import javax.crypto.SecretKey; | |
import javax.crypto.spec.SecretKeySpec; | |
import org.spongycastle.crypto.engines.AESFastEngine; | |
import org.spongycastle.crypto.modes.CBCBlockCipher; |
/* | |
* Copyright 2013 bits of proof zrt. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
import java.text.ParseException; | |
import java.text.ParsePosition; | |
import java.text.SimpleDateFormat; | |
import java.util.Calendar; | |
import java.util.Date; | |
import java.util.TimeZone; | |
public class UTCDate { | |
public static final String Date = "MMM dd, yyyy HH:mm:ss"; |
/*----------------------------------------------------*/ | |
#pragma mark - XCTAsserts | |
/*----------------------------------------------------*/ | |
XCTAssert(expression, format...); | |
XCTAssertTrue(expression, format...); | |
XCTAssertFalse(expression, format...); | |
XCTAssertEqual(expression1, expression2, format...); | |
XCTAssertNotEqual(expression1, expression2, format...); | |
XCTAssertNil(expression, format...); |