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
| var neverGonna = ["give you up", "let you down", "run around and desert you", "make you cry", "say goodbye", "tell a lie and hurt you"]; | |
| for (var i=0; i<neverGonna.length; i++){ | |
| console.log("Never gonna " + neverGonna[i]); | |
| } |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!-- NOTE: The time stamps (frame_date) within this log are incorrect by +3 seconds. | |
| The node M2 was selected as the key reference point for time in this experiment. | |
| The desynchronisation between M2 and C1 has been adjusted to compensate for this within the document. --> | |
| <data> | |
| <console_session type="api2"> | |
| <module_name></module_name> | |
| <module_mac>0013A2004099D823</module_mac> |
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
| // Photoshop Script to Create UI Images for pixel densities | |
| // | |
| // | |
| // Copyright (c) 2016 Dylan Conway | |
| // | |
| // Permission is hereby granted, free of charge, to any person obtaining a copy | |
| // of this software and associated documentation files (the "Software"), to deal | |
| // in the Software without restriction, including without limitation the rights | |
| // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| // copies of the Software, and to permit persons to whom the Software is |
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
| "use strict"; | |
| var fs = require('fs'); | |
| var processContents = function (path, contents) { | |
| var imagedata = contents['images'] !== undefined ? contents['images'] : null | |
| if (imagedata == null) {return} |
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 Funi1234 on 21/02/2016. | |
| */ | |
| var csv = require('fast-csv'), | |
| fs = require("fs"), | |
| path = require("path"); | |
| var sets = {'Zendikar' :'(ZEN)', |
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
| for d in */; do | |
| pushd $d | |
| git pull | |
| popd | |
| done |
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
| #!/bin/sh | |
| # | |
| # Created by Funi1234 on 30/06/2016. | |
| # | |
| if [ -z "$1" ]; then | |
| echo "Slack Webhook URL Required." | |
| echo "Exiting" |
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
| xcrun simctl list devices | grep '\(Shutdown\)' | grep -oE '[0-9A-Z]{8}-([0-9A-Z]{4}-){3}[0-9A-Z]{12}' | xargs -I {} xcrun simctl shutdown "{}" |
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
| #!/usr/bin/perl -w | |
| use strict; | |
| use Device::SerialPort qw( :PARAM :STAT 0.07 ); | |
| use MIME::Lite; | |
| my $to = '[email protected]'; | |
| my $cc; | |
| my $from = '[email protected]'; | |
| my $subject; | |
| my $message; |
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
| // Photoshop Script to Create iPhone App Icons from iTunesArtwork/1024px size image | |
| // | |
| // In the Event of name collisions this script will overwrite files in the export folder. | |
| // | |
| // MIT License | |
| // | |
| // Copyright (c) 2016 Dylan Conway | |
| // | |
| // Permission is hereby granted, free of charge, to any person obtaining a copy | |
| // of this software and associated documentation files (the "Software"), to deal |
OlderNewer