This guide will help you host an APT repository on Github.
You need to install the following packages.
- reprepro
This dependency for some reason cannot be installed using the package managers (apt, apt-get or aptitude).
Download the .deb file
Try to install it using:
By: Chamin Morikawa (https://www.linkedin.com/pulse/writing-related-work-section-paperthesis-chamin-morikawa/)
For most students, writing about what they did on their own is not hard. But writing about others' work - which is what you have to do in the "State of the Art" or "Related Work" section - is quite hard for them. Here are a few guidelines to make this task a bit easier.
Let's lay down our assumptions before continuing. I assume that you want to write a "Related Work" section for a research paper or a thesis that describes your approach to solve some problem. Let's also assume that there are other publications that attempt to solve the same problem, but the solutions in them are not perfect. Finally, let's assume that your approach has some difference when compared to those by others, and some improvement (faster, more accurate, easier to afford, etc.).
| { | |
| "AED": "United Arab Emirates Dirham", | |
| "AFN": "Afghan Afghani", | |
| "ALL": "Albanian Lek", | |
| "AMD": "Armenian Dram", | |
| "ANG": "Netherlands Antillean Guilder", | |
| "AOA": "Angolan Kwanza", | |
| "ARS": "Argentine Peso", | |
| "AUD": "Australian Dollar", | |
| "AWG": "Aruban Florin", |
| const ServiceBroker = require("moleculer"); | |
| const SafeJSONSerializer = require("./safe-json-serializer.js"); | |
| const broker = new ServiceBroker({ | |
| logger: true, | |
| serializer: new SafeJSONSerializer() | |
| }); |
| // https://davidpiesse.github.io/tailwind-md-colours/ | |
| // | |
| //Notes | |
| // | |
| //All colours are generated from Material Design Docs | |
| //Colours have a base, a set of shades (50-900) accent colours | |
| //In addition a companion set of contrast colours are included for colouring text / icons | |
| // Example usage | |
| // class="w-full bg-red-600 text-red-600-constrast" |
| # update apt cache | |
| sudo apt update | |
| # install composer | |
| curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer | |
| # install nvm | |
| wget -qO- https://cdn.rawgit.com/creationix/nvm/master/install.sh | bash | |
| # run a new terminal to reflect changes |
| <?php // database/migrations/2014_10_12_000000_create_users_table.php | |
| use Illuminate\Database\Schema\Blueprint; | |
| use Illuminate\Database\Migrations\Migration; | |
| class CreateUsersTable extends Migration | |
| { | |
| /** | |
| * Run the migrations. | |
| * |