This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const axios = require('axios').default; | |
const _ = require('lodash'); | |
const email = '<email>'; | |
const key = '<global_key>'; | |
const zone = '<zone>' | |
const url = `https://api.cloudflare.com/client/v4/zones/${zone}/dns_records` | |
function deleteRec(dns) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { boot } from 'quasar/wrappers'; | |
// NOTE: maunya biar directive ini seperti gabungan dari v-bind dan v-on tapi enggak mau dia | |
export default boot(({ Vue }) => { | |
Vue.directive('cform', { | |
// When the bound element is inserted into the DOM... | |
bind(el, binding, vNode) { | |
if (!binding.arg) { | |
console.warn(`v-cform without argument does not support.`); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if (count($my_students) == 0) { | |
echo '<div class="alert alert-danger">You have no students yet. Please add your student in <a href="'.base_url().'profile">profile</a> page first. Don\'t worry, you can visit this page again later!</div>'; | |
} | |
?> | |
<style type="text/css"> | |
#deassign_student_list ul { | |
margin: 0; | |
padding: 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul> | |
<li> | |
<div> | |
<span>No Class</span | |
><label class="container-filter"> | |
<input | |
type="checkbox" | |
id="undefined" | |
class="checkbox_filter checkbox_filter_ws" | |
value="undefined" /><span class="checkmark"></span |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="stylesheet" href="<?=base_url()?>css/mathquill.min.css" /> | |
<script src="<?=base_url()?>js/mathquill.min.js"></script> | |
<!--************New Added Script By Kok Liang on 21-12-2019--> | |
<script src="<?php echo base_url()?>js/imgFunctions.js"></script> | |
<!--************New Added Script End--> | |
<!--************New Added Script Start--> | |
<link rel="stylesheet" href="<?php echo base_url()?>/node_modules/myscript/dist/myscript.min.css"/> | |
<link rel="stylesheet" href="<?php echo base_url()?>/css/examples.css"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'package:flutter_test/flutter_test.dart'; | |
import 'package:rxdart/rxdart.dart'; | |
class RiwayatKunjunganBloc { | |
final riwayatKunjunganAPI = RiwayatKunjunganAPI(); | |
final _dateQuery = BehaviorSubject<DateTime>(); | |
Observable<List<RiwayatKunjunganModel>> _results; |
NewerOlder