Skip to content

Instantly share code, notes, and snippets.

View n0an's full-sized avatar

Anton Novoselov n0an

View GitHub Profile
@n0an
n0an / libdispatch-efficiency-tips.md
Created January 5, 2022 19:36 — forked from tclementdev/libdispatch-efficiency-tips.md
Making efficient use of the libdispatch (GCD)

libdispatch efficiency tips

The libdispatch is one of the most misused API due to the way it was presented to us when it was introduced and for many years after that, and due to the confusing documentation and API. This page is a compilation of important things to know if you're going to use this library. Many references are available at the end of this document pointing to comments from Apple's very own libdispatch maintainer (Pierre Habouzit).

My take-aways are:

  • You should create very few, long-lived, well-defined queues. These queues should be seen as execution contexts in your program (gui, background work, ...) that benefit from executing in parallel. An important thing to note is that if these queues are all active at once, you will get as many threads running. In most apps, you probably do not need to create more than 3 or 4 queues.

  • Go serial first, and as you find performance bottle necks, measure why, and if concurrency helps, apply with care, always validating under system pressure. Reuse

@n0an
n0an / SwiftConcurrency.md
Created January 5, 2022 13:50 — forked from FWEugene/SwiftConcurrency.md
All about concurrency

Threads

Foundation offers a Thread class, internally based on pthread, that can be used to create new threads and execute closures.

// Detaches a new thread and uses the specified selector as the thread entry point.
Thread.detachNewThreadSelector(selector: Selector>, toTarget: Any, with: Any)

// Subclass
class MyThread: Thread {
@n0an
n0an / events.py
Created October 1, 2020 18:51 — forked from ryanquinlan/events.py
Cisco Meeting Server Events Websocket using Python websocket-client
import websocket
# Get auth token via POST to /api/v1/authTokens
# Use returned token to open a websocket connection to wss://host:port/events/v1
# Token is passed as the URL parameter authToken
try:
self.logger.info("Getting auth token ...")
api_conn = api.ApiConnection(self.address, self.username, self.password, port=self.port)
response = api_conn.doPost("authTokens", {})
@n0an
n0an / introrx.md
Created September 16, 2017 10:04 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@n0an
n0an / KeyChainWrapper.swift
Created January 30, 2017 10:49 — forked from anishparajuli555/KeyChainWrapper.swift
This gist demonstrates how to save authentication token on Keychain
//SAMPLE CODE FROM APPLE
//https://developer.apple.com/library/content/samplecode/GenericKeychain/Listings/README_md.html
enum Key {
//...
//....
enum Headers {
static let Authorization = "Authorization"
static let ContentType = "Content-Type"
@n0an
n0an / ios-questions-interview.md
Created April 25, 2016 10:53 — forked from arturlector/ios-questions-interview.md
Вопросы на собеседование iOS разработчика.

Вопросы на собеседование iOS разработчика (дополненное издание):

General:

  • Что такое полиморфизм?

  • Что такое *инкапсуляция? Что такое *нарушение инкапсуляции?

  • Чем абстрактный класс отличается от интерфейса?

  • Расскажите о паттерне MVC. Чем отличается пассивная модель от активной?