Skip to content

Instantly share code, notes, and snippets.

View thomd's full-sized avatar

Thomas Dürr thomd

  • Hamburg, Germany
View GitHub Profile
@thomd
thomd / java-snippets.md
Last active April 29, 2024 18:31
Java code snippets

Java Snippets

Converting Strings to int and int to String

String a = String.valueOf(2); 
int i = Integer.parseInt(a);  

Convert String to Date

@thomd
thomd / LC_COLORS.md
Last active April 20, 2024 13:26
LSCOLORS & LS_COLORS

alternatively use: http://geoff.greer.fm/lscolors/

LSCOLORS

The value of this variable describes what color to use for which attribute when colors are enabled with CLICOLOR. This string is a concatenation of pairs of the format fb, where f is the foreground color and b is the background color.

The color designators are as follows:

a black

@thomd
thomd / apis.md
Last active April 1, 2024 13:17
A list of public APIs (REST, GraphQL) #list #api #rest #graphql
@thomd
thomd / semantic-layout.html
Last active March 29, 2024 00:27
Standard HTML5 Semantic Layout
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Title</title>
<link href="stylesheets/main.css" rel="stylesheet" />
</head>
<body>
<header>
<hgroup>
@thomd
thomd / ngrams.json
Created March 1, 2024 18:25
english ngrams
This file has been truncated, but you can view the full file.
{
"letters": {
"E": 445155370175,
"T": 330535289102,
"A": 286527429118,
"O": 272276534337,
"I": 269731642485,
"N": 257770795264,
"S": 232082812755,
"R": 223767519675,
@thomd
thomd / presentation-engines.md
Last active November 18, 2023 12:49
List of Presentation Generators #list