Skip to content

Instantly share code, notes, and snippets.

View PicciMario's full-sized avatar

Mario Piccinelli PicciMario

View GitHub Profile
@PicciMario
PicciMario / dgiv_gimbal_pitch.ahk
Created November 29, 2016 22:18
Script AutoHotKey per settare gimbal pitch dei motori del DGIV (Orbiter Space Simulator) con Alt+J/K/L
; ----------------------------------------------------------------
; Script AutoHotKey per settare gimbal pitch dei motori del DGIV
; (Orbiter Space Simulator) con Alt+J/K/L
; PicciMario <mario.piccinelli@gmail.com>
; Versione 0.1 29/11/2016
; ----------------------------------------------------------------
; Coordinate centrali del controllo pitch nella schermata del gioco
dgiv_gimbal_x:=897
dgiv_gimbal_y:=976
@PicciMario
PicciMario / random.sh
Created January 13, 2011 15:46
Prints the name of a random file in the current directory
# Prints the name of a random file in the current directory
#! /bin/bash
set -- *
length=$#
random_num=$(( $RANDOM % ($length + 1) ))
echo ${!random_num}