Skip to content

Instantly share code, notes, and snippets.

@greglearns
greglearns / default.nix
Last active February 13, 2019 20:39
NixOS default.nix for compiling Nightly Rust using Mozilla overlay, also with a specific RustRegistry for specific date, to handle "version not found" issues. Doesn't actually work, so do not use.
{
pkgs ? (
let
pkgs = import <nixpkgs>;
pkgs_ = (pkgs {});
rustOverlay = (pkgs_.fetchFromGitHub {
owner = "mozilla";
repo = "nixpkgs-mozilla";
rev = "1608d31f7e5b2415fb80b5d76f97c009507bc45f";
sha256 = "0mznf82k7bxpjyvigxvvwpmi6gvg3b30l58z36x192q2xxv47v1k";
super: self:
let
rustOverlayRepo = self.fetchFromGitHub {
owner = "mozilla";
repo = "nixpkgs-mozilla";
rev = "90d41cd5dd6c31c7bfaaab68dd6f00bae596d742";
sha256 = "0cpv969mgv2v8fk6l9s24xq1qphwsvzbhf8fq4v6bkkwssm0kzn6";
};
rustOverlay = import "${rustOverlayRepo}/rust-overlay.nix" self super;
@gkarugi
gkarugi / setup.sh
Last active June 10, 2017 02:41 — forked from eduwass/setup.sh
Flynn Install : Single node ( for Ubuntu 16.04 x64)
#!/bin/bash
# This script will automatically set up a single node Flynn Cluster on your linux box
# Fresh Flynn install with domain provided by the xip.io service
# Tested with Base Image: Ubuntu 16.04 x64 @ DigitalOcean droplet
# @date 11 May 2017
# Original @author Edu Wass (eduwass at gmail com)
echo '---- START SETUP ----'
@oeb25
oeb25 / default.nix
Last active February 19, 2021 14:35
Elixir/Phoenix Nix and script configuration
with import <nixpkgs> {};
stdenv.mkDerivation rec {
name = "env";
env = buildEnv { name = name; paths = buildInputs; };
buildInputs = [
yarn
nodejs-6_x
elixir
postgresql96
@alee
alee / views.py
Last active October 18, 2024 14:20
example Django view function that can be used for Discourse SSO, i.e., Discourse delegates User authentication to Django
import base64
import hmac
import hashlib
from urllib import parse
from django.contrib.auth.decorators import login_required
from django.http import HttpResponseBadRequest, HttpResponseRedirect
from django.conf import settings
@login_required
@rogeriopradoj
rogeriopradoj / 1.md
Last active October 6, 2018 21:07
How to install vagrant with windows server 2012, iis, classic asp, sql server 2014
@pdonorio
pdonorio / Dockerfile
Last active January 4, 2018 03:42
Install and use iRODS iCAT server 4.2.0 with docker containers
FROM ubuntu:16.04
# LTS
MAINTAINER "Paolo D'Onorio De Meo"
# Preparation
RUN apt-get update -qq && apt-get install -y \
## normal base
wget git vim expect lsof sudo \
## fix adding irods to source list
@ageis
ageis / systemd_service_hardening.md
Last active April 5, 2025 13:14
Options for hardening systemd service units

security and hardening options for systemd service units

A common and reliable pattern in service unit files is thus:

NoNewPrivileges=yes
PrivateTmp=yes
PrivateDevices=yes
DevicePolicy=closed
ProtectSystem=strict
@apritzel
apritzel / firmware_build.md
Created June 19, 2016 20:37
Building instructions for firmware image

Rebuilding the firmware image

The Pine64 firmware consists of four parts:

  • The on-chip boot ROM (BROM), which cannot be changed and does the very first steps in loading code. It is part of the A64 SoC and thus not included here.
  • A secondary program loader (SPL): Its main task is to initialize the DRAM and load the remaining firmware parts. Due to BROM limitations the SPL is limited in size to 32K. The SPL can be a part of U-Boot, but at the moment we lack free source for the DRAM initialization. The alternative is to use Allwinner's boot0, which is a closed source, but redistributable blob serving the same purpose.
  • An EL3 runtime firmware. The task of this code is to provide runtime services like PSCI. It stays resident during the whole time and can be called from an OS like Linux to enable or disable secondary cores or request other services. It also takes care of low level CPU initialization and some errata handling. We use a version of ARM Trusted Firmware, based on the official 1.0 release from
@abhin4v
abhin4v / upsert.clj
Last active July 4, 2022 20:42
Postgres Upsert in Clojure using clojure.java.jdbc and honeysql.
(ns postgres.upsert
(:require [honeysql.core :as sql]
[clojure.java.jdbc :as jdbc]
[clojure.string :as str]
[clojure.set :as set]))
(defn- keyword->colname [kwd]
(-> kwd
name
(str/replace #"-" "_")))