Jan 10Member-onlyNetwork Link Conditioner 💡Did you know it’s now accessible directly inside Xcode 14? 😬IOS1 min readIOS1 min read
Dec 8, 2022Member-onlyObject Oriented Concept in real lifeOops Concepts2 min readOops Concepts2 min read
Dec 7, 2022Member-onlyTypes of VPNI know we are using VPN alot for different purposes and here is the types of it.VPN1 min readVPN1 min read
Sep 20, 2022Member-onlySmart Contract in Solidity (Blockchain)When we talk about Blockchain how can we forgot smart contract. Let’s start with the smart contracts creation by using solidity.Blockchain2 min readBlockchain2 min read
May 11, 2022Member-onlyHow to determine the current iPhone/device model (swift)let modelName = UIDevice.current.modelName Simply just extension in the project and you can use it import UIKit public extension UIDevice { /// pares the deveice name as the standard name var modelName: String { #if targetEnvironment(simulator)…Swift2 min readSwift2 min read
May 11, 2022Member-onlyGetting version and build information with SwiftYou can get that easily by using single variable and make it public. You can use it everywhere you want. (I am getting here User Agent for API header) public let userAgent: String = { if let info = Bundle.main.infoDictionary {…Swift1 min readSwift1 min read
Jun 21, 2021Member-onlyLearn Data Structure in 30 min. easy languageSometimes its hard to understand data structure and implementation of it in development.Here I am gonna teach you how to learn data…Datastrucutre2 min readDatastrucutre2 min read
Jun 12, 2021Member-onlyBar Graph in iOSHey Friends, Today I will show you easiest way to create bar graphs in iOS by using a library created by me.IOS2 min readIOS2 min read
Jun 3, 2021Member-onlyFind permutation in a string (Swift)func permute(strInput:String,l:Int,r:Int){ var inputCharacter = Array(strInput) if ( l==r){ print(strInput) }else{ for var i in l..<r{ // Swapping done inputCharacter.swapAt(l, i); // Recursion called permute(strInput: String(inputCharacter), l: l+1, r: r); …Swift1 min readSwift1 min read
May 26, 2021Member-onlySearch in a Rotated ArrayGiven a sorted and rotated array A of N distinct elements which is rotated at some point, and given an element key. The task is to find the index of the given element key in the array A. Example 1: Input: N = 9 A[] = {5, 6, 7, 8, 9, 10…Coding Interviews1 min readCoding Interviews1 min read