I hereby claim:
- I am madcato on github.
- I am veladan (https://keybase.io/veladan) on keybase.
- I have a public key ASARxRw_Tzj_AqmzAf6NYhaEMLfk3LH0iZl6s-8cNR96Jgo
To claim this, I am signing this object:
// | |
// QRCaptureViewController.swift | |
// ScanQR | |
// | |
// Created by Daniel Vela on 06/08/15. | |
// Copyright (c) 2015 veladan. All rights reserved. | |
// | |
import UIKit | |
import AVFoundation |
I hereby claim:
To claim this, I am signing this object:
require "active_record" | |
namespace :db do | |
db_config = YAML::load(File.open('config/database.yml')) | |
db_config_admin = db_config.merge({'database' => 'postgres', 'schema_search_path' => 'public'}) | |
desc "Create the database" | |
task :create do | |
ActiveRecord::Base.establish_connection(db_config_admin) |
// | |
// InstallManager.swift | |
// OSFramework | |
// | |
// Created by Daniel Vela on 22/01/2018. | |
// Copyright © 2018 Daniel Vela. All rights reserved. | |
// | |
import Foundation |
// | |
// QRCaptureView.swift | |
// QRHelper | |
// | |
// Created by Daniel Vela on 05/12/2017. | |
// Copyright © 2017 veladan. All rights reserved. | |
// | |
// Doc: https://www.appcoda.com/barcode-reader-swift/ | |
import AVFoundation |
// | |
// QRHelperViewController.swift | |
// QRHelper | |
// | |
// Created by Daniel Vela on 05/12/2017. | |
// Copyright © 2017 veladan. All rights reserved. | |
// | |
// Doc: https://www.unicorn-it.de/developing-reusable-views-in-a-swift-framework/ | |
// Doc: https://www.appcoda.com/qr-code-generator-tutorial/ |
/* | |
Copyright (C) 2016 Apple Inc. All Rights Reserved. | |
See LICENSE.txt for this sample’s licensing information | |
Abstract: | |
A struct for accessing generic password keychain items. | |
*/ | |
import Foundation |
class HttpRequest { | |
func post() { | |
} | |
func get() { | |
} | |
} | |
class HttpAPI { | |
var request: HttpRequest |
// | |
// EoloSender.swift | |
// OSFramework | |
// | |
// Created by Daniel Vela on 13/02/17. | |
// Copyright © 2016 Daniel Vela. All rights reserved. | |
// | |
import Foundation |
// | |
// SimplePersistence.swift | |
// OSFramework | |
// | |
// Created by Daniel Vela on 06/02/2017. | |
// Copyright © 2017 Daniel Vela. All rights reserved. | |
// | |
import Foundation |