Skip to content

Instantly share code, notes, and snippets.

View carocad's full-sized avatar

Camilo Roca carocad

  • Frankfurt am Main, Germany
View GitHub Profile
@carocad
carocad / csv.js
Created March 28, 2020 20:43
node.js lazy parser
const fs = require('fs');
async function* lineSplitter(filepath) {
const content = fs.createReadStream(filepath, {
encoding: 'utf8',
});
let previous = '';
for await (const chunk of content) {
const lines = (previous + chunk).split('\n');
@carocad
carocad / mobile_development.md
Last active September 15, 2015 06:15
General overview of the most prominent Operating systems for Smartphones and Frameworks available for cross-platform development

Smartphones app-development overview - as of 06.2015

Marketshare

Global marketshare

Smartphones operating systems overview

Android - Google

  • License:
    • OS: Apache v2
  • kernel: LGPL v3