Skip to content

Instantly share code, notes, and snippets.

set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'vim-pandoc/vim-pandoc'
Plugin 'vim-pandoc/vim-pandoc-syntax'
Plugin 'kana/vim-metarw'
.PHONY: all clean
# ENVIRONMENT CONFIG
# ══════════════════════════════════════════════════════════════════════════════
# USER_BIN = ~/bin = export main binary dest dir
# C_LIBRARY_SOURCES = ~C_LIBRARIES/src = root of all module directories
# C_LIBRARY_HEADERS = ~C_LIBRARIES/include = export header root dir
# C_SHARED_LIBRARIES = ~C_LIBRARIES/shared = export shared libraries dest dir
# C_STATIC_LIBRARIES = ~C_LIBRARIES/static = export static libraries dest dir
@wrpaape
wrpaape / .vimrc
Last active March 28, 2019 17:49
"VUNDLE PLUGINS
"===============================================================================
execute pathogen#infect()
set nocompatible " be iMproved, required
filetype off " required
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim' " required
Plugin 'tpope/vim-repeat'
Plugin 'tpope/vim-commentary'

OpenCyc-Jumble Saga

Tears of a Spoon-fed Baby Dev

Getting Started

  • OpenCyc server and KB browser
    • painless download, installation, and setup
    • very clear guidance linking beginners to the dev center and relevant tutorials/resources
  • OpenCyc CycL tutorials and exercises
    • infinite resources that demonstrate the "basic assertion(s) + query on those assertion(s)" pattern
  • much like childhood piano lessons (maybe worthwhile to stick it out, but seems painful and irrelevant in the meantime)
require 'test/unit'
# Directions:
#
# Write a series of methods which use the .any, .all, .map, .select, .reject, and .reduce
# methods in Enumerable.
# In this challenge, names longer than 5 characters are # considered long.
# WRITE YOUR CODE BELOW HERE.