This file contains 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
Matts-MacBook-Air:cleveland-land-services.co.uk mattkirwan$ grunt --env=production | |
Running "replace:modxSettings" (replace) task | |
Replace web/z64ml/config.core.php → web/z64ml/config.core.php | |
Replace web/n3yu9/config.core.php → web/n3yu9/config.core.php | |
Replace web/config.core.php → web/config.core.php | |
Replace core_tY670_uW/config/No3r4kXHBbNdLJdw9ryZJrfrP52Jvy1q.inc.php → core_tY670_uW/config/No3r4kXHBbNdLJdw9ryZJrfrP52Jvy1q.inc.php | |
Running "copy:build" (copy) task | |
Created 17 directories, copied 120 files |
This file contains 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
#!/bin/bash | |
twitch_accounts=() | |
while read line | |
do | |
twitch_accounts+=("$line") | |
done < <(curl http://www.reddit.com/r/RedditDads/wiki/twitch_and_youtube | grep "* http://www.twitch.tv/" | sed 's/* http\:\/\/www\.twitch\.tv\//\ /;s//\n/') | |
for twitch_account in "${twitch_accounts[@]}" | |
do |
This file contains 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
{ | |
"keymaps": { | |
"0": { "type": "scroll.home" }, | |
":": { "type": "command.show" }, | |
"o": { "type": "command.show.open", "alter": false }, | |
"O": { "type": "command.show.open", "alter": true }, | |
"t": { "type": "command.show.tabopen", "alter": false }, | |
"T": { "type": "command.show.tabopen", "alter": true }, | |
"w": { "type": "command.show.winopen", "alter": false }, | |
"W": { "type": "command.show.winopen", "alter": true }, |
This file contains 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
File file = new File("./input.txt"); | |
Scanner sc = new Scanner(file); | |
Integer currentElf = 0; | |
ArrayList<Integer> elfCalories = new ArrayList<>(); | |
elfCalories.add(0); | |
while (sc.hasNextInt()) { | |
String line = sc.nextLine(); |
OlderNewer