Skip to content

Instantly share code, notes, and snippets.

View ramainen's full-sized avatar

Damir Fakhrutdinov ramainen

View GitHub Profile
@ramainen
ramainen / pages.sql
Created January 29, 2015 18:03
pages.sql
CREATE TABLE `pages` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`url` text,
`text` text,
`title` text,
`page_id` int(11) DEFAULT NULL,
`template` varchar(255) DEFAULT NULL,
`type` varchar(255) DEFAULT NULL,
`multi_domain` varchar(255) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
package main
import (
"fmt"
"html"
"log"
"net"
"net/http"
"os"
"runtime"
$(".button").click(function(){
$(".button").vibrate(50);
});
@ramainen
ramainen / App.js
Last active May 17, 2018 08:16
Примеры интеракций
import React, { Component } from 'react';
import './App.css';
import Titler from './Titler'
import {observer, inject} from 'mobx-react';
@inject("model")
@observer