Skip to content

Instantly share code, notes, and snippets.

View superhighfives's full-sized avatar

Charlie Gleason superhighfives

View GitHub Profile
@superhighfives
superhighfives / content.mdx
Last active March 29, 2023 10:51
Ten Years of Beginnings & Endings

Ten Years

"I've been listening to this song for almost a decade. It's depressing how fast the time flows." —Enzo Ponce Cano

(That might be the most Brightly comment ever commented.)

Brightly started out in the living room of my brother's place in Sandringham, in Melbourne, around 2010 or 2011. I was on the verge of dropping out of doing a masters in computer science, thinking about studying sound production, and I'd just bought Ableton and a Novation Launchpad. I booked a gig at The Brunswick Hotel and showed up with a laptop and an aux cable, and sang two songs with while the sound person looked on, openly uncomfortable. One song was called Seven Years, and the other eventually became Tokyo, originally recorded with a surreal, terrible faux-American accent (an inexplicably weird creative decision on my part, which led to re-recording a lot of vocals early on). Nic came and watched, for some reason saw something in it. He introduced us to [Ony](https

@superhighfives
superhighfives / main.py
Created March 1, 2023 09:22
python video manipulation
# import the modules
import os
from PIL import Image
def desaturate(data):
R = data[::3]
G = data[1::3]
B = data[2::3]
pixels = zip(R, G, B)
averaged = []
@superhighfives
superhighfives / post.md
Last active November 5, 2022 13:52
#notepad
date
January 2022

Lol

Testing.

@superhighfives
superhighfives / puppies.md
Last active November 4, 2022 20:38
slug:puppies #notepad

Another idea.

@superhighfives
superhighfives / one-two-three.md
Last active October 30, 2022 17:31
slug:one-two-three #notepad

Venenatis cras sed felis eget velit. Consectetur libero id faucibus nisl tincidunt. Gravida in fermentum et sollicitudin ac orci phasellus egestas tellus. Volutpat consequat mauris nunc congue nisi vitae. Id aliquet risus feugiat in ante metus dictum at tempor. Sed blandit libero volutpat sed cras. Sed odio morbi quis commodo odio aenean sed adipiscing. Velit euismod in pellentesque massa placerat. Mi bibendum neque egestas congue quisque egestas diam in arcu. Nisi lacus sed viverra tellus in. Nibh cras pulvinar mattis nunc sed. Luctus accumsan tortor posuere ac ut consequat semper viverra. Fringilla ut morbi tincidunt augue interdum velit euismod.

@superhighfives
superhighfives / styles.less
Last active May 25, 2017 10:17
Operator Mono with Fira Code ligatures in Atom
/*
* Your Stylesheet
*
* This stylesheet is loaded when Atom starts up and is reloaded automatically
* when it is changed and saved.
*
* Add your own CSS or Less to fully customize Atom.
* If you are unfamiliar with Less, you can read more about it here:
* http://lesscss.org
*/
@superhighfives
superhighfives / example_controller.rb
Created March 4, 2017 13:07
Rails 5 API + ActiveAdmin + create-react-app on Heroku
class ExampleController < ApiController
end
@superhighfives
superhighfives / api_controller.rb
Created March 4, 2017 13:05
Rails 5 API + ActiveAdmin + create-react-app on Heroku
class ApiController < ActionController::API
end
@superhighfives
superhighfives / app.js
Last active March 6, 2017 14:46
Rails 5 API + ActiveAdmin + create-react-app on Heroku
import React, { Component } from 'react'
import { Container, Header, Segment, Button, Icon, Dimmer, Loader, Divider } from 'semantic-ui-react'
class App extends Component {
constructor () {
super()
this.state = {}
this.getDrinks = this.getDrinks.bind(this)
this.getDrink = this.getDrink.bind(this)
}
@superhighfives
superhighfives / index.js
Created March 3, 2017 21:52
Rails 5 API + ActiveAdmin + create-react-app on Heroku
import React from 'react'
import ReactDOM from 'react-dom'
import App from './App'
import 'semantic-ui-css/semantic.css'
import './index.css'
ReactDOM.render(
<App />,
document.getElementById('root')
)