Skip to content

Instantly share code, notes, and snippets.

View Auskennfuchs's full-sized avatar

Auskennfuchs Auskennfuchs

View GitHub Profile
@Auskennfuchs
Auskennfuchs / app.js
Last active January 27, 2020 22:29
Recursevly resolve files to base64 in javascript
import React, { Component } from "react";
import { Formik } from "formik";
import "./styles.css";
export default class App extends Component {
state = {
data: {
name: "Test"
}
};
class Media extends React.Component {
...
onClick = () => {
this.props.onUpdateMedia({
value: "Test"
})
}
render() {
const {media} = this.props
@Auskennfuchs
Auskennfuchs / WeatherSystem.cs
Created August 25, 2018 23:15
Unity Weather System Controller
using System;
using UnityEngine;
public class WeatherSystem : MonoBehaviour
{
[Serializable]
public class Season
{
public float duration;
public Color lightColor;