Skip to content

Instantly share code, notes, and snippets.

@cromatido
cromatido / parse_gpx.py
Created October 1, 2023 21:36 — forked from bverhoeve/parse_gpx.py
Parse GPX files to Xcode format
import logging
import os
from typing import List
import gpxpy
# Use
# Put the GPX files you want to parse in a folder 'gpx_files' next to this file
# Execute the file in a terminal: 'python3 parse_gpx.py'
# The output GPX files will be in a folder called 'parsed_files'
#!/bin/bash
# install curl
sudo apt-get install curl -y
# install nodejs using snap
sudo snap install node --classic
@cromatido
cromatido / README-Template.md
Created April 15, 2020 20:47 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@cromatido
cromatido / README.md
Created March 3, 2020 15:44 — forked from sact1909/README.md
SQL Server Store Procedure to Fill Table with a Web API

SQL Server

This script was made by Steven Checo

How it works

  • You need to run the following code once, before create the stored procedure
sp_configure 'show advanced options', 1;   
GO   
RECONFIGURE; 
@cromatido
cromatido / new_node_project.sh
Created June 26, 2017 01:48 — forked from sijpkes/new_node_project.sh
create new node project and github repo script
#!/bin/sh
# @Author: ps158
# @Date: 2017-04-24T13:08:28+10:00
# @Last modified by: ps158
# @Last modified time: 2017-04-24T13:41:13+10:00
mkdir $1
git init
cd $1
@cromatido
cromatido / Makefile
Created June 26, 2017 01:18 — forked from saidinesh5/Makefile
A nice Makefile for my Node.js projects.
#
# My Fancy Node.js project
#
PROJECT = "My Fancy Node.js project"
all: install test server
debug: ;@echo "Debugging ${PROJECT}.....http://0.0.0.0:8080/debug?port=5858 to start debugging"; \
@cromatido
cromatido / generate-certificates.sh
Created May 4, 2017 12:50
Generate self-signed ssl certificates.
#!/bin/bash
# set values for certificate DNs
# note: CN is set to different values in the sections below
ORG="000_Test_Certificates"
# set values that the commands will share
VALID_DAYS=360
CA_KEY=ca.key
CA_CERT=ca.crt