Skip to content

Instantly share code, notes, and snippets.

View tibinthomas9's full-sized avatar
💭
study break

Tibin Thomas tibinthomas9

💭
study break
View GitHub Profile
@nhudinhtuan
nhudinhtuan / cheat_sheet.md
Last active August 8, 2024 21:59
15 days cheat sheet for interviews
@lattner
lattner / TaskConcurrencyManifesto.md
Last active September 23, 2024 18:52
Swift Concurrency Manifesto
@jhwheeler
jhwheeler / bigONotation.js
Last active August 8, 2024 01:55
Big O Notation Exercises
// 1. Even or odd
function isEven(value){
if (value % 2 == 0){
return true;
}
else
return false;
}
@jkereako
jkereako / ios-developer-reading-list.md
Last active January 15, 2024 14:23
This is a list of documents I have read and plan to read. Speaking from experience, if you take the time to pour over these documents and take notes on topics of interest, you will greatly improve your skill.

iOS developer reading list

The best way to learn and master iOS development is to read the official documentation. It can be boring but you can trust its accuracy and the information will be presented without opinion.

Read documents in order where indicated.

Topics

@floriankugler
floriankugler / gist:6870499
Last active September 29, 2023 15:56
Mapping of NSURLConnection to NSURLSession delegate methods. Created by Mattt Thompson.
NSURLConnection | NSURLSession
------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------
NSURLConnectionDelegate connectionShouldUseCredentialStorage: |
------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------
NSURLConnectionDelegate connection:willSendRequestForAuthenticationChallenge: | NSURLSessionDelegate URLSession:didReceiveChallenge:completionHandler:
| N