All notable changes to this project will be documented in this file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package export | |
import ( | |
"bytes" | |
"io" | |
"strings" | |
"unicode/utf8" | |
) | |
type MarkdownTable struct { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package export | |
import ( | |
"bytes" | |
"io" | |
"strings" | |
"unicode/utf8" | |
) | |
type ASCIITable struct { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
echo ### CONVERSIONE DAE/GLTF ### | |
SET DIR=%~dp0 | |
:Loop | |
IF "%~1"=="" GOTO END | |
SETLOCAL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ResultSet : IDisposable | |
{ | |
private SqlDataReader reader; | |
public ResultSet(SqlDataReader reader) | |
{ | |
this.reader = reader; | |
} | |
public bool Next() |
NewerOlder