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
final TimerTask messageLabelStrengthTimerTask = new TimerTask() { | |
@Override | |
public void run() { | |
Platform.runLater(new Runnable() { | |
@Override | |
public void run() { | |
rootGroup.getChildren().remove( | |
labelStrength); | |
} | |
}); |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<meta name="description" content="Control Panel"> | |
<title>CS Dashboard - Control panel</title> | |
<link href="css/bootstrap.min.css" rel="stylesheet"> | |
<link href="css/styles.css" rel="stylesheet"> |
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
library("ggplot2") | |
source("PupilsPerTeacherRatio.R") # load our data | |
source("ExpenditurePerStudent_Pupils.R") # load the data | |
data = matrix(c(cleanedData.pupils$Years, cleanedData.pupils$ExpednInSD, | |
cleanedData.ratio$PupilsPerTeacher), ncol=3) | |
df = data.frame(data) | |
colnames(df) <- c("Year", "MoneySpend", "Ratio") | |
#TODO ggplot |
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
{ | |
"abstracts-retrieval-response": | |
{ | |
"coredata": | |
{ |
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
<abstracts-retrieval-response><coredata><prism:url>http://api.elsevier.com/content/abstract/scopus_id/0037070197</prism:url><dc:identifier>SCOPUS_ID:0037070197</dc:identifier><eid>2-s2.0-0037070197</eid><pubmed-id>11852050</pubmed-id><prism:doi>10.1016/S0014-5793(01)03313-0</prism:doi><dc:title>The orientation of the antibiotic peptide maculatin 1.1 in DMPG and DMPC lipid bilayers. Support for a pore-forming mechanism</dc:title><prism:aggregationType>Journal</prism:aggregationType><srctype>j</srctype><citedby-count>44</citedby-count><prism:publicationName>FEBS Letters</prism:publicationName><source-id>17481</source-id><prism:issn>00145793</prism:issn><prism:volume>512</prism:volume><prism:issueIdentifier>1-3</prism:issueIdentifier><prism:startingPage>47</prism:startingPage><prism:endingPage>51</prism:endingPage><prism:pageRange>47-51</prism:pageRange><prism:coverDate>2002-02-13</prism:coverDate><dc:creator><author auid="55126316600" seq="1"><ce:initials>C.S.B.</ce:initials><ce:indexed-name>Chia C.S.B.</ce:ind |
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
# An interface to data hosted online in Socrata data repositories | |
# This is the main file which uses other functions to download data from a Socrata repositories | |
# | |
# Author: Hugh J. Devlin, Ph.D et al. 2013-08-28 | |
############################################################################### | |
# library("httr") # for access to the HTTP header | |
# library("jsonlite") # for parsing data types from Socrata | |
# library("mime") # for guessing mime type | |
# library("geojsonio") # for geospatial json |
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
library(e1071) | |
library(rpart) | |
library(gbm) | |
library(randomForest) | |
library(caret) | |
library(foreach) | |
set.seed(5152) | |
pml.testing <- read.csv("PracticalML/project/pml-testing.csv", na.strings = c("NA", "")) |
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
// ==UserScript== | |
// @name Tweetdeck Permant | |
// @description Block that fucking heart on tweetdeck | |
// @namespace https://tweetdeck.twitter.com | |
// @include https://*.twitter.com/* | |
// @include https://tweetdeck.com/* | |
// @include https://tweetdeck.twitter.com/* | |
// @version 1.3 | |
// @author https://github.com/dmpe | @dmpe | John Malc | |
// @grant none |
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
library(shiny) | |
library(shinydashboard) | |
header <- dashboardHeader( | |
title = "Dashboard Demo", | |
# Dropdown menu for messages | |
dropdownMenu( | |
type = "messages", | |
badgeStatus = "success", |
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
library(shiny) | |
library(shinydashboard) | |
header <- dashboardHeader(title = "Dashboard Demo") | |
body <- dashboardBody() | |
server <- function(input, output) { | |
} |
OlderNewer