Skip to content

Instantly share code, notes, and snippets.

@ovrmrw
ovrmrw / Program.cs
Last active September 28, 2021 14:25
Topshelf + OWIN Self-Host + ASP.NET WebAPI + Ninject
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Web.Http;
using System.Web.Http.Tracing;
using System.Reflection;
using Owin;
@ovrmrw
ovrmrw / swaggerYamlToTypeScriptInterfaces.ts
Created March 23, 2018 02:24
Generate TypeScript interfaces from swagger.yaml
import * as jsyaml from 'js-yaml';
import * as path from 'path';
import * as fs from 'fs';
interface PropertyStructure {
required: string[];
properties: Record<string, { type: string }>;
}
class Definition {
@ovrmrw
ovrmrw / hapi-swagger-server-sample.js
Created August 22, 2016 10:24
Hapi-Swagger sample - Run and open "http://localhost:3000/documentation" in order to be shown the documents of your APIs.
const Hapi = require('hapi');
const Inert = require('inert');
const Vision = require('vision');
const Joi = require('joi');
const HapiSwagger = require('hapi-swagger');
const Pack = require('./package.json');
const server = new Hapi.Server();
server.connection({
host: 'localhost',
type ParamValue = string | number | boolean;
export interface ParamsObject {
[key: string]: ParamValue | ParamValue[];
}
export class RouterWrapper {
private _location: Location;
private _URL: typeof URL;
@ovrmrw
ovrmrw / setup-ionic-jest-boilerplate.js
Last active March 4, 2018 14:24
Create files for Jest testing for Ionic project
const fs = require('fs');
const path = require('path');
const root = path.resolve();
// Create jest.config.js
const jestConfigJS = `module.exports = {
preset: 'jest-preset-angular',
roots: ['src'],
testRegex: '\\\\.spec\\\\.ts$',
import { WindowWrapper } from './WindowWrapper';
let _namespace: Namespace | undefined;
export class Namespace {
private readonly key: string;
static fromName(key: string): Namespace {
if (!_namespace) {
_namespace = new Namespace(key);
@ovrmrw
ovrmrw / mp3-rename-util.ts
Created April 18, 2017 07:03
Re-name MP3 files from its ID3 tag's title.
import * as fs from 'fs-extra'
import * as nodeID3 from 'node-id3'
import * as path from 'path'
const TARGET = 'au_kaiwa_1705_A'
const filePaths = fs.readdirSync(TARGET)
.map((file) => path.join(process.cwd(), TARGET, file))
.filter((filePath) => fs.existsSync(filePath))
@ovrmrw
ovrmrw / main.ts
Created February 21, 2017 08:02
redux dev tools
require('setimmediate')
const asap = require('asap') as (func: Function) => void
const cloneDeep = require('lodash.clonedeep') as <T>(obj: T) => T
import { createStore, applyMiddleware, Store } from 'redux'
import { Observable } from 'rxjs/Observable'
import { Subject } from 'rxjs/Subject'
import { BehaviorSubject } from 'rxjs/BehaviorSubject'
import 'rxjs/add/observable/of'
import 'rxjs/add/observable/from'
@ovrmrw
ovrmrw / simple-redux.ts
Last active December 29, 2016 16:31
Simple concept for easy Redux
import 'core-js';
import { Observable, Subject, BehaviorSubject } from 'rxjs';
type Action = {
key: string;
value: any;
}
type State = {
@ovrmrw
ovrmrw / resolveAllPromise.ts
Last active September 21, 2016 08:53
An example to get an object which is resolved all (even nested) promises in Zone.
import 'babel-polyfill';
import 'zone.js/dist/zone-node';
declare const Zone: any;
Zone.current.fork({}).run(async () => {
// (async () => {
const obj = {
increment: Promise.resolve({