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
clear all; | |
% load the "MLtraining" matrix | |
load('Examtraining.mat'); | |
% movies.dat: replace :: with @ | |
tic; | |
movies_dat = fopen('movies.dat'); | |
movies = textscan(movies_dat, '%d %s %s', 'delimiter', '@'); | |
[m_ids m_names m_genres] = movies{:}; |
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
import java.io.BufferedReader; | |
import java.io.File; | |
import java.io.FileInputStream; | |
import java.io.FileNotFoundException; | |
import java.io.InputStreamReader; | |
import java.net.InetAddress; | |
import java.net.UnknownHostException; | |
public class CompetitionEntry { | |
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
/* | |
* A simple, non-optimizing brainfuck to C translator. | |
* 2010-08-31 - Version 1.0 (Cory Burgett) | |
* | |
* This code is hereby placed into the public domain. | |
* | |
* Originally located at: http://www4.ncsu.edu/~cmburget/brainfucc.c | |
*/ | |
#include <stdio.h> |
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
// ==UserScript== | |
// @name VanthiaBot | |
// @namespace http://richardcarter.org/ | |
// @include http://87.239.219.99/ | |
// ==/UserScript== | |
var allMonstersDead = function () { | |
var actionbar = unsafeWindow.document.getElementById("actionbar"); | |
return (actionbar.style.display == "none"); | |
} |
NewerOlder