Posts

tools for coders and general purpose

Different coding tools and different learning platforms for coding  - General-purpose tools Coding Made easy Coding-tutorials General-purpose tools- snapdrop -  Snapdrop  can share any file from the same source of the internet. Similarsites -   Discover the best websites and explore competitor and related sites with Similarsites.com Peppertype.ai-  This website helps us to create content for blog posts, Instagram reels, YouTube video ideas, and many other things this is a very helpful website for content creators and even it can be used for general purposes also.  peppertype.ai  alternative option is  copy.ai sitelike - Similar Websites Search is a free tool to find websites similar, alternatives or related to a given site. Coding Made easy- Stackshare -  stack share .io website  from which we can know which website (or) which company uses which stack or what technol...

Swift notes and useful resources

 s wift(ios dev..) best iOS development course on Udemy we can declare  constants  using  let  kw. we can declare  variables  using  var  kw. we can declare multiple cons. or varls. on a single using commas, EX==  let kj=20 //constant  var dj=30 //variable  var x=3.4,y=43,z=43.4      Swift assigns each variable and constant a type based on what value it’s given when it’s created. So, when you write code like this Swift can see it holds a string. let str = "Hello, playground" //That will make str a string, so you can’t try to assign it an integer or a boolean later on. This is called type inference: Swift is able to infer the type of something based on how you created it. IMPORTANT➖ If you want you can be explicit about the type of your data rather than relying on Swift’s type inference, like this: var album: String  let year: Int = 1989 let height: Double = 1.78 let TaylorRocks: Bool = true //Notice that boo...