Skip to content

Instantly share code, notes, and snippets.

View bmann's full-sized avatar
🏝️
In the jungle, eating cold squirrel with @anthrocypher

Boris Mann bmann

🏝️
In the jungle, eating cold squirrel with @anthrocypher
View GitHub Profile

[0.72.2]

  • Initial version
@SohamG
SohamG / fonts.conf
Last active March 13, 2024 13:09
Fix emoji in Linux and get color emoji in Discord! Place this fontconfig file in ~/.config/fontconfig/fonts.conf
<?xml version="1.0"?><!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<!-- REQUIRES Noto fonts (along with Noto Color Emoji)
run `fc-list | grep -i -e "noto sans" -e "noto serif" -e "noto color emoji"` to confirm
-->
<!-- Change the string in the family tag to whatever font -->
<family>serif</family>
<prefer><family>Noto Serif</family></prefer>
</alias>
@gootee
gootee / availableToHelp
Created March 14, 2019 00:34
Want to work with a team!
I currently have availability to help teams/companies writing software with JavaScript.
What I'm looking for
- Contract, freelance or volunteer opportunities
- Junior developer position working with mentors
- Vancouver, BC area (near Skytrain) or remote
What I can offer
- 20 years of full-stack development experience building desktop apps
- Currently developing front-end of my own app (JS, React/Redux, Bootstrap) (9 months)
@rmrfslashbin
rmrfslashbin / MediaWiki_on_Heroku.md
Last active August 16, 2022 06:26
Deploying and updating MediaWiki on Heroku.

Deploying and Updating MediaWiki on Heroku

This is a very rough guide to deploying and updating MediaWiki on Heroku. Lots of assumptions are made. Be sure to keep your MediaWiki deployment up-to-date!

Assumptions

  • A GitHub account.
  • A Heroku account.
  • A configured app on Heroku.
  • A MySQL (or compatible database. This guide assumes the use of Cleardb Heroku add-on).
  • Optional add-on: Hosted Graphite.
  • Optional add-on: Papertrail.
@cleverdevil
cleverdevil / process_albums.py
Created March 5, 2018 01:20
Process fb-export album data, upload the photos to a Micropub media endpoint, and export MF2-JSON data for posts
#!/usr/bin/env python
'''
Conditionally upload all of the photos from an exported Facebook album to a
Micropub-compatible website with a media endpoint, and dump MF2-JSON data
that can later be published to the same Micropub website.
'''
import json
import sys
@Ketrel
Ketrel / relBase.html
Last active October 11, 2023 12:17
Relative url base for jekyll
{% assign relBase = '' %}
{% assign tempDepth = page.url | append: 'hackish-solution' | split: '/' | size | minus: 2 %}
{% for i in (1..tempDepth) %}
{% assign relBase = relBase | append: "../" %}
{% endfor %}
{% if relBase == '' %}
{% assign relBase = './' %}
{% endif %}
@syrte
syrte / markdown.tid
Last active June 29, 2022 23:26
A drop-in replacement to the official TiddlyWiki Markdown plugin. It is implemented with markdown-it and supports math through katex.
author: JeremyRuston, Syrte
core-version: >=5.0.0
dependents:
description: Markdown parser
list: readme usage howto
plugin-type: plugin
revision: 0
title: $:/plugins/tiddlywiki/markdown
type: application/json
version: 6.0.0
0xA8C7372dC993d7510C9c45425807d463967cbb12
@jcouyang
jcouyang / ipfs
Created July 29, 2017 06:02
/etc/init.d/ipfs
#!/bin/sh
### BEGIN INIT INFO
# Provides: ipfs daemon
# Required-Start: $local_fs $remote_fs $network $syslog $named
# Required-Stop: $local_fs $remote_fs $network $syslog $named
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Starts the ipfs daemon
# Description: Starts the ipfs daemon using the start-stop-daemon
### END INIT INFO