Skip to content

Instantly share code, notes, and snippets.

View kirillsurkov's full-sized avatar
:shipit:

Surkov Kirill kirillsurkov

:shipit:
  • Intel
  • Espoo
  • 07:56 (UTC +02:00)
View GitHub Profile
{
"ops" : [ {
"code" : "PUSH1",
"deep" : 0,
"pc" : 0,
"gas" : 1000000,
"actions" : {
"stack" : [ ],
"memory" : [ ],
"storage" : [ ]
pragma solidity ^0.4.20;
contract Store {
address private owner;
modifier onlyOwner() {
require(msg.sender == owner);
_;
}
// g++ graph.cpp -lGL -lGLEW -lglfw
#include <GL/glew.h>
#include <GLFW/glfw3.h>
#include <glm/ext.hpp>
#include <vector>
const std::size_t width = 800;
const std::size_t height = 600;
const auto vss = "#version 330\n"