Skip to content

Instantly share code, notes, and snippets.

@prasmalla
prasmalla / marbles-1.json
Last active February 11, 2024 16:21
marbles-1
{
"name": "uskz deviant #1",
"symbol": "USKZ",
"description": "Don't lose your marbles!?",
"seller_fee_basis_points": 5,
"external_url": "",
"edition": "",
"background_color": "000000",
"image": "https://bafkreiccy3qpwisutkvdobexrmj3frzkgp32vxx6sysfw7sd5cys2rzqra.ipfs.nftstorage.link/"
}
https://www.macrium.com/download/VerifySoftware?id=MS97-9K25&type=h&edition=5&download=y
@prasmalla
prasmalla / plutus-pioneer-osx.sh
Created April 8, 2021 14:58
getting started with plutus pioneer on osx
#[optional] Installing Libsodium - ONLY if you do not want nix to handle this - otherwise skip
git clone https://github.com/input-output-hk/libsodium
cd libsodium
git checkout 66f017f1
./autogen.sh
./configure
make
sudo make install && cd ..
#Export and source ~/.bashrc
export LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH"
-- Haskell is a functional programming language
-- Everything is immutable so once a value is set it is set forever
-- Functions can be passed as a parameter to other functions
-- Recursion is used often
-- Haskell has no for, while, or technically variables, but it does have
-- constants
-- Haskell is lazy in that it doesn't execute more then is needed and instead
-- just checks for errors
-- Best Free Haskell Book
@prasmalla
prasmalla / 00.howto_install_phantomjs.md
Last active July 21, 2019 22:18 — forked from julionc/00.howto_install_phantomjs.md
How to install PhantomJS on Debian/Ubuntu

How to install PhantomJS on Ubuntu

Version: 2.1.1

Platform: x86_64

First, install or update to the latest system software.

sudo apt-get update
sudo apt-get install build-essential chrpath libssl-dev libxft-dev
@prasmalla
prasmalla / install_ffmpeg_ubuntu.sh
Created June 3, 2016 13:45 — forked from xdamman/install_ffmpeg_ubuntu.sh
Install latest ffmpeg on ubuntu 12.04 or 14.04
#!/bin/bash
# Bash script to install latest version of ffmpeg and its dependencies on Ubuntu 12.04 or 14.04
# Inspired from https://gist.github.com/faleev/3435377
# Remove any existing packages:
sudo apt-get -y remove ffmpeg x264 libav-tools libvpx-dev libx264-dev
# Get the dependencies (Ubuntu Server or headless users):
sudo apt-get update
brew install pyenv
brew install libxml2 libxslt
export PATH=~/.pyenv/shims:$PATH
pyenv install 2.7
pyenv local 2.7
pip install lxml
pip install requests
pip install beautifulsoup4