Me · Software Dev

Uploading

As an iOS app developer, there is no better feeling that uploading your build to TestFlight. You’ve done your part, and now it’s time to get the app into people’s hands to try out for real.

Actually, there is one better feeling: pressing the “release” button and publishing your app to the whole world. But that’s one is scarier, sort of like jumping off a cliff. Hopefully fun cliff diving. πŸ˜΅πŸ˜ƒ

Software Dev

MySQL Vertical Listing

Quick tip…

If you use the MySQL command line, you may get annoyed when you have lots of columns and they wrap, making the data nearly impossible to read.

Image result for MySQL \g

I used to carefully craft my select clause to get just the right data, but this is easier. Just add \G onto the end of the query.

πŸ‘‰ The \G modifier in the MySQL command line client

It lists all the data vertically, so wrapping is not a problem. πŸ€“

Image result for MySQL \g