Skip to content

Instantly share code, notes, and snippets.

View versx's full-sized avatar

versx versx

View GitHub Profile
@versx
versx / geojson2INI.js
Last active March 7, 2021 00:30
Convert geoJSON format file to separate INI format files by geoJSON property name
'use strict';
const fs = require('fs');
// Customize as required
const inFile = process.argv[2];
fs.readFile(inFile, 'utf8', (err, data) => {
const geoJSON = JSON.parse(data);
geoJSON.features.forEach(feature => {
@versx
versx / GymScraper.cs
Created December 8, 2018 05:15
GymScraper
using System;
using System.Collections.Generic;
using System.IO;
using System.Net;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
namespace T
{