Skip to content

Instantly share code, notes, and snippets.

View sonus's full-sized avatar
☸️
Focusing

Sonus Sundar sonus

☸️
Focusing
View GitHub Profile
@sonus
sonus / easter_cart.html
Last active March 27, 2018 11:57
Easter
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style media="screen">
div.automaton{
height: 800px;
@sonus
sonus / config.json
Created November 16, 2017 04:41
iterm2
{
"Ansi 7 Color" : {
"Green Component" : 0.7333333492279053,
"Red Component" : 0.7333333492279053,
"Blue Component" : 0.7333333492279053
},
"Tags" : [
],
"Ansi 12 Color" : {
@sonus
sonus / main.js
Last active October 10, 2017 13:07
(function(){
console.log('I am here');
});
@sonus
sonus / RestControllerTrait.php
Created August 19, 2016 11:13 — forked from beanmoss/RestControllerTrait.php
Playing with Laravel Lumen: simple RESTful trait.
<?php namespace App\Http\Controllers;
use Illuminate\Http\Request;
trait RestControllerTrait
{
public function index()
{
$m = self::MODEL;
return $this->listResponse($m::all());
@sonus
sonus / index.html
Created August 9, 2016 11:17
vue.js
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<div id="app">
<h1 v-text="title"></h1>
<input type="" v-model="title" name="">