Skip to content

Instantly share code, notes, and snippets.

View Rexeh's full-sized avatar
💭
Building v2 of Joystick Diagrams!

Rob Rexeh

💭
Building v2 of Joystick Diagrams!
View GitHub Profile
param (
[String]$LanguageToFix = 'en-SG'
)
$lng = Get-WinUserLanguageList
$lng.Add($LanguageToFix)
Set-WinUserLanguageList -Force $lng
$lng.Remove( ( $lng | Where-Object LanguageTag -like $LanguageToFix ) ) 2>&1 | Out-Null
Set-WinUserLanguageList -Force $lng
@gilbitron
gilbitron / .env.travis
Last active August 12, 2023 08:06
Laravel 5 Travis CI config
APP_ENV=testing
APP_KEY=SomeRandomString
DB_CONNECTION=testing
DB_TEST_USERNAME=root
DB_TEST_PASSWORD=
CACHE_DRIVER=array
SESSION_DRIVER=array
QUEUE_DRIVER=sync
@Rexeh
Rexeh / import_tix.py
Last active March 15, 2016 19:14 — forked from ryanmark/import_tix.py
Forked from work by ryanmark - Fixed some parse issues with certain characters - Accepts multiple text files - Milestones requested during the import process - Automatic list of projects based on those available under account (allows fast import to many projects) - User/Pass requested in application (bit more secure)
#!/usr/bin/env python
# Modified by Robert Cox
#
# Please enter UNFUDDLE URL below as unfuddle_domain
#
# Takes a markdown formatted sked of milestones and tickets and
# pushes it all into unfuddle. Tries to prevent duplicates, but
# doesn't do a great job because Unfuddle's API acts strangely.
#
# usage: UFimport.py coretickets.txt othertickets.txt