Skip to content

Instantly share code, notes, and snippets.

View Otagera's full-sized avatar

Othniel Agera Otagera

View GitHub Profile
@ahmed-abdelazim
ahmed-abdelazim / Platforms.md
Created November 18, 2018 17:20
IGDB all platforms by ID
id name
3 Linux
4 Nintendo 64
5 Wii
6 PC (Microsoft Windows)
7 PlayStation
8 PlayStation 2
9 PlayStation 3
11 Xbox
@matthewbeta
matthewbeta / scrim-gradient.scss
Last active May 21, 2024 06:35
A simple little SCSS mixin for creating scrim gradients
/*
A simple little SCSS mixin for creating scrim gradients
Inspired by Andreas Larson - https://github.com/larsenwork
https://css-tricks.com/easing-linear-gradients/
*/
@mixin scrimGradient($startColor: $color-black, $direction: 'to bottom') {
$scrimCoordinates: (
@c0d0g3n
c0d0g3n / EditableContainer.jsx
Last active February 11, 2021 11:13
React: double click to edit, blur to save and exit.
import React from 'react'
import settings from '../settings.js'
import Field from '../styles/FieldStyle.jsx'
export default class EditableContainer extends React.Component {
constructor (props) {
super(props)
// init counter
this.count = 0