Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View HashNuke's full-sized avatar
💭
Life happened. I now have varied interests. I may be slow to respond.

Akash Manohar HashNuke

💭
Life happened. I now have varied interests. I may be slow to respond.
View GitHub Profile
import Combine
import Foundation
import PlaygroundSupport
PlaygroundPage.current.needsIndefiniteExecution = true
var publisher = PassthroughSubject<Int, Error>()
let cancellable = publisher
.flatMap { Just($0).setFailureType(to: Error.self) }
.handleEvents(
@HashNuke
HashNuke / SwiftUI-SplitView-MacOS.swift
Last active January 5, 2024 18:53
Using a NSSplitViewController with SwiftUI on mac to render SwiftUI views as split panes. Drop this code into a playground to try it out. SORRY MAC-OS ONLY. DOES NOT WORK ON IOS
import AppKit
import SwiftUI
// Delete this line if not using a playground
import PlaygroundSupport
struct ContentView: View {
var body: some View {
// if spacing is not set to zero, there will be a gap after the first row

Keybase proof

I hereby claim:

  • I am hashnuke on github.
  • I am hashnuke (https://keybase.io/hashnuke) on keybase.
  • I have a public key ASCYpt4PklMYqN6rB6wy0mf9_rBfUepaKcY3u8GYNeb1QQo

To claim this, I am signing this object:

@HashNuke
HashNuke / node-gyp-on-small-servers.md
Last active November 29, 2015 08:38
node-gyp on small servers

node-gyp on small servers

node-gyp needs more ram or swap space to install. Use these commands to create swap space as root. (if using sudo, then put the following in a file and then run it using sudo).

Assumes you have Ubuntu. Should work for most Debian-based OSes.

These are quick copy-paste commands to create 2gb swap space. Look at the end for info.

# feel free to change below values
@HashNuke
HashNuke / index.html
Created October 29, 2015 17:17
Buildings and the moon OR a bar chart
<!doctype html>
<html>
<head>
<title>Buildings and the moon OR a bar chart</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js" charset="utf-8"></script>
</head>
<body>
<svg>
defmodule Mix.Tasks.Phoenix.Release do
use Mix.Task
@shortdoc "Creates a release using exrm"
def run(args) do
Application.put_env(:phoenix, :serve_endpoints, true, persistent: true)
Mix.Task.run "release", args
end
end
@HashNuke
HashNuke / circle-ci-elixir-config
Created June 15, 2015 13:02
expected CircleCI config-for-elixir
machine:
environment:
PATH: "$HOME/.asdf/bin:$HOME/.asdf/shims:$PATH"
services:
- redis
dependencies:
cache_directories:
- ~/.asdf
pre:
- if ! asdf | grep version; then git clone https://github.com/HashNuke/asdf.git ~/.asdf; fi
defmodule Tryout do
def hello(name \\ "akash")
def hello(name) do
IO.puts name
end
end
Tryout.hello #=> akash
Tryout.hello("nuke") #=> nuke
@HashNuke
HashNuke / fantastic_rotors.ex
Created October 4, 2014 04:53
INCOMPLETE - WORK IN PROGRESS. Supposed to be used as Fantastic.Rotors.start(options)
defmodule Fantastic.Rotors do
import Rotor.BasicRotors
import CoffeeRotor
import SassRotor
# NOT TESTED won't work
# TODO digested output has to be stored in the application env, as a map, so that it's accessible in the templates.
# so the hash would contain %{"file name" => "digest"}
Rotor.watch :all_files_in_project_root, ["*"], fn(changed, all)->
IO.inspect "CHANGED FILES"
IO.inspect changed
IO.inspect "ALL FILES"
IO.inspect all
end
# Options can be passed as a 4th arg after the rotor function.
# Currently available option is `interval`.
# Default polling interval is 2500 (2.5 seconds).