Emoji | Code | Commit Message |
---|---|---|
🎨 | :art: |
Improving structure / format of the code |
⚡️ | :zap: |
Improving performance |
🔥 | :fire: |
Removing code or files |
🐛 | :bug: |
Fixing a bug |
🚑 | :ambulance: |
Critical hotfix |
✨ | :sparkles: |
Introducing new features |
📝 | :pencil: |
Writing docs |
🚀 | :rocket: |
Deploying stuff |
$ sudo apt update && sudo apt dist-upgrade | |
$ sudo apt install composer php-zip php-mbstring php-xml php-pgsql | |
$ composer global require laravel/installer | |
$ export PATH="$HOME/.composer/vendor/bin:$PATH" | |
$ laravel new blog | |
$ cd blog | |
$ php artisan serve | |
bonus: postgresql |
import Vue from 'vue' | |
import Router from 'vue-router' | |
import store from '../store' | |
Vue.use(Router) | |
const router = new Router({ | |
routes: [ | |
{ | |
path: '/', |
<template> | |
<div>Vue component</div> | |
</template> | |
<script> | |
export default { | |
name: '', | |
components: { | |
}, | |
props: { |
FROM php:7.1-apache | |
COPY server.crt /etc/apache2/ssl/server.crt | |
COPY server.key /etc/apache2/ssl/server.key | |
RUN useradd -u 1000 reportei | |
RUN apt-get update && apt-get install -y \ | |
libfreetype6-dev \ | |
libjpeg62-turbo-dev \ |
import http from './http' | |
const associadoService = { | |
getAll: page => http.get(`/associados?page=${page}`), | |
getById: id => http.get(`/associados/${id}`) | |
} | |
export default associadoService |
If you are using a laptop, you may run into capture issues (black screen). This is because most laptops have more than one graphics adapter. Why do they have more than one graphics adapter? Because one is used for saving power (desktop / windows), and the other is used for performance (gaming). This is done to minimize power usage on the laptop, as laptops are designed to run on batteries.
Because of this fact, it can often cause capture issues. Your laptop may be drawing one image to the power saving GPU, and another to the performance GPU. However, in order for OBS to capture efficiently, OBS itself must be running on the same GPU as that you wish to capture. If OBS is running on adapter A, and an image is being drawn on adapter B, you will get a black screen when trying to capture it.
Solution:
Go to obs executable file, and choose your graphic card
--- | |
home: true | |
heroImage: /hero.png | |
actionText: Get Started → | |
actionLink: /guide/ | |
features: | |
- title: Simplicity First | |
details: Minimal setup with markdown-centered project structure helps you focus on writing. | |
- title: Vue-Powered | |
details: Enjoy the dev experience of Vue + webpack, use Vue components in markdown, and develop custom themes with Vue. |