Google Summer of Code '19 Final Submission Report
- Project Repository: https://gitlab.com/aossie/CarbonFootprint-API
- Live Project: https://carbonhub.org
Google Summer of Code '19 Final Submission Report
{"lastUpload":"2020-08-14T06:29:50.142Z","extensionVersion":"v3.4.3"} |
function fib() { | |
let a = 0; | |
let b = 1; | |
let c = 0; | |
return function() { | |
a = b; | |
b = c; | |
c = a + b; | |
return b; | |
} |
function fib() { | |
let a = 0; | |
let b = 1; | |
let c; | |
return function() { | |
c = a + b; | |
a = b; | |
b = c; | |
return c; | |
} |
async function LoadDefects(projectId) { | |
const res = await restApi.query({ | |
type: "defects", | |
scope: { | |
workspace: "/workspace/275276784308", | |
project: "/project/" + projectId | |
} | |
}); | |
let table = "<table>"; | |
await Promise.all( |
Background: Saurabh is a very determined and hard working person. He is very willing to learn new things to add knowledge base and skills which can help him stand apart as a worthy aspirant. His recent achievements include third rank in Call For Code Global Hackathon conducted by Topcoder and IBM.
Skills: NodeJS, Python, RESTful API, ExpressJS, ReactJS, Redux, Firebase, SQL and Non-SQL databases, Flask, jQuery, Blockchain, Ethereum, Deployment on cloud services like heroku and Amazon AWS.
// solium-disable linebreak-style | |
pragma solidity ^0.4.24; | |
contract Election { | |
struct Candidate { | |
uint id; | |
string name; | |
uint voteCount; | |
} |
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "(gdb) Launch", | |
"type": "cppdbg", | |
"request": "launch", | |
"program": "${workspaceFolder}/a.exe", | |
"args": [], | |
"stopAtEntry": false, |