Skip to content

Instantly share code, notes, and snippets.

View lemma-san's full-sized avatar

Michael Filipenko lemma-san

  • Kourite
  • Belarus
View GitHub Profile
var scene = new PIXI.Scene();
using UnityEngine;
public class ASd : asd {
public float speed = 5f;
}
const path = require("path");
const HtmlWebpackPlugin = require("html-webpack-plugin");
module.exports = {
entry: "./src/index.js",
output: {
path: path.resolve(__dirname, "dist"),
filename: "bundle.js"
},
{
"presets": ["env", "react"],
"plugins": ["transform-object-rest-spread", "transform-class-properties"]
}
{
"name": "medium-react-example",
"version": "1.0.0",
"scripts": {
"start": "webpack-dev-server"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
import React from "react";
import ReactDOM from "react-dom";
import { App } from "./components/App";
const root = document.createElement("root");
document.body.appendChild(root);
ReactDOM.render(<App />, root);
import React, { Component } from "react";
export class App extends Component {
render() {
return <h1>Hello, Medium!</h1>;
}
}
@lemma-san
lemma-san / settings.json
Created January 13, 2018 10:30
VS Code Settings - lemma
{
"window.zoomLevel": 0,
"editor.fontSize": 16,
"editor.lineHeight": 20,
"editor.fontFamily": "Fira Code Medium",
"editor.fontLigatures": true,
"editor.tabSize": 2,
"emmet.triggerExpansionOnTab": true,
"emmet.syntaxProfiles": {
"javascript": "html"