Skip to content

Instantly share code, notes, and snippets.

View angellandros's full-sized avatar

Mohammad-Ali A'râbi angellandros

  • AppTec Services GmbH
  • Freiburg im Breisgau
View GitHub Profile
@angellandros
angellandros / main.ts
Created October 18, 2019 21:01
Expree.js Hello World
import * as express from 'express';
const app = express();
const port = 3000;
app.get('/', (req, res) => res.send('Hello World!'));
app.listen(port, () => console.log(`Server started listening to port ${port}`));
final int s = ImmutableList.of(1, 2, 3)
.stream()
.map(x -> x * 2)
.reduce(0, (x, y) -> x + y);
val s = List(1, 2, 3) map (_*2) reduce (_+_)
@angellandros
angellandros / inverted_index.py
Last active June 6, 2018 14:53
Inverted Index on 5-Shingles
from collections import defaultdict
T = {'1' : ' payday', '2' : 'mayday mayday', '3' : 'day may'}
index = defaultdict(set)
# create 5-shingles
for k, v in T.items():
for i in range(len(v) - 4):
index[v[i:i+5]].add(k)