We welcome anyone who is interested in replicate our study
Steps:
- Get commits on githubarchive.org
- Automatic filter
- Manual filter
SELECT | |
a.repository_name as name, | |
a.repository_owner as owner, | |
a.repository_organization as organization, | |
a.repository_watchers AS stars, | |
a.repository_forks AS forks, | |
a.repository_language as language | |
FROM ( | |
select * | |
from [githubarchive:github.timeline] a |
currentPositions.parallelStream().forEach(x -> assembleReachablePositions(x)) |
[INFO] Scanning for projects... | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] Building Groundhog | |
[INFO] task-segment: [clean, deploy] | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] [clean:clean {execution: default-clean}] | |
[INFO] Deleting directory C:\Users\ghlp\msysgit\msysgit\workspace\groundhog\target | |
[INFO] [enforcer:enforce {execution: enforce-maven}] | |
[INFO] [resources:resources {execution: default-resources}] | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. |
git log --pretty=format:"%ae" | sort | uniq |
seq <- c(78, 78, 78, 78) | |
thread <- c(80, 60, 55, 42) | |
executors <- c(80, 56, 42, 31) | |
forkJoin <- c(79, 55, 52, 54) | |
actors <-c(82, 47, 38, 30) | |
plot(thread, type="o", col="blue", pch=18, ylim=c(20, 100)) | |
lines(seq, type="o", pch=23, lty=1, col="darkred") | |
lines(executors, type="o", pch=24, lty=1, col="purple") |
Itens: | |
- Monitor Philips LCD 21,5''; 2 anos de uso; R$ 230,00; http://migre.me/dMMc8 | |
- Desktop Sim+ Core 2 Duo 4 Gb Ram; 2 anos de uso; R$ 500,00; http://migre.me/dMMBz | |
- Kindle wifi; 2 meses de uso; R$ 250,00; http://migre.me/dMO5B | |
Obs1: Links meramente ilustrativos: *não são os mesmos itens que estou vendendo*. | |
Obs2: Todos os itens estão em perfeito estado de conservação. | |
Obs3: Pacote especial para levar monitor + desktop. |
from SimpleCV import Camera, Display, Image | |
cam = Camera() | |
disp = Display((800, 600)) | |
stache = Image("mustache.png") | |
mask = stache.invert() | |
while disp.isNotDone(): | |
img = cam.getImage() |
public class TesteLockWatts { | |
private Contador contador = new Contador(); | |
public void testar() { | |
for (int i = 0; i < 1000; i++) { | |
new Thread() { | |
public void run() { | |
for (int j = 0; j < 100000; j++) { |
BufferedImage resizedImage = new BufferedImage(width, height, originalImage.getType()); | |
Graphics2D g = resizedImage.createGraphics(); | |
g.drawImage(originalImage, 0, 0, width, height, null); | |
g.dispose(); |