One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
#!/bin/bash | |
# instructions mostly from Digital Ocean tutorial | |
# https://www.digitalocean.com/community/tutorials/how-to-install-node-js-on-an-ubuntu-14-04-server | |
# Update linux box | |
sudo apt-get update | |
# get and install the latest distro-stable version of nodejs | |
sudo apt-get install nodejs |
#!/bin/bash | |
### Warning - not a script. Do not run in shell. It won't work. | |
### Sources | |
* [dpkg dependency problems - 1](http://unix.stackexchange.com/questions/109698/dpkg-dependency-problems-prevent-configuration-of-initramfs-tools/109703#109703) | |
* [how can I resolve dpkg dependency](http://askubuntu.com/questions/252777/how-can-i-resolve-dpkg-dependency) | |
* [package dbus is not configured yet](http://askubuntu.com/questions/202321/package-dbus-is-not-configured-yet) | |
* [dpkg - E:Internal error during update/install](http://askubuntu.com/questions/266450/how-to-fix-e-internal-error-no-file-name-for-libc6) | |
* [dpkg error code](http://askubuntu.com/questions/597543/dpkg-error-code) | |
``` |
{ | |
// http://eslint.org/docs/rules/ | |
"ecmaFeatures": { | |
"binaryLiterals": false, // enable binary literals | |
"blockBindings": false, // enable let and const (aka block bindings) | |
"defaultParams": false, // enable default function parameters | |
"forOf": false, // enable for-of loops | |
"generators": false, // enable generators | |
"objectLiteralComputedProperties": false, // enable computed object literal property names |
<script setup> | |
import { ref, reactive } from 'vue'; | |
let imageData = ref([]); | |
// let favorites = reactive([]); | |
let imagesUrl = "https://retoolapi.dev/lfaPzW/dogs"; | |
fetch(imagesUrl) | |
.then(res => res.json()) | |
.then(r => { |