I hereby claim:
- I am Spittal on github.
- I am spittal (https://keybase.io/spittal) on keybase.
- I have a public key whose fingerprint is 2CFF 98C7 00A0 088F DF7D E82A 0AD2 3DFE 3AE2 B349
To claim this, I am signing this object:
// Dockerfile | |
FROM sbvr/laravel-alpine | |
# Cron Scheudler conf https://laravel.com/docs/5.4/scheduling#introduction | |
COPY schedule-cron /var/spool/cron/crontabs/root | |
RUN chmod +x /var/spool/cron/crontabs/root | |
COPY cron.ini /etc/supervisor.d/ | |
CMD [ "supervisord", "-n" ] |
I hereby claim:
To claim this, I am signing this object:
version: '3' | |
services: | |
fpm: | |
volumes: | |
- ./:/var/www | |
environment: | |
- OPCACHE_ENABLED=0 | |
worker: | |
volumes: |
version: '3' | |
services: | |
fpm: | |
image: sbvr/laravel-fpm:2.1.2 | |
volumes: | |
- app:/var/www | |
networks: | |
- appnet | |
worker: |
import { Component, OnInit } from '@angular/core'; | |
import { ActivatedRoute } from '@angular/router'; | |
import { FormGroup, FormControl } from '@angular/forms'; | |
import { Observable } from 'rxjs'; | |
import { FlashService } from '../../core'; | |
import { AdminService } from '../admin.service'; | |
export class AdminUserIndexComponent implements OnInit { |
import { Injectable } from '@angular/core'; | |
import { Observable, ReplaySubject, Subscription } from 'rxjs'; | |
import { SlideAnimator } from './slide-animator'; | |
import { SlideObservables } from './slide-observables'; | |
import { SlideHelper } from './slide-helper'; | |
import { | |
SlideServiceConfig, | |
SlideEventEnd, | |
SlideEventStart, | |
SlideEvent, |
import { Injectable } from '@angular/core'; | |
import { | |
Validators, | |
Control, | |
ControlGroup | |
} from '@angular/common'; | |
import { ValidationHelper } from | |
'../../../../common/helpers/validation.helper'; |
import { Injectable } from 'angular2/core'; | |
import { | |
FormBuilder, | |
Validators, | |
Control, | |
ControlGroup } | |
from 'angular2/common'; | |
import { ValidationHelper } from | |
'./validation-helper'; |
public updateAvatar(file: File): Observable<any> { | |
return Observable.create((observer) => { | |
let formData: FormData = new FormData(), | |
xhr: XMLHttpRequest = new XMLHttpRequest(); | |
formData.append('avatar', file, file.name); | |
xhr.onreadystatechange = () => { | |
if (xhr.readyState === 4) { |
Create a simple 'Note Taking' application on the web using the technologies of your choosing.
We want you to feel like you can be creative and comfortable during this task.
So, take the time you need to develop this. Share it with us either on Github
as public repo or as a .zip
archive. Remember that you can use whatever tools
you would like to complete this task, just make sure you leave us instructions
on how to run the application.