When making this website, i wanted a simple, reasonable way to make it look good on most displays. Not counting any minimization techniques, the following 58 bytes worked well for me:
main {
max-width: 38rem;
padding: 2rem;
margin: auto;
}| <?php | |
| $event_id = tribe_create_event( [ | |
| 'post_title' => 'My Event', | |
| // see https://docs.theeventscalendar.com/reference/functions/tribe_create_event/ for full arguments | |
| ] ); | |
| $provider = \Tribe__Tickets__Tickets::get_event_ticket_provider(); | |
| $ticket_id = $provider::get_instance()->ticket_add( $event_id, [ |
This is about how to split a GitHub pull request, following a real in-the-wild example.
So it happened that I once wanted to fix a bug (#832) on the shelljs repository.
I forked the repository, cloned it and created a new branch called ln-directory-dest. I fixed the bug, created a pull request, and implemented initial review feedback.
At this point, I had added the commits A, B, C, D, E and [F](https://github.com/Loilo/shelljs/commit/946ab48bf5cf9c8aac03407
| # on os x use brew to get ffmpeg with libfdk_aac | |
| brew install ffmpeg --with-fdk-aac | |
| # convert and use m4a as file extension | |
| find . -name '*.flac' -exec sh -c 'ffmpeg -i "$1" -c:a libfdk_aac -b:a 320k "${1%.flac}.m4a"' _ {} \; |