Skip to content

Instantly share code, notes, and snippets.

View domenicrosati's full-sized avatar
🏠
Working from home

Domenic Rosati domenicrosati

🏠
Working from home
View GitHub Profile
We can't make this file beautiful and searchable because it's too large.
,rcn,language,title,teaser,summary,workPerformed,finalResults,lastUpdateDate,country,projectID,projectAcronym,programme,topics,url
9073,186435,en,Periodic Reporting for period 1 - PANIPLAST (Industrial Development of PANIPLAST Process Poly(aniline) Conductive Polymers),"Polyaniline has historically been one of the most promising conductive polymers from a cost/performance perspective, but processing issues have limited its uptake. Building upon seminal work on polyaniline performed at the CEA, RESCOLL (an independent research company based in...","Polyaniline has historically been one of the most promising conductive polymers from a cost/performance perspective, but processing issues have limited its uptake. Building upon seminal work on polyaniline performed at the CEA, RESCOLL (an independent research company based in France specialized in chemistry materials) has developed and patented a new electrically conductive polyaniline formulation under the trade name of PANIPLAST™.
PANIPLAST polymers are safe-by
@domenicrosati
domenicrosati / citations_to_retracted_by_journal.csv
Created October 29, 2020 18:51
Journal Citations to Retracted Articles Post Retraction
Journal Total Citations Citations to Retracted Articles Post Retraction % of citations to retracted articles
plos one 12783331 2959 0.02%
scientific reports 6295134 1227 0.02%
oncology letters 802286 898 0.11%
journal of biological chemistry 10712422 866 0.01%
biomed research international 1789456 806 0.05%
oncotarget 1353740 791 0.06%
international journal of molecular sciences 2380553 766 0.03%
proceedings of the national academy of sciences 9984417 704 0.01%
molecular medicine reports 754664 646 0.09%
@domenicrosati
domenicrosati / thingsToDo.js
Last active November 26, 2018 01:15
things to do
// you could change the height and width using something like this in the Box function.
this.width = width;
this.height = height;
// you could even make width and height random by doing something like:
width = Math.random() * 50;
heigh = Math.random() * 50;
// you could do other math things: https://www.w3schools.com/jsref/jsref_obj_math.asp
// ie. a sine wave, the "sin" function makes a wave sin(x) = "a wavy y"
var canvas = document.getElementById("myCanvas");
var ctx = canvas.getContext("2d");
function drawRect(x, y) {
ctx.fillStyle = "green";
ctx.fillRect(x, y, 50, 50);
}
// box co-ordinates
var x = 0;
@domenicrosati
domenicrosati / canvasAnimation
Last active September 23, 2018 23:20
getting started with animation
// jsfiddle.net
// functions
function drawBlueRectangle() {
ctx.fillStyle = "blue";
ctx.fillRect(0, 0, 50, 50);
}
// another function
function drawBlueCircle() {
@domenicrosati
domenicrosati / canvasDrawing.js
Created September 17, 2018 00:01
Getting Started with a Canvas
// jsfiddle.net
// html: <canvas id="myCanvas" width="500" height="500"></canvas>
// getting the canvas and canvas context
var canvas = document.getElementById("myCanvas");
var ctx = canvas.getContext("2d");
// drawing a point point
ctx.moveTo(5, 5);
ctx.lineTo(5, 6);