create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| # disable auto rotation | |
| adb shell content insert --uri content://settings/system --bind name:s:accelerometer_rotation --bind value:i:0 | |
| # force landscape | |
| adb shell content insert --uri content://settings/system --bind name:s:user_rotation --bind value:i:1 | |
| # back to portrait | |
| adb shell content insert --uri content://settings/system --bind name:s:user_rotation --bind value:i:0 | |
| # upside down |
The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.
The correct way of creating a private frok by duplicating the repo is documented here.
For this assignment the commands are:
git clone --bare git@github.com:usi-systems/easytrace.git
| version: '3' | |
| services: | |
| db: | |
| image: timescale/timescaledb:latest-pg10 | |
| ports: | |
| - "5432:5432" | |
| environment: | |
| POSTGRES_DB: devices_small | |
| POSTGRES_USER: app_user | |
| pgrest: |
| ######################################## | |
| # 1. Build nodejs frontend | |
| ######################################## | |
| FROM node:10.9-alpine as build-node | |
| # prepare build dir | |
| RUN mkdir -p /app/assets | |
| WORKDIR /app | |
| # set build ENV |
| # This file contains the configuration for Credo and you are probably reading | |
| # this after creating it with `mix credo.gen.config`. | |
| # | |
| # If you find anything wrong or unclear in this file, please report an | |
| # issue on GitHub: https://github.com/rrrene/credo/issues | |
| # | |
| %{ | |
| # | |
| # You can have as many configs as you like in the `configs:` field. | |
| configs: [ |
| ╔══════════╦═══════════════════╦══════════════════════════════════════════════════════════════════════════╦════════════════════════╦════════════════════════════════════╦════════════════════════╗ | |
| ║ Operator ║ Tipe Data Operand ║ Deskripsi ║ Contoh Data ║ Contoh penggunaan Operator ║ Hasil ║ | |
| ╠══════════╬═══════════════════╬══════════════════════════════════════════════════════════════════════════╬════════════════════════╬════════════════════════════════════╬════════════════════════╣ | |
| ║ @> ║ jsonb ║ Apakah nilai x ada di data JSON? ║ {"a":1, "b":2}' ║ ::jsonb @> '{"b":2}'::jsonb ║ {"a":1, "b":2}' ║ | |
| ║ <@ ║ jsonb ║ Apakah nilai data JSON mengandung nilai x ? ║ {"b":2}' ║ ::jsonb <@ '{"a":1, "b":2}'::jsonb ║ {"b":2}' ║ | |
| ║ ? ║ text ║ Apakah key terat |
| const plugin = require("tailwindcss/plugin"); | |
| module.exports = { | |
| mode: "jit", | |
| purge: { | |
| content: ["./src/**/*.{js,ts,jsx,tsx,mdx,vue}"], | |
| }, | |
| theme: { extend: {} }, | |
| variants: {}, | |
| plugins: [ |