Skip to content

Instantly share code, notes, and snippets.

View zackangelo's full-sized avatar

Zack Angelo zackangelo

View GitHub Profile
@zackangelo
zackangelo / context.txt
Created December 13, 2024 19:39
Llama 3.3 Multi-tool Use Context Window
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Environment: ipython
Cutting Knowledge Date: December 2023
Today Date: 13 Dec 2024
# Tool Instructions
You may optionally call functions that you have been given access to. You DO NOT have
to call a function if you do not require it. ONLY call functions if you need them. Do NOT call
functions that you have not been given access to.
@zackangelo
zackangelo / mixlayer-script-inception.js
Created October 21, 2024 18:51
Generate and run a script in-context
// Script Inception
// Ask the model to generate code and execute it in-context
// Generate some javascript code to compute the fibonacci sequence
prompt(
`Can you write a non-recursive javascript function named \"fib\" ` +
`to compute the fibonacci sequence? (Please just define the function and nothing else.) \n`,
{ role: 'user' }
);
@zackangelo
zackangelo / TracingExecutionContext.scala
Created December 6, 2016 01:28
Executor that propagates Brave tracing context
package com.bigcommerce.core.metrics.tracing
import com.github.kristofa.brave.{ServerSpan, ServerSpanThreadBinder}
import scala.concurrent.ExecutionContext
/**
* Created by zack.angelo on 12/5/16.
*/
class TracingExecutionContext(wrapped:ExecutionContext,

Keybase proof

I hereby claim:

  • I am zackangelo on github.
  • I am zackangelo (https://keybase.io/zackangelo) on keybase.
  • I have a public key whose fingerprint is AED8 4A64 B8DF 8BBC 2900 B34E FCE7 ACBB 9786 8D1C

To claim this, I am signing this object:

//One of these will make for a very bad day... Can you tell which one?
import scala.slick.session.Database
val db:Database = _ //connection pool (e.g., c3p0)
//Option A
def fetchResultsA = future {
db.withSession { implicit session =>
val query = for (c <- coffees) yield c.name
@zackangelo
zackangelo / configure.rb
Created March 14, 2013 21:57
Redis cookbook
include_recipe 'redis'
Chef::Log.debug('Writing Redis configuration file...')
template "/etc/redis.conf" do
source "redis.conf.erb"
owner "root"
group "root"
mode "0644"
notifies :restart, resources(:service => "redis"), :delayed
@zackangelo
zackangelo / ember-master.js
Created January 7, 2013 05:46
Ember.js latest master
// Version: v1.0.0-pre.2-311-g668783a
// Last commit: 668783a (2013-01-06 21:10:55 -0800)
(function() {
/*global __fail__*/
/**
Ember Debug
@zackangelo
zackangelo / ember-master-min.js
Created January 7, 2013 05:42
Ember.js latest master (minified)
// ==========================================================================
// Project: Ember - JavaScript Application Framework
// Copyright: ©2011-2012 Tilde Inc. and contributors
// Portions ©2006-2011 Strobe Inc.
// Portions ©2008-2011 Apple Inc. All rights reserved.
// License: Licensed under MIT license
// See https://raw.github.com/emberjs/ember.js/master/LICENSE
// ==========================================================================