New trick of the day. If you wanna cleanup your local git branches that were already merged, you could use this bash alias:
Props to Nick + Maxime!
Thoughts
New trick of the day. If you wanna cleanup your local git branches that were already merged, you could use this bash alias:
Props to Nick + Maxime!
This is old news, actually. I came across an article posted on January 2014, that talks about a theory… i had just no idea existed, and it blew my mind.
It’s called Orch-OR: the idea? you cannot model consciousness with just a huge neural network. There’s an orchestrated quantum effect that affects synapse.
This theory was proposed by Roger Penrose in the early 90’s, and… cool thing is that, precisely, quantum vibrations inside brain neurons have been proved to exist.
(I know, 2014, i came late to the party!).
Installing Fish:
Displaying the branch name in the prompt:
Place the following script here: ~/.config/fish/config.fish
Reference here (Thanks for sharing the snippet!)
If you need to debug the constraints that produced any view layout, just hit LLVM, and type:
This will help you get the Autolayout Trace. Pick up the troublesome view, find its memory address, and then try:
Note that you should replace 0x12341234 with the memory address of the view you’d like to debug. AxisX = 0, while AxisY = 1.
Props to this extremely useful post.
The latest iOS release (8.0 at the time this was written!) added a new cool feature: autosizing cells. Meaning that we don’t really need to implement tableView:heightForRowAtIndexPath: anymore.
How can we enable this?. Super simple, just add the following snippet:
Now, here’s the deal. iOS 7 still requires tableView:heightForRowAtIndexPath: to be implemented. And if you do implement it, iOS 8 will disregard the Automatic Dimension settings.
Solution?.. import objc/runtime.h, and place this hack in your UITableView’s delegate:
YES. It’s a hack =)