Skip to content

Instantly share code, notes, and snippets.

View rmuslimov's full-sized avatar
:octocat:
I may be slow to respond.

rmuslimov rmuslimov

:octocat:
I may be slow to respond.
  • Stripe
  • Belmont, CA
View GitHub Profile
;;; ox-confluence-en.el --- Enhanced Confluence Wiki Back-End for Org Export Engine
;; Copyright (C) 2015, Correl Roush
;; Author: Correl Roush <correl@gmail.com>
;; Keywords: outlines, confluence, wiki
;; This file is not part of GNU Emacs.
;; This program is free software: you can redistribute it and/or modify
@JacobNinja
JacobNinja / pipeline.clj
Last active April 6, 2022 09:14
Clojure core.async pipeline example
(require '[clojure.core.async :as async]
'[clj-http.client :as client]
'[clojure.data.json :as json])
(def concurrency 5)
(let [in (async/chan)
out (async/chan)
request-handler (fn [url out*]
(async/go
@dlokesh
dlokesh / pom.xml
Created October 19, 2013 15:41
Using leiningen for java projects
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<name>hello</name>
<groupId>com.hello.service</groupId>
<artifactId>hello-service</artifactId>
<version>1.0.1-SNAPSHOT</version>