(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| #!/bin/bash | |
| # Error handling | |
| function OwnError() | |
| { | |
| echo -e "[ `date` ] $(tput setaf 1)$@$(tput sgr0)" | |
| exit $2 | |
| } | |
| # Repository for rethinkdb |
| /* | |
| * The MIT License (MIT) | |
| * | |
| * Copyright (c) 2015 - Nathan Barraille | |
| * | |
| * Permission is hereby granted, free of charge, to any person obtaining a copy | |
| * of this software and associated documentation files (the "Software"), to deal | |
| * in the Software without restriction, including without limitation the rights | |
| * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| * copies of the Software, and to permit persons to whom the Software is |
| import android.os.Parcel; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| import org.mockito.invocation.InvocationOnMock; | |
| import org.mockito.stubbing.Answer; | |
| import static org.mockito.Matchers.anyInt; | |
| import static org.mockito.Matchers.anyLong; | |
| import static org.mockito.Matchers.anyString; | |
| import static org.mockito.Mockito.doAnswer; |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| pm list packages -f |