This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env node | |
| // (c) Anthropic PBC. All rights reserved. Use is subject to the Legal Agreements outlined here: https://code.claude.com/docs/en/legal-and-compliance. | |
| // Version: 2.0.76 | |
| // Want to see the unminified source? We're hiring! | |
| // https://job-boards.greenhouse.io/anthropic/jobs/4816199008 | |
| import{createRequire as Ez9}from"node:module";var Vz9=Object.create;var{getPrototypeOf:Hz9,defineProperty:CF1,getOwnPropertyNames:Dz9}=Object;var Fz9=Object.prototype.hasOwnProperty;var l=(A,Q,B)=>{B=A!=null?Vz9(Hz9(A)):{};let G=Q||!A||!A.__esModule?CF1(B,"default",{value:A,enumerable:!0}):B;for(let Z of Dz9(A))if(!Fz9.call(G,Z))CF1(G,Z,{get:()=>A[Z],enumerable:!0});return G};var U=(A,Q)=>()=>(Q||A((Q={exports:{}}).exports,Q),Q.exports);var M5=(A,Q)=>{for(var B in Q)CF1(A,B,{get:Q[B],enumerable:!0,configurable:!0,set:(G)=>Q[B]=()=>G})};var O=(A,Q)=>()=>(A&&(Q=A(A=0)),Q);var LA=Ez9(import.meta.url);var zz9,cfA;var $F1=O(()=>{zz9=typeof global=="object"&&global&&global.Object===Object&&global,cfA=zz9});var Cz9, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "use strict"; | |
| var fs = require('fs'); | |
| var path = require('path'); | |
| var AWS = require('aws-sdk'); | |
| var util = require('util'); | |
| var stream = require('readable-stream'); | |
| var _ = require('lodash'); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: "3.3" | |
| services: | |
| neo4j: | |
| image: neo4j:latest | |
| tty: true | |
| environment: | |
| - NEO4J_AUTH=none | |
| - NEO4J_dbms_unmanaged__extension__classes=org.neo4j.graphql=/graphql | |
| - NEO4J_dbms_security_procedures_unrestricted=apoc.\\\* | |
| - NEO4J_apoc_import_file_enabled=true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <style> | |
| .donate-button { | |
| text-align: center; | |
| } | |
| .donate-button .bitcoin-address { | |
| font-size: 1.5em; | |
| } | |
| </style> | |
| <div class="donate-button"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def to_struct(kind, attrs) do | |
| struct = struct(kind) | |
| Enum.reduce Map.to_list(struct), struct, fn {k, _}, acc -> | |
| case Map.fetch(attrs, Atom.to_string(k)) do | |
| {:ok, v} -> %{acc | k => v} | |
| :error -> acc | |
| end | |
| end | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| defmodule Util.PipeDebug do | |
| @moduledoc """ | |
| Support the injection of inspect capabilities in an elixir pipe |> pipestream. | |
| Configuration: | |
| The entire application can have PipeDebug enabled using the :logger configuration settings. | |
| For the config/<env>.exs file for the environment in which you wish to enable PipeDebug, add the following | |
| configuration key: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| defmodule Find do | |
| @moduledoc """ | |
| Implements methods to find elements in given collections by pattern matching. | |
| """ | |
| @doc """ | |
| Finds the first element in a list to match a given pattern. | |
| """ | |
| def first_match(collection) do | |
| Enum.find(collection, fn(element) -> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "color_scheme": "Packages/Color Schemes/Solarized (Dark) - Modified.tmTheme", | |
| "font_face": "Monaco", | |
| "font_size": 15, | |
| "ignored_packages": | |
| [ | |
| "Vintage" | |
| ], | |
| "tab_size": 2, | |
| "theme": "Default.sublime-theme", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # See https://gist.github.com/mkreyman/1891aaa70e41a3519a7487e7742a5eda | |
| # for a spiral traversal of a matrix. | |
| # | |
| # coordinates = | |
| # [ | |
| # {0, 0}, | |
| # {1, 0}, | |
| # {2, 0}, | |
| # {3, 0}, | |
| # {0, -1}, |
NewerOlder