Last update: 30-01-2024
Last view: 01-05-2025
Go to your work folder, mine is located at:
F:/Work/EnterpriseName/
And then create a .gitconfig-work with the following data:
| import {Meta, moduleMetadata, StoryObj} from '@storybook/angular'; | |
| import {$ComponentName$Component} from './$componentName$.component'; | |
| const meta: Meta<$ComponentName$Component> = { | |
| title: '$StoryName$', | |
| component: $ComponentName$Component, | |
| }; | |
| export default meta; | |
| type Story = StoryObj<$ComponentName$Component>; |
In general, you will learn some markdown tricks combined with standard HTML tags. In more details what you will learn:
| #!/bin/sh | |
| # Install Docker CE on Lubuntu 17.04 | |
| # Run this script with sudo privileges `sudo docker-install-lubuntu-17.04.sh` | |
| apt-get install -y apt-transport-https ca-certificates curl software-properties-common | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
| add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu zesty stable" | |
| apt-get update | |
| apt-get install -y docker-ce |
| /* | |
| In JavaScript, objects can be used to serve various purposes. | |
| To maximise our usage of the type system, we should assign different types to our objects depending | |
| on the desired purpose. | |
| In this blog post I will clarify two common purposes for objects known as records and dictionaries | |
| (aka maps), and how they can both be used with regards to the type system. |