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
| // Make XHR request for the pls file | |
| if (window.XMLHttpRequest) { | |
| // code for IE7 +, Firefox, Chrome, Opera, Safari | |
| xhr = new XMLHttpRequest(); | |
| } else { | |
| // code for IE6, IE5 | |
| xhr = new ActiveXObject("Microsoft.XMLHTTP"); | |
| } | |
| xhr.open("GET", "https://somafm.com/missioncontrol130.pls", false); | |
| xhr.send(); |
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"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <!-- Link to external style sheet --> | |
| <link rel="stylesheet" href="css/style.css"> | |
| <!-- description should be between 120 & 150 characters --> |
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
| # Your init script | |
| # | |
| # Atom will evaluate this file each time a new window is opened. It is run | |
| # after packages are loaded/activated and after the previous editor state | |
| # has been restored. | |
| # | |
| # An example hack to log to the console when each text editor is saved. | |
| # | |
| # atom.workspace.observeTextEditors (editor) -> | |
| # editor.onDidSave -> |