Skip to content

Instantly share code, notes, and snippets.

View farizyoga's full-sized avatar

Fariz Yoga Syahputra farizyoga

View GitHub Profile
@farizyoga
farizyoga / Cache.php
Last active February 2, 2018 16:29
Simple File Caching implementation with php
<?php
class Cache
{
private $driver;
public function __construct(DriverInterface $driver)
{
$this->driver = $driver;
}
@farizyoga
farizyoga / telegram.js
Created January 18, 2018 07:23
Simple Telegram API with bot
const Telegram = (function() {
return {
config: null,
init(config) {
this.config = config;
},
setChatID(chatID) {
this.config.chatID = chatID;
<?php
echo "Test":