Skip to content

Instantly share code, notes, and snippets.

View adamscott's full-sized avatar

Adam Scott adamscott

View GitHub Profile
@adamscott
adamscott / 99-fira-code-color-emoji.conf
Last active May 8, 2023 15:42 — forked from IgnoredAmbience/99-noto-mono-color-emoji.conf
Noto Emoji Color fontconfig for Konsole
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<!--
Fira Code + Color Emoji Font Configuration.
Currently the only Terminal Emulator I'm aware that supports colour fonts is Konsole.
Usage:
0. Ensure that the Fira Code fonts are installed on your machine.
1. Install this file to ~/.config/fontconfig/conf.d/99-fira-code-color-emoji.conf
@adamscott
adamscott / playground.rs
Last active March 10, 2017 19:21 — forked from anonymous/playground.rs
Rust code shared from the playground
extern crate serde;
#[macro_use]
extern crate serde_json;
#[macro_use]
extern crate serde_derive;
#[derive(Debug, Serialize, Deserialize)]
struct SearchResponse {
@adamscott
adamscott / playground.rs
Created March 7, 2017 16:55 — forked from anonymous/playground.rs
Rust code shared from the playground
extern crate serde;
#[macro_use]
extern crate serde_json;
#[macro_use]
extern crate serde_derive;
use serde_json::Value;