Skip to content

Instantly share code, notes, and snippets.

View cyberpanda's full-sized avatar
🐼
Destroy racism be like a panda

Cyber Panda cyberpanda

🐼
Destroy racism be like a panda
View GitHub Profile
@cyberpanda
cyberpanda / anotherflexpractice.markdown
Last active December 11, 2021 20:42
anotherflexpractice
/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================
Made by Justin Aguilar
www.justinaguilar.com/animations/
Questions, comments, concerns, love letters:

Keybase proof

I hereby claim:

  • I am cyberpanda on github.
  • I am cyberpanda (https://keybase.io/cyberpanda) on keybase.
  • I have a public key ASCFEITa1bsk7zOotUJHmoOXsIzchmZBnlFIVWuMr47_bgo

To claim this, I am signing this object:

@cyberpanda
cyberpanda / effective_modern_cmake.md
Created January 29, 2021 17:13 — forked from mbinna/effective_modern_cmake.md
Effective Modern CMake

Effective Modern CMake

Getting Started

For a brief user-level introduction to CMake, watch C++ Weekly, Episode 78, Intro to CMake by Jason Turner. LLVM’s CMake Primer provides a good high-level introduction to the CMake syntax. Go read it now.

After that, watch Mathieu Ropert’s CppCon 2017 talk Using Modern CMake Patterns to Enforce a Good Modular Design (slides). It provides a thorough explanation of what modern CMake is and why it is so much better than “old school” CMake. The modular design ideas in this talk are based on the book [Large-Scale C++ Software Design](https://www.amazon.de/Large-Scale-Soft

@cyberpanda
cyberpanda / colors.go
Created April 6, 2020 23:06 — forked from ik5/colors.go
Simple golang expirement with ANSI colors
package main
// http://play.golang.org/p/jZ5pa944O1 <- will not display the colors
import "fmt"
const (
InfoColor = "\033[1;34m%s\033[0m"
NoticeColor = "\033[1;36m%s\033[0m"
WarningColor = "\033[1;33m%s\033[0m"
ErrorColor = "\033[1;31m%s\033[0m"
DebugColor = "\033[0;36m%s\033[0m"