Skip to content

Instantly share code, notes, and snippets.

View eezhal92's full-sized avatar

Muhammad Rizki Rijal eezhal92

View GitHub Profile
@prefix ex: <http://example.org/> .
ex:JioFinancialServices a ex:Company ;
ex:areasOfBusiness ex:RetailLending, ex:MerchantLending, ex:BankOperations, ex:PaymentSolutions, ex:InsuranceBroking ;
ex:dataAdvantage ex:DataAccess ;
ex:partnersWith ex:JioBlackRock ;
ex:transferredCash ex:CashAndInvestments ;
ex:ownsStakeIn ex:RelianceIndustries .
ex:RetailLending a ex:BusinessArea ;
@eezhal92
eezhal92 / news.txt
Created August 7, 2022 07:14
news.txt
KEKALAHAN Timnas Vietnam U-16 dari Timnas Indonesia U-16 membuat pelatih Vietnam U-16, Nguyen Quoc Tuan, sampai bawa-bawa turnamen Piala AFF U-19 2022. Sebenarnya, apa yang ia katakan?
Pelatih Vietnam, Nguyen Quoc Tan menyebut keberhasilan Timnas Indonesia U-16 lolos ke semifinal mengembalikan wajah Indonesia di pentas Asia Tenggara
Nguyen Quoc Tan menyebut kemenangan Timnas Indonesia U-16 dengan skor 2-1 atas Timnas Vietnam U-16 di laga terakhir grup A Piala AFF U-16 2022 membayar kegagalan Timnas U-19 di Piala AFF U-19 2022.
Nasib berbeda memang terjadi bagi Timnas Indonesia U-16 dan Timnas Indonesia U-19. Jika Timnas Indonesia U-16 berhasil lolos ke semifinal, tidak dengan yang dialami Indonesia U-19 pada awal Juli lalu di Piala AFF U-19 2022.
Tim asuhan Shin Tae-yong saat itu gagal lolos ke semifinal di tengah kontroversi dan dugaan "main sabun" antara Timnas Thailand U-19 dan Timnas Vietnam U-19.
order_id total customer_user_id customer_name shipping_address
1 3000 2 John Doe Palu
2 2000 2 Mark Z Donggala
3 2400 2 Sergei B Parigi
4 4000 2 Elon M Sigi
@eezhal92
eezhal92 / meet-1-task-1.ts
Created June 13, 2021 06:59
FE Mentoring - Meeting 1 (TypeScript)
interface Product {
name?: string;
price: number;
}
// type Product = {
// name: string;
// price: number;
// }
# ************************************************************
# Sequel Pro SQL dump
# Version 4541
#
# http://www.sequelpro.com/
# https://github.com/sequelpro/sequelpro
#
# Host: 127.0.0.1 (MySQL 5.7.31)
# Database: intro_sql_2
# Generation Time: 2020-10-10 12:39:31 +0000
@eezhal92
eezhal92 / book_library_4.sql
Last active October 4, 2020 08:28
book_library_4.sql
# ************************************************************
# Sequel Pro SQL dump
# Version 4541
#
# http://www.sequelpro.com/
# https://github.com/sequelpro/sequelpro
#
# Host: 127.0.0.1 (MySQL 5.7.31)
# Database: book_library
# Generation Time: 2020-10-04 08:19:16 +0000
@eezhal92
eezhal92 / book_library_dump.sql
Last active September 4, 2020 10:32
hammercode - intro sql 1
# ************************************************************
# Sequel Pro SQL dump
# Version 4541
#
# http://www.sequelpro.com/
# https://github.com/sequelpro/sequelpro
#
# Host: 127.0.0.1 (MySQL 5.7.31)
# Database: book_library
# Generation Time: 2020-09-04 10:31:44 +0000
@eezhal92
eezhal92 / index.js
Created January 24, 2020 21:46
express middleware
const express = require('express');
const bodyParser = require('body-parser');
const Validator = require('validatorjs');
const app = express();
// Middleware
const memberInputValidationGuard = function (req, res, next) {
const data = {
name: req.body.name,
@eezhal92
eezhal92 / index.js
Created September 8, 2018 07:49
Sharing basic react
import React from 'react';
import ReactDOM from 'react-dom';
function TodoItem (props) {
return <div>{props.title}</div>
}
function TodoList (props) {
return (
<div>
import { URL } from 'url';
import jwt from 'jsonwebtoken';
import passport from 'passport';
const facebook = {
main: (request, ...rest) => {
const { team } = request.query;
return passport.authenticate('facebook', {
callbackURL: process.env.FACEBOOK_CALLBACK_URL + `?team=${team}`,