From Sketch iOS Icon to XCode Asset Catalog

By | Engineering

Open up a new Sketch document with the ‘iOS App Icon’ template. Update your design and then click export in the upper right corner or File > Export… You’ll be exporting that Sketch file into the folder that contains the app icon asset in xcode. To find the path to the Appicon.appiconset you can click on the (>) next to…

Read More

dotnet watch (like nodemon for NodeJS)

By | Engineering

Updated July 1, 2018 With the release of dotnet core 2.1.3, they have built in the following dotnet tools. Watch is one of them. So to get started just create a project or upgrade a project to 2.1.3 and then simply add a ‘watch’ after your dotnet app and before the command. dotnet watch run nodemon is used in NodeJS…

Read More