Plot for the Sequential write to file
exercise in UoT CS434
Each line represents a different file size:
- 1MB (baseline)
- 10MB
- 50MB
- 100MB
To see the rest of the work consult github/dscape
function foo(obj) { | |
var keys = []; | |
keys.push(object.name + '@' + obj.version); | |
for (var key in obj) { | |
if (key === 'dependencies' && typeof obj[key] === 'object') | |
keys.push(foo(obj[key])); | |
} | |
} | |
return keys; | |
} |
{ | |
"configuration": { | |
"resortCode": "turkey-any", | |
"ocupation": "2", | |
"departureDate": "20140101,20151212", | |
"duration": "7", | |
"boardBasis": "0", | |
"moreLinkUrl": "/srv-search/search?resortCode=turkey-any&occupation=&departureDate=20140101%2C20151212&duration=7&sort=&boardType=&" | |
}, | |
"papiSearchResults": [ |
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDZe2jje7DAL11/Py4/7mFU8jZY4lkdJg0Ikbaq95nizHOqd23P1ONTlJ4OaLuunJSyoa9C4yWcznRCjgj0ZSZyhC+ySTN2aqudPENUksmzu15CxM8yEcs26OVQKqITG3qeBcKeDmyCAkuAWoehwzHfirVvCbBbIvDvbtjLiifCILxUjRxVz0kSJ6BARqWgdVBSI8c3GTm4q0vXp4M2P3Cyk08ZGj31oEsoYdFfPHG3lDgbmYtSVnwsrMK/ZByL6oufzO84Hk1B5KMMCOnjfsUknFZc5tn085T/A1ngkGOtxdoG/8OMchUcmjJfsVBTpy3shyuFUrOzNxipCin5oR5X [email protected] |
``` | |
Section Time Easy Medium Hard | |
Trial 3m ✔ ✔ ✔ | |
JS 15m ✔ ✔ ✔ ✔ ✗ ✗ ✗ ✗ ✗ ✗ ✗ ✗ | |
Node 15m ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ | |
Modules 10m ✗ ✗ ✗ ✗ ✗ ✗ | |
npm 6m ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ | |
Command Line 5m ✗ ✗ ✗ ✗ ✗ ✗ | |
Apps 15m ✔ ✔ ✔ | |
``` |
Predictably Irrational: The Hidden Forces that Shape Our Decisions | |
Quiet: The power of introverts in a world that can't stop talking | |
Business Adventures | |
Zero to One | |
Beyond Budgeting | |
Winning Decisions: Getting It Right the First Time | |
Creativity Inc | |
Good to Great | |
Surviving & Thriving in a Relationship with an Entrepreneur | |
First, Break All the Rules |
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<link rel="import" href="../paper-progress/paper-progress.html"> | |
<link rel="import" href="../paper-input/paper-input.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> |
fffoo | |
fffd | |
sddssdsd | |
dssdsd | |
sdsdsd |
Plot for the Sequential write to file
exercise in UoT CS434
Each line represents a different file size:
To see the rest of the work consult github/dscape
<html> | |
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script> | |
<script> | |
$.getJSON('http://localhost:3000/athlete/1', function(data) { | |
console.log(data); | |
}); | |
</script> | |
</html> |
#!/usr/bin/env bash | |
# | |
# Ask the textmate guys? | |
# | |
[[ -f "${TM_SUPPORT_PATH}/lib/bash_init.sh" ]] && . "${TM_SUPPORT_PATH}/lib/bash_init.sh" | |
# | |
# Name: reformat.js | |
# Author: @dscape |