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:
<|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. |
// 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' } | |
); |
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, |
I hereby claim:
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 |
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 |
// Version: v1.0.0-pre.2-311-g668783a | |
// Last commit: 668783a (2013-01-06 21:10:55 -0800) | |
(function() { | |
/*global __fail__*/ | |
/** | |
Ember Debug |
// ========================================================================== | |
// 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 | |
// ========================================================================== | |