Skip to content

Instantly share code, notes, and snippets.

View acacha's full-sized avatar

Sergi Tur Badenas acacha

View GitHub Profile
@acacha
acacha / NUXT_FRONTEND_NOW.md
Created December 4, 2019 19:25
PROJECTE MOIXONET NUXT A NOW
@acacha
acacha / gist:dd893315c060cb25b5c9efd2b568dbe1
Last active November 18, 2019 10:47
Advanced Vue components
# ADVANCED VUE COMPONENTS
Exemples: inheritance, compositions, associations:
- https://www.visual-paradigm.com/guide/uml-unified-modeling-language/uml-aggregation-vs-composition/
- https://www.thoughtworks.com/insights/blog/composition-vs-inheritance-how-choose
- https://learn.adamwathan.com/advanced-vue/extending-components-using-composition
- ModalDialog -> Composició es pot crear ConfirmModalDialog, Announcementdialog
## COMPOSITIONS VS INHERITANCE
@acacha
acacha / LINTING.md
Last active November 13, 2019 17:41
LINTING
@acacha
acacha / aliases
Created November 9, 2019 15:19
aliases
alias gs="git status"
alias gl="git log"
alias gcom="git checkout master"
alias gaa="git add ."
alias gc="git commit -m "
alias gp="git push"
alias nah="git reset --hard && git clean -df"

FLOW USUARI NORMAL

Vegeu aplicació ebando per Android. Les interfície/frontend web/nuxt si tenen gestió (creació de canals, CRUD canals i missatges, etc) però les Apps natives Android/Ios només tenen funcionailitats usuaris normals

Notes sobre seguretat:

  • Canals són públics i els missatges també: de fet no caldria usuari a la app mòbil.
  • Crides GET a la API totes públiques!!!
<?php
namespace Infrastructure\Auth;
use Illuminate\Foundation\Application;
use Infrastructure\Auth\Exceptions\InvalidCredentialsException;
use Api\Users\Repositories\UserRepository;
class LoginProxy
{
@acacha
acacha / init_laravel_project.sh
Last active October 24, 2019 09:06
Passos inicials per arrancar projecte Laravel
git clone URI_DEL_PROJECTE
cd NOM_PROJECTE
composer install
npm install
cp .env.example .env => CONFIGURAR CONNEXIÓ A BASE DE DADES I ALTRES
php artisan key:generate
php artisan migrate
@acacha
acacha / ForceUpdateComponent.vue
Created September 27, 2019 07:44
Force update example (Antipattern as 99% of cases is not necessary to rerender manually vue does the job)
Vue.component('ParentA',{
template:`
<div id="parent-a">
<h2>Parent A</h2>
<pre>data {{ this.$data }}</pre>
<button @click="reRender">Rerender Parent</button>
<hr/>
<child-a :score="score"/>
<child-b/>
</div>`,
var level1 = {
preload: function() {
console.log('PRELOAD')
game.load.image('wall','assets/wall.png')
game.load.image('ground','assets/ground.png')
game.load.spritesheet('player','assets/player.png', 28, 22)
},
var level1 = {
preload: function() {
console.log('PRELOAD')
game.load.image('wall','assets/wall.png')
game.load.image('ground','assets/ground.png')
game.load.spritesheet('player','assets/player.png', 28, 22)
},