Skip to content

Instantly share code, notes, and snippets.

@matteopic
matteopic / Coordinates.java
Created August 2, 2024 09:18
Conversion and translation between polar and cartesian coordinates.
package it.matteopic.sb;
public class Coordinates {
private double radius, theta, x, y;
public static Coordinates cartesian(double x, double y){
Coordinates c = new Coordinates();
c.x = x;
c.y = y;
@matteopic
matteopic / MarkdownTable.go
Created June 5, 2024 04:54
Provides a way to construct a markdown table by adding rows and then outputting the table in markdown format with properly aligned columns.
package export
import (
"bytes"
"io"
"strings"
"unicode/utf8"
)
type MarkdownTable struct {
@matteopic
matteopic / ASCIITable.go
Created June 5, 2024 04:51
It allows building a table in ASCII text format, adding rows of data, and writing the resulting table to a writer, with a well-formatted appearance and borders defined using Unicode characters.
package export
import (
"bytes"
"io"
"strings"
"unicode/utf8"
)
type ASCIITable struct {
@matteopic
matteopic / compose.yaml
Created June 5, 2024 04:42
Scan local project with sonarqube and docker compose
services:
scanner:
image: sonarsource/sonar-scanner-cli
environment:
SONAR_HOST_URL: http://sonarqube:9000
SONAR_SCANNER_OPTS: -Dsonar.projectKey=<MY-PROJECT-NAME>
SONAR_TOKEN: <MY-USER-TOKEN>
volumes:
- .:/usr/src
@matteopic
matteopic / CHANGELOG.md
Last active June 5, 2024 05:02
Some templates to use when a new project starts

Changelog

All notable changes to this project will be documented in this file.

[Unreleased]

Added

Changed

Deprecated

@matteopic
matteopic / IOUtils.java
Created February 27, 2020 12:16
Utilities for java.io
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
public class IOUtils {
public static void copyStream(InputStream is, OutputStream os) throws IOException {
byte[] buffer = new byte[512];
int read;
@matteopic
matteopic / convert.bat
Created February 6, 2019 08:41
Massive convert .dae to .gltf using COLLADA2GLTF.exe
@ECHO OFF
echo ### CONVERSIONE DAE/GLTF ###
SET DIR=%~dp0
:Loop
IF "%~1"=="" GOTO END
SETLOCAL
@matteopic
matteopic / convert to PDF.bat
Created February 6, 2019 08:36
Snippets pandoc
@ECHO OFF
SET MIKTEX=C:\Program Files (x86)\MiKTeX
:Loop
IF "%~1"=="" GOTO END
echo Creating file "%~n1.pdf"
pandoc -s %1 -o "%~n1.pdf" "--latex-engine=%MIKTEX%\miktex\bin\pdflatex.exe" -V papersize:A4 -V geometry:margin=1cm
SHIFT
GOTO Loop
@matteopic
matteopic / pgadmin.sh
Created February 6, 2019 08:34
pgadmin container
#!/bin/bash
imageName=dpage/pgadmin4
containerName=pgadmin4
function start(){
count=$(docker ps --all --filter "name=${containerName}" | tail -n+2 | wc -l)
if [ "$count" -eq "1" ];
then
echo "Resuming ${containerName}"
docker start $containerName
@matteopic
matteopic / ResultSet.cs
Created November 8, 2018 17:10
A wrapper for System.Data.SqlClient.SqlDataReader
public class ResultSet : IDisposable
{
private SqlDataReader reader;
public ResultSet(SqlDataReader reader)
{
this.reader = reader;
}
public bool Next()