Skip to content

Instantly share code, notes, and snippets.

View ashikjs's full-sized avatar
🎯
Focusing

MD Ashik ashikjs

🎯
Focusing
View GitHub Profile
@ashikjs
ashikjs / index.html
Created March 26, 2020 18:53
mobile menu plus-minues
<header class="header">
<div class="menu-open">
<i class="fas fa-bars"></i>
</div>
<div id="mobileMenu">
<div class="menu-close">
<i class="fas fa-times"></i>
</div>
@ashikjs
ashikjs / calendar.component.html
Created June 28, 2019 22:23 — forked from bentedder/calendar.component.html
calendar component angular 4
<div class="calendar">
<div class="calendar-navs">
<div class="month-nav">
<button (click)="prevMonth()">&lt;</button>
<span class="p4">{{ currentDate.format('MMMM') }}</span>
<button (click)="nextMonth()">&gt;</button>
</div>
<div class="year-nav">
<button (click)="prevYear()">&lt;</button>
<span>{{ currentDate.format('YYYY') }}</span>
@ashikjs
ashikjs / movie.store.ts
Last active May 29, 2019 11:48 — forked from ravipatel2293/movie.store.ts
remove unused code or line
import { Injectable } from '@angular/core';
import { BehaviorSubject } from 'rxjs/BehaviorSubject';
@Injectable()
export class MovieStore {
public movieStore$: BehaviorSubject<any>;
public movieStates = [{
name: 'Movie 1',
@ashikjs
ashikjs / README.md
Created November 12, 2018 11:08 — forked from xaviervia/README.md
Sketch 43 files JSON types
@ashikjs
ashikjs / laravellocal.md
Created July 16, 2018 17:50 — forked from hootlex/laravellocal.md
Run laravel project locally

##Windows users:

cmder will be refered as console

##Mac Os, Ubuntu and windows users continue here:

  • Create a database locally named homestead utf8_general_ci
@ashikjs
ashikjs / ImageUploadComponent.jsx
Created January 29, 2018 09:26 — forked from hartzis/ImageUploadComponent.jsx
React Image Uploading Component with Image Preview
class ImageUpload extends Component {
constructor(props) {
super(props);
this.state = {
file: '',
imagePreviewUrl: ''
};
this._handleImageChange = this._handleImageChange.bind(this);
this._handleSubmit = this._handleSubmit.bind(this);
}