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
| public void announce() | |
| { | |
| String[] track = getTrack(); | |
| if (track.length == 1) return; | |
| String message = "[iTunes] " + track[1] + " - " + track[0] + " (" + track[2] + ")"; | |
| sendMessage(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
| /* Created by Nathaniel Higgins - http://nath.is */ | |
| package net.minecraft.src; | |
| import java.io.*; | |
| import java.util.*; | |
| import java.lang.reflect.*; | |
| public class mod_TuneCraft extends BaseMod | |
| { | |
| public List<Object> chatCommands = new ArrayList<Object>(); |
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
| <!DOCTYPE HTML> | |
| <html lang="en-US"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Testing</title> | |
| <style type="text/css"> | |
| .scroll { | |
| width: 300px; | |
| height: 180px; | |
| overflow: auto; |
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
| ((window, undefined) -> | |
| doStuff() | |
| )(window) |
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
| (function(window, undefined) { | |
| })(window) |
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
| classManager.prototype = classManager.fn = | |
| init: (element) -> | |
| this.element = element | |
| return this | |
| addClass: (class) -> | |
| console.log this.element |
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
| key: func1 func2 x, (-> | |
| doStuff() | |
| ) |
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
| key: func1 func2(x, -> | |
| doStuff() | |
| ) |
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
| f(x).y |
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
| f x $.y // f(x).y | |
| f x z $.y // f(x(z).y) | |
| f x z $$.y // f(x(z)).y |