-
The AAIF provides a neutral, open foundation to ensure this critical capability evolves transparently, collaboratively, and in ways that advance the adoption of leading open source AI projects
-
A consent driven live stream of indie music videos and animation from artists across the Fediverse. See Now Playing info at https://mastodon.social/@tibtvnowplayingbot. Fediwall at https://shorturl.at/CrWD3 | Submit your videos at https://theindiebeat.fm/the-indie-beat-tv/
#The power of z
Do you spend lots of time doing things like this?
cd this/is/the/path/that/i/want/so/i/type/it/all/out/to/get/whereiwantWith z, you could just do this:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //"modern Objective-C" syntax | |
| //new enum-macros for better autocompletion, switch statement, more precise warnings, ... | |
| typedef NS_ENUM(NSInteger, MyViewContentMode) { | |
| MyViewContentModeLeft, | |
| MyViewContentModeRight, | |
| MyViewContentModeTopLeft, | |
| MyViewContentModeTopRight, |
Most of these guidelines are to match Apple's documentation and community-accepted best practices. Some are derived some personal preference. This document aims to set a standard way of doing things so everyone can do things the same way. If there is something you are not particularly fond of, it is encouraged to do it anyway to be consistent with everyone else.
This document is mainly targeted toward iOS development, but definitely applies to Mac as well.
NSString *foo = @"bar";NewerOlder