Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Chris Browne

Chris Browne

Chris Browne has asked 4 questions and find answers to 4 problems.

Stats

122
EtPoint
33
Vote count
4
questions
4
answers

About

typedef enum {
   FALSE=0,
   TRUE
} boolean;

typedef struct {
  int age;
  char* name;
  boolean employed;
  char* occupation;
  char* education;
} programmer_t;

programmer_t chris;
chris.age = 31;
chris.name = "Chris Browne";
chris.employed = TRUE;
chris.occupation = "Chief Architect";
chris.education = "self-taught";

I maintain an active interest in a plethora of programming languages, paradigms, and toolchains. I aspire to be language and tool agnostic.

Interests

  • Artificial Intelligence programming/design
  • Low-level high-performance microcoding (asm/c)
  • Robotics
  • User Interface Design
  • Retrocoding (writing programs for old systems using the tools of the time)
  • Programming Language Design/Development
  • Board games
  • Video games