Code Monkey home page Code Monkey logo

cmd-almanac's Introduction

Command almanac

This is a list of commands I frequently use. Most of them have to do with development for Apple platforms, although not all!

๐Ÿ““ Almanac

[Git] Remove all cached files to ensure there are no files from .gitignore being tracked

git rm --cached -r .

Swiftlint

swiftlint autocorrect

Line count (for Obj-C/Swift/C++ project)

find . "(" -name "*.m" -or -name "*.mm" -or -name "*.cpp" -or -name "*.swift" ")" -print0 | xargs -0 wc -l

Swift version (handy when reporting bugs)

swift -version

Updating cocoapod

pod spec lint {{name}}.podspec
pod trunk push {{name}}.podspec

Number of commits for git repo

git rev-list --all --count

Delete unavailable iOS/watchOS/tvOS simulators

xcrun simctl delete unavailable

Compile .java to .class and inspect bytecode

javac File.java
javap -c File.class

LLDB debugging for tvOS (Swift)

po self.view!.performSelector(Selector("_whyIsThisViewNotFocusable"))

LLDB debugging for tvOS with view address (Obj-C)

po [((UIView *)0x{{address}}) performSelector:@selector(_whyIsThisViewNotFocusable)]

Open Diagnostic Reports folder in Finder

open ~/Library/Logs/DiagnosticReports

cmd-almanac's People

Contributors

louisdh avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.