duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
| #!/bin/bash | |
| # "Bash Strict Mode with logging" | |
| set -eux -o pipefail | |
| IFS=$'\n\t' | |
| case $(uname -p) in | |
| arm) | |
| ;; | |
| *) |
Memory Optimization (Christer Ericson, GDC 2003)
http://realtimecollisiondetection.net/pubs/GDC03_Ericson_Memory_Optimization.ppt
Cache coherency primer (Fabian Giesen)
https://fgiesen.wordpress.com/2014/07/07/cache-coherency/
Code Clinic 2015: How to Write Code the Compiler Can Actually Optimize (Mike Acton)
http://gdcvault.com/play/1021866/Code-Clinic-2015-How-to
| from collections import deque | |
| from math import sin, cos, pi, atan2, hypot | |
| import random | |
| import time | |
| import wx | |
| SIZE = 600 | |
| COUNT = 64 | |
| SPEED = 100 | |
| FOLLOWERS = 4 |
| #!/usr/bin/env ruby | |
| # A script to create a review on crucible based on the current git branch and | |
| # youtrack ticket. | |
| # | |
| # To configure settings, create a file named .code-review in your home directory | |
| # The format should be: | |
| # ------------------------------------------------------------------------------ | |
| # crucible: | |
| # url: <crucible url> | |
| # username: <username> |
| LOCAL_PATH := $(call my-dir) | |
| include $(CLEAR_VARS) | |
| LOCAL_MODULE := game_shared | |
| LOCAL_MODULE_FILENAME := libgame | |
| #traverse all the directory and subdirectory | |
| define walk |
| #!/bin/sh | |
| # Download Neko | |
| curl -L http://nekovm.org/_media/neko-2.0.0-osx.tar.gz > neko-2.0.0-osx.tar.gz | |
| # Extract and copy files to /usr/lib/neko |
| <?php | |
| /** | |
| * A helper file for Laravel 5, to provide autocomplete information to your IDE | |
| * Generated for Laravel 5.5.13 on 2017-09-28. | |
| * | |
| * @author Barry vd. Heuvel <barryvdh@gmail.com> | |
| * @see https://github.com/barryvdh/laravel-ide-helper | |
| */ | |
| namespace { | |
| exit("This file should not be included, only analyzed by your IDE"); |