| User | Company | Wallet |
|---|---|---|
| stream, mock, utils | nats, mock, test | errors |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Originall From: Posted 2015-05-29 http://ubwg.net/b/full-list-of-ffmpeg-flags-and-options | |
| This is the complete list that’s outputted by ffmpeg when running ffmpeg -h full. | |
| usage: ffmpeg [options] [[infile options] -i infile]… {[outfile options] outfile}… | |
| Getting help: | |
| -h — print basic options | |
| -h long — print more options | |
| -h full — print all options (including all format and codec specific options, very long) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Flutter CI | |
| # This workflow is triggered on pushes to the repository. | |
| on: | |
| push: | |
| branches: | |
| - master | |
| # on: push # Default will running for every branch. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Kalkulator { | |
| private final Bagi bagi; | |
| private final Kali kali; | |
| private final Kurang kurang; | |
| private final Tambah tambah; | |
| private final Sin sin; | |
| @Inject |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class DaggerSinCosTanActivity extends AppCompatActivity { | |
| @Inject | |
| Kalkulator kalkulator; | |
| @BindView(R.id.textView) | |
| TextView textView; | |
| final String PAGE = this.getClass().getSimpleName(); | |
| @Override |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Kalkulator { | |
| private final Bagi bagi; | |
| private final Kali kali; | |
| private final Kurang kurang; | |
| private final Tambah tambah; | |
| private final Sin sin; | |
| private final Cos cos; | |
| private final Tan tan; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class DaggerActivity extends AppCompatActivity { | |
| @Inject | |
| Kalkulator kalkulator; | |
| @BindView(R.id.textView) | |
| TextView textView; | |
| final String PAGE = this.getClass().getSimpleName(); | |
| @Override |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Kalkulator { | |
| private final Bagi bagi; | |
| private final Kali kali; | |
| private final Kurang kurang; | |
| private final Tambah tambah; | |
| @Inject | |
| public Kalkulator(Bagi bagi, Kali kali, Kurang kurang, Tambah tambah, Sin sin, Cos cos, Tan tan) { | |
| this.bagi = bagi; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class ManualDiActivity extends AppCompatActivity { | |
| Kalkulator kalkulator; | |
| Bagi bagi = new Bagi(); | |
| Kali kali = new Kali(); | |
| Tambah tambah = new Tambah(); | |
| Kurang kurang = new Kurang(); | |
| Sin sin = new Sin(); // --->>>> Cuma nambahin ini doang !!!! Di 101 Tempat | |
| @BindView(R.id.textView) | |
| TextView textView; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Kalkulator { | |
| private final Bagi bagi; | |
| private final Kali kali; | |
| private final Kurang kurang; | |
| private final Tambah tambah; | |
| private final Sin sin; | |
| @Inject |
NewerOlder