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 / byobuCommands
Created May 25, 2018 23:07 — forked from jshaw/byobuCommands
Byobu Commands
Byobu Commands
==============
byobu Screen manager
Level 0 Commands (Quick Start)
------------------------------
<F2> Create a new window
@unnamedd
unnamedd / 00-about-search-api-examples.md
Created April 19, 2018 14:29 — forked from jasonrudolph/00-about-search-api-examples.md
5 entertaining things you can find with the GitHub Search API
@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"
@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 / 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 / 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 / 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
### 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 / 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
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