Skip to content

Instantly share code, notes, and snippets.

View exergonic's full-sized avatar
🏠
Working from home

Billy Wayne McCann exergonic

🏠
Working from home
View GitHub Profile
@wandersoncferreira
wandersoncferreira / install_scala.sh
Created September 23, 2017 12:11
Installing SBT and Scala in Ubuntu 16.04
## Java
sudo apt-get update
sudo apt-get install default-jdk
## Scala
sudo apt-get remove scala-library scala
sudo wget http://scala-lang.org/files/archive/scala-2.12.1.deb
sudo dpkg -i scala-2.12.1.deb
sudo apt-get update
sudo apt-get install scala
@jmacias
jmacias / .emacs
Created January 6, 2017 22:10 — forked from kaz-yos/.emacs
.emacs file to run Spacemacs and regular Emacs side by side.
;;; dot_emacs.el --- -*- lexical-binding: t; -*-
;;; Select emacs config file directory depending on emacs being run
;; Added by Package.el. This must come before configurations of
;; installed packages. Don't delete this line. If you don't want it,
;; just comment it out by adding a semicolon to the start of the line.
;; You may delete these explanatory comments.
;; (package-initialize)
@kaz-yos
kaz-yos / .emacs
Last active January 13, 2021 23:26
.emacs file to run Spacemacs and regular Emacs side by side.
;;; dot_emacs.el --- -*- lexical-binding: t; -*-
;;; Select emacs config file directory depending on emacs being run
;; Added by Package.el. This must come before configurations of
;; installed packages. Don't delete this line. If you don't want it,
;; just comment it out by adding a semicolon to the start of the line.
;; You may delete these explanatory comments.
;; (package-initialize)
@exergonic
exergonic / quaternion_rotation.F
Last active November 21, 2020 09:29
Fortran77 subroutine for rotation about an arbitrary axis
c Copyright (c) 2014 by Billy Wayne McCann
c All rights reserved.
c
c Redistribution and use in source and binary forms, with or without
c modification, are permitted provided that the following conditions
c are met:
c 1. Redistributions of source code must retain the above copyright
c notice, this list of conditions and the following disclaimer.
c 2. Redistributions in binary form must reproduce the above copyright
c notice, this list of conditions and the following disclaimer in the