This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ config, pkgs, ... }: | |
let | |
hostname = "luz3"; | |
in { | |
imports = | |
[ # Include the results of the hardware scan. | |
./hardware-configuration.nix | |
# I use VirtualBox to connect to Windows and Linux guests |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class simplexCarmody | |
{ | |
int[] T; | |
private static int i, j, k; | |
private static int[] A = new int[3]{0, 0, 0}; | |
private static float u, v, w, s; | |
private static float onethird = 0.333333333f; | |
private static float onesixth = 0.166666667f; | |
public simplexCarmody(Random randObj) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Watch | |
# Instance property | |
location: 'here' | |
# Class property | |
@location: 'over there' | |
locate: -> | |
alert "I am #{@location}." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Created by Eric Lindvall <[email protected]> | |
# | |
# WHAT: Provides a simple overview of memory allocation occuring during a | |
# require. | |
# | |
# NOTE: The numbers provided are of self + children, meaning the same will | |
# be attributed to multiple files at once. | |
# | |
# Also, memory that is no longer referenced (and would be freed) is still |