This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
============================================================================== | |
Pomodoro.c - Tiny Win32 Pomodoro Timer | |
============================================================================== | |
*/ | |
/* | |
============================================================================== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <assert.h> | |
#include <stdio.h> | |
#include <stdbool.h> | |
#include <stdarg.h> | |
typedef enum eToken_Type eToken_Type; | |
enum eToken_Type { | |
TOKENTYPE_number, | |
TOKENTYPE_operator, | |
TOKENTYPE_lparen, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdint.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#define STB_IMAGE_WRITE_IMPLEMENTATION | |
#include "ext/stb_image_write.h" | |
uint8_t* GenerateGrayGradientBitmap(int width, int height) { | |
uint8_t* result = (uint8_t*)malloc(width * height); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// jasper.c - Processor for custom flavor of markdown called jasperstone | |
// | |
// Description: | |
// | |
// Jasperstone processes a markup file by applying a set of rewriting rules to | |
// the document. Each rewriting rule processes the entire document replacing a | |
// particular piece of syntax. The end result is a file that is completely | |
// marked up without the need for a complex parser. | |
#include <inttypes.h> | |
#include <stdarg.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; | |
;; Simple timer that will blink the mode-line bar. | |
;; | |
;; Example Usage: | |
;; | |
;; Set a timer for 5 secs from now: | |
;; | |
;; (blink-bar-after-timer "5 sec") | |
;; | |
;; Set a timer for when tea has steeped after 3 mins: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#if !defined(EMACS_COMMAND_MAP_H) | |
#define EMACS_COMMAND_MAP_H | |
// Create custom ID for our global emacs state data. | |
CUSTOM_ID(attachment, view_emacs_state_id); | |
CUSTOM_COMMAND_SIG(close_all_other_panels) | |
CUSTOM_DOC("Closes all other panels but the currently active one") | |
{ | |
View_ID current_active_view_id = get_active_view(app, Access_Always); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* $FreeBSD: src/sys/crypto/sha2/sha2.h,v 1.1.2.1 2001/07/03 11:01:36 ume Exp $ */ | |
/* $KAME: sha2.h,v 1.3 2001/03/12 08:27:48 itojun Exp $ */ | |
/* | |
* sha2.h | |
* | |
* Version 1.0.0beta1 | |
* | |
* Written by Aaron D. Gifford <[email protected]> | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; init.el --- The emacs configuration entry-point | |
;;; | |
;;; Commentary: | |
;;; This is the first file executed when emacs is initialized. | |
;;; | |
;;; Code: | |
;; Determine our dotfiles directory | |
(defun get-dotfiles-directory () | |
"Returns the directory the Emacs dotfiles are in." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stdint.h> | |
typedef uint32_t u32; | |
typedef int32_t i32; | |
typedef uint16_t u16; | |
typedef int16_t i16; | |
typedef uint8_t u8; | |
typedef int8_t i8; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stdint.h> | |
typedef uint32_t u32; | |
typedef int32_t i32; | |
typedef uint16_t u16; | |
typedef int16_t i16; | |
typedef uint8_t u8; | |
typedef int8_t i8; |
NewerOlder