Tool | Main Features & Models Supported | Usage Context / Notes | CLI Native? | Link |
---|---|---|---|---|
Claude Code | Agentic coding, autonomous edits, deep context, Anthropic models | Terminal-based, enterprise privacy, NPM install | Yes | Claude Code |
Gemini CLI | Google Gemini models, free tier, IDE integration, web search | Term |
The general idea is to run an Emacs server as a daemon which clients can quickly connect to via a bash script. The client executes org-capture and the frame closes upon finalizing or aborting the capture.
The first step is to get an Emacs daemon running as a server with your name of choice. For this example, I’m going to use “capture” as the server name.
At Deal Engine we strive on automating and optimizing processes in an industry that has been stagnant for several decades - the travel industry.
- Have you ever wondered what happens to your ticket when you miss a flight? And did you know you can always get some money back?
- Have you ever been able to change a flight without having to spend hours calling customer support?
- Have you ever experienced the price volatility where sometimes you end up paying a lot more than the person sitting next to you on a plane?
We solve these and more pains! We work alongside airlines (e.g. LATAM airlines) and online travel agencies (e.g. Despegar) and operate in 18 countries (across 3 continents), managing over $4 billion dollars in flight tickets. We are on a mission to become the most efficient and transparent backbone of the travel industry.
- Generated by code-examples-manager release 2.4.9-SNAPSHOT
- 659 published examples
- akka-actors-hello-world.sc : Simple akka hello world example
- akka-capitalize-and-print.sc : dump capitalized string coming from stdin using streams
- akka-http-client-json-stream.sc : Fully asynchronous http client call with json streamed response using akka-http will work in all cases, even with chunked responses !
- akka-http-client-json-with-proxy.sc : Fully asynchronous http client call with json response using akka-http will work in all cases, even with chunked responses, this example add automatic http proxy support.
- [akka-http-client-json.sc](https:/
-- This gist shows how we can use abilities to provide nicer syntax for any monad. | |
-- We can view abilities as "just" providing nicer syntax for working with the | |
-- free monad. | |
ability Monadic f where | |
eval : f a -> a | |
-- Here's a monad, encoded as a first-class value with | |
-- two polymorphic functions, `pure` and `bind` | |
type Monad f = Monad (forall a . a -> f a) (forall a b . f a -> (a -> f b) -> f b) |
main :: IO () | |
main = runM | |
. runRedis | |
. runFTP | |
. runHTTP | |
. runEncryption | |
. redisOuput @Stat mkRedisKey | |
. postOutput @Record mkApiCall | |
. batch @Record 500 | |
. ftpFileProvider |
This guide assumes that:
- you already have an instance set up on GCP that you want to mount locally
- the GCP CLI (
gcloud
) is installed on your local machine - you have authenticated locally to your google account
gcloud auth login
- make sure your gcloud config is correct for the instance you're trying to access:
import java.io.FileOutputStream | |
import cats.effect.ExitCase.{Canceled, Completed, Error} | |
import cats.effect._ | |
import cats.syntax.apply._ | |
import cats.syntax.functor._ | |
import scala.concurrent.ExecutionContext.Implicits.global | |
import scala.concurrent.duration._ |
This document contains some ideas for additions to the Nix language.
The Nix package manager, Nixpkgs and NixOS currently have several problems:
- Poor discoverability of package options. Package functions have
function arguments like
enableFoo
, but there is no way for the Nix UI to discover them, let alone to provide programmatic ways to
module Main | |
import IdrisJvm.FFI | |
import IdrisJvm.IO | |
import Java.Lang | |
%default total | |
record Java a ret where |