Skip to content

Instantly share code, notes, and snippets.

[
{"_id":"52549fee-1960-4124-bee2-6a8b745bf9d2","applicant":{"_id":"56f35c2d-65f6-4789-84e3-bc982c243346","userId":"309040d2-b757-410f-a24b-642be3f5cc31","userType":"Individual","companyName":"123","applicantName":"edward lorilla","firstName":"edward","lastName":"lorilla","middleName":"lance","suffix":"edward","nationality":"Filipino","sex":"Male","signature":null,"height":12.0,"weight":1.0,"address":{"street":"88 CELICA STREET","unit":"12","barangay":"Balintad","city":"Baungon","province":"Bukidnon","region":"Region X - Northern Mindanao","zipCode":"8000"},"contact":{"contactNumber":"09072863152","email":"edwardlorilla1986@gmail.com"},"dateOfBirth":"2022-01-01","education":{"schoolAttended":"sf","courseTaken":"sf","yearGraduated":"2022"},"profilePicture":null},"service":{"_id":"61c400d8ad8e7afe9ee6f627","name":"TVRO/CATV Station License","serviceCode":"service-17","applicationType":{"label":"TVRO Station License (NEW)","elements":[],"formCode":"ntc1-22-license","requirements":[{"key":"provisional-authority
["vw", "bmw", "mercedes"]
[
{
"_id": "61c531906929f6099c48aa67",
"updatedAt": "2021-12-24T13:05:17.771Z",
"createdAt": "2021-12-24T02:33:52.339Z",
"activityType": "Basic Activity 1",
"activityDetails": {
"dateTime": "2021-12-24T02:33:52.337Z",
"application": {
"_id": "61c52ae16929f6099c48aa46",
{
"RestResponse" : {
"messages" : [ "Total [12] records found." ],
"result" : [ {
"name" : "Brunei Darussalam",
"alpha2_code" : "BN",
"alpha3_code" : "BRN"
}, {
"name" : "Burundi",
"alpha2_code" : "BI",
@edward1986
edward1986 / index.html
Created July 3, 2021 15:14
Sweet Alert Confirm Delete Example
<div class="container">
<h1>Sweet Alert Confirm Delete Example</h1>
<table class="table table-bordered data -table">
<thead>
<tr>
<th>No</th>
<th>Name</th>
<th>Email</th>
<th>Action</th>
<div id="app">
<section class="theme-list">
<div class="fixed-nav" ref="fixednav">
<div class="fixed-nav-content">
<p
v-for="(item, index) in theme"
:key="index"
:class="['tab-title', activeId === index && 'select-tab']"
@click="changeTab(index, $event)"
@edward1986
edward1986 / index.html
Created June 23, 2021 15:18
【JAVASCRIPT】three-level link of year, month and day
<div>
<select id="year"></select> year
<select id="month" onchange="initDate()"></select> month
<select id="date"></select>
</div>
@edward1986
edward1986 / index.html
Created June 18, 2021 16:08
simple tab bar switching case
<div class="vertical-tab" id="app">
<!-- Nav tabs -->
<ul class="nav nav-tabs1">
<li v-on:click='change(index,0)' :class='currentIndex==index?"active":""' v-if="index < list.length/2" v-for="(item, index) in list"><a href="#" rel="external nofollow" rel="external nofollow" > {{item.title}} </a></li>
</ul>
<!-- Tab panes -->
<div class="tab-content tabs">
<div class="tab-pane fade" :class='currentIndex==index?"active":""' :key='item.id' v-for='(item, index) in list'>
<h3>{{item.title}}</h3>
<p>{{item.content}}</p>