Skip to content

Instantly share code, notes, and snippets.

PARA Note Classifier — 2026-04-14 09:58

Total scanned: 8 | Moved: 0 | Skipped: 8 | Errors: 0

Skipped (ambiguous — manual review)

  • 13 April 2026 #logbook #claude ## Chat 1 - Setup aistudio MCP server…

  • GenAI
  • [PERSONA]
  • In 2026, the "best" Claude integration utilizing Elephas and Ollama…
  • Mac Studio — Storage Upgrade
@ciscodesign
ciscodesign / NewsletterService.rb
Created August 3, 2012 14:55
a class for connecting to mailchimp, with gibbon gem
# encoding: UTF-8
# this is a class for connecting to mailchimp, with gibbon gem
class NewsletterService
def connect
@u = Gibbon.new(MC_API_KEY)
@u.throws_exceptions = true
@u
end
@ciscodesign
ciscodesign / Helper
Created March 18, 2012 22:51
Helper to use Font Awesome with Rails
def icon(name, size=1)
#icon("camera-retro")
#<i class="icon-camera-retro"></i>
html = "<i class='icon-#{name}' "
html += "style='font-size:#{size}em' "
html += "></i>"
html.html_safe
end