This file contains 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
@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 ; |
This file contains 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
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. |
This file contains 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
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 |
This file contains 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
interface Product { | |
name?: string; | |
price: number; | |
} | |
// type Product = { | |
// name: string; | |
// price: number; | |
// } |
This file contains 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
# ************************************************************ | |
# 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 |
This file contains 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
# ************************************************************ | |
# 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 |
This file contains 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
# ************************************************************ | |
# 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 |
This file contains 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 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, |
This file contains 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 React from 'react'; | |
import ReactDOM from 'react-dom'; | |
function TodoItem (props) { | |
return <div>{props.title}</div> | |
} | |
function TodoList (props) { | |
return ( | |
<div> |
This file contains 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 { 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}`, |
NewerOlder