Skip to content

Instantly share code, notes, and snippets.

View Sharkesm's full-sized avatar
:electron:
Midgard Protector

Sharkes Monken Sharkesm

:electron:
Midgard Protector
View GitHub Profile
@Sharkesm
Sharkesm / gist:b2315b100ee265414ffc8b630d7bee90
Created March 11, 2020 11:13 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@objcMembers class Person: NSObject {
var name: String
var age: Int
init(name: String, age: Int) {
self.name = name
self.age = age
}
}
let personArray = [Person(name: "Amy", age: 9), Person(name: "Lily", age: 10), Person(name: "Sam", age: 12), Person(name: "Eric", age: 18)]

Contributing

When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.

Please note we have a code of conduct, please follow it in all your interactions with the project.

Pull Request Process

  1. Ensure any install or build dependencies are removed before the end of the layer when doing a
@Sharkesm
Sharkesm / Reachability.md
Last active December 10, 2017 06:40
Network Reachability In Swift

Network Reachability In Swift

As for some new Swift programmers, they may had faced this issue before and it's really a headache when you spend hours searching for a better practice online to deploy into your code. Well since it's a major issue for some, i thought of sharing some code pieces that i think would help someone else out there and now lets move on with the coding part not good of a writer though 😅.

Frameworks Needed

@Sharkesm
Sharkesm / TooltipView.swift
Created October 26, 2017 07:02 — forked from simonwuyts/TooltipView.swift
Customizable Tooltips
//
// TooltipView.swift
// Customizable Tooltips
//
// Copyright © 2017 Simon Wuyts
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell

Keybase proof

I hereby claim:

  • I am sharkesm on github.
  • I am sharkesm (https://keybase.io/sharkesm) on keybase.
  • I have a public key whose fingerprint is 0236 F366 2611 CE77 DA50 D9C9 B01B EF72 B8E6 5C2E

To claim this, I am signing this object:

@Sharkesm
Sharkesm / DetailViewController.swift
Created January 25, 2017 18:12 — forked from cmoulton/DetailViewController.swift
Using DZNEmptyDataSet in a UIViewController
//
// DetailViewController.swift
// objcInterop
//
// Created by Christina Moulton on 2015-07-02.
// Copyright (c) 2015 Teak Mobile Inc. All rights reserved.
//
import UIKit
import DZNEmptyDataSet