Skip to content

Instantly share code, notes, and snippets.

View AntonisFK's full-sized avatar
💭
Pushin 🅿️

Antonis AntonisFK

💭
Pushin 🅿️
  • Infuse
  • San Francisco
View GitHub Profile
@AntonisFK
AntonisFK / 01.ts
Created June 28, 2018 17:10 — forked from jhades/01.ts
ng-template, ng-container and ngTemplateOutlet examples
@Component({
selector: 'app-root',
template: `
<ng-template>
<button class="tab-button"
(click)="login()">{{loginText}}</button>
<button class="tab-button"
(click)="signUp()">{{signUpText}}</button>
</ng-template>
@AntonisFK
AntonisFK / csv-to-json.js
Created March 13, 2016 01:31 — forked from iwek/csv-to-json.js
CSV to JSON Conversion in JavaScript
//var csv is the CSV file with headers
function csvJSON(csv){
var lines=csv.split("\n");
var result = [];
var headers=lines[0].split(",");
for(var i=1;i<lines.length;i++){