Skip to content

Instantly share code, notes, and snippets.

View Miaababikir's full-sized avatar
🌠
Ex nihilo nihil fit..~

Mosab Ibrahim Miaababikir

🌠
Ex nihilo nihil fit..~
View GitHub Profile
#include<iostream>
#include<stdlib.h>
using namespace std;
struct employee {
char Name[40];
int Password=rand();
int money=100;
};
main(){
module.exports = {
theme: {
extend: {
spacing: {
'96': '24rem',
},
},
},
variants: {},

Main Dashboard API Doc

Register new Parent

  • URL

    /api/parents

  • Method:

Library API Doc

Remember most of these endpoionts you should pass the (api_token).

Getting Latest Book List

  • URL
@Miaababikir
Miaababikir / Form.js
Created September 30, 2018 17:05
Small framework for dealing with ajax request using vue and axios
class Form {
/**
* Initialize the form data
*
* @param {object} data
**/
constructor(data) {
this.orignalData = data;
@Miaababikir
Miaababikir / EventsDispatcher.js
Created September 25, 2018 18:33
Vue js events dispatcher
window.Event = new class {
constructor() {
this.vue = new Vue();
}
fire(event, data = null) {
this.vue.$emit(event, data);
}
listen(event, callback) {
@Miaababikir
Miaababikir / 0_reuse_code.js
Created June 2, 2017 20:51
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console