Skip to content

Instantly share code, notes, and snippets.

View unnamedd's full-sized avatar
🇺🇦
#StandWithUkraine

Thiago Holanda unnamedd

🇺🇦
#StandWithUkraine
View GitHub Profile
@unnamedd
unnamedd / CreditCard.swift
Last active August 30, 2016 06:44 — forked from cwagdev/CreditCard.swift
Credit Cards represented in Swift
//
// Created by Chris Wagner
// https://gist.github.com/cwagdev/e66d4806c1f63fe9387a
//
// Modified by Thiago Holanda (August/2016)
//
// These modifications was made to support the latest version of Swift
// before the major version (3.0) is released. This code will compile
// without any problem on Swift 2.2.
//
@unnamedd
unnamedd / spaceship-list-apps.rb
Created November 4, 2016 14:12
List Release Versions
require "spaceship"
Spaceship::Tunes.login("<apple-id-account>", "<password>")
bundle_ids = Array.new
bundle_ids.push("br.com.example.app")
bundle_ids.each do |bundle_id|
app = Spaceship::Tunes::Application.find(bundle_id)
app.edit_version.candidate_builds.each do |build|
puts "TestFlight - #{bundle_id} - Train Version: #{build.train_version} - Build: #{build.build_version}"
https://www.graph.cool/
https://graphcms.com/
https://scaphold.io/
http://howtographql.com/
https://graphql-docs.com/
http://graphql.com/
http://graphql.org/
https://launchpad.graphql.com/q1n3qqwrp
https://github.com/graphql/graphiql
https://github.com/unnamedd?page=1&tab=stars&utf8=%E2%9C%93&q=graphql
@unnamedd
unnamedd / FTDI_Basic_Hookup_for_ESP-01.jpg
Created December 19, 2017 00:44 — forked from stonehippo/FTDI_Basic_Hookup_for_ESP-01.jpg
Notes on using the ESP8266 with the Arduino IDE
FTDI_Basic_Hookup_for_ESP-01.jpg
### Keybase proof
I hereby claim:
* I am unnamedd on github.
* I am unnamedd (https://keybase.io/unnamedd) on keybase.
* I have a public key ASAzyQzrzgp9bCWJHLBsH3B3jGIXeSX5ocqP4pBslLV3fQo
To claim this, I am signing this object:
@unnamedd
unnamedd / String.swift
Last active February 21, 2018 17:50
Regular Expression using Swift
import UIKit
extension String {
func regex(_ pattern: String) -> Int {
let results: [Int] = self.regex(pattern)
guard let item = results.first, results.count > 0 else {
return NSNotFound
}
return item
@unnamedd
unnamedd / Playground.swift
Last active February 21, 2018 17:51
Extension UIView to add borders in partnership with @diegoventura and @brunogb
import UIKit
import PlaygroundSupport
extension UIView {
private class UIViewNamed: UIView {
var name: String
var thickness: CGFloat? = nil
required init(frame: CGRect = CGRect.zero, name: String) {
self.name = name
@unnamedd
unnamedd / learn-swift-step-by-step
Last active February 21, 2018 17:51
Step by step to learn Swift, by Lisa Dziuba https://github.com/LisaDziuba // https://twitter.com/LisaDziuba
Lisa Dziuba [10:01]
@artnosenko hi, here is my list, which I used when started learning Swift
1. Apple guides :pray:
https://developer.apple.com/library/content/referencelibrary/GettingStarted/DevelopiOSAppsSwift/index.html#//apple_ref/doc/uid/TP40015214-CH2-SW1
2. Stanford lectures (free!) :
https://itunes.apple.com/in/course/developing-ios-10-apps-swift/id1198467120
3. raywenderlich.com tutorials
@unnamedd
unnamedd / CustomStructToEnum.swift
Last active February 21, 2018 17:51
[Swift] Using different structs into Enum
public struct Type {
var id: Int
var name: String
var description: String
public init(id: Int, name: String? = nil, description: String? = nil) {
self.id = id
self.name = name ?? ""
self.description = description ?? ""
}
@unnamedd
unnamedd / Twitter API with Curl
Created March 30, 2018 17:28 — forked from apolloclark/Twitter API with Curl
Twitter API with Curl
# create an account, create an app
# @see https://apps.twitter.com/
# retrieve the access tokens
# @see https://dev.twitter.com/oauth/reference/post/oauth2/token
# create the file ~/twitter_api
nano ~/twitter_api
Authorization: OAuth oauth_consumer_key="XXXXXX", oauth_nonce="11111111", oauth_signature="XXXXXX", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1450728725", oauth_token="99999-XXXXXX", oauth_version="1.0"