Skip to content

Instantly share code, notes, and snippets.

View fajar7xx's full-sized avatar
🏠
Working from home

Fajar Siagian fajar7xx

🏠
Working from home
View GitHub Profile
@fajar7xx
fajar7xx / user story template.md
Created September 7, 2022 05:00 — forked from xpepper/user story template.md
User Story templates
@fajar7xx
fajar7xx / Response.php
Created August 15, 2022 06:56 — forked from jeffochoa/Response.php
Laravel HTTP status code
<?php
// This can be found in the Symfony\Component\HttpFoundation\Response class
const HTTP_CONTINUE = 100;
const HTTP_SWITCHING_PROTOCOLS = 101;
const HTTP_PROCESSING = 102; // RFC2518
const HTTP_OK = 200;
const HTTP_CREATED = 201;
const HTTP_ACCEPTED = 202;
@fajar7xx
fajar7xx / vue-composisition-api.vue
Created July 28, 2022 04:04
vue composition api from vueschool.io
<script setup>
import { ref, computed } from 'vue'
const header = ('Shopping list app')
const characterCount = computed(() => {
return newItem.value.length
})
const editingItem = ref(false)
const items = ref([
{
@fajar7xx
fajar7xx / List.md
Created February 29, 2020 03:35 — forked from msurguy/List.md
List of open source projects made with Laravel

Other people's projects:

My projects (tutorials are on my blog at http://maxoffsky.com):