Skip to content

Instantly share code, notes, and snippets.

View Attacktive's full-sized avatar
☠️
Hired and tired

Attacktive

☠️
Hired and tired
View GitHub Profile
@Attacktive
Attacktive / dotnetlayout.md
Created May 30, 2022 07:19 — forked from davidfowl/dotnetlayout.md
.NET project structure
$/
  artifacts/
  build/
  docs/
  lib/
  packages/
  samples/
  src/
 tests/
@Attacktive
Attacktive / toString Generator
Last active March 15, 2022 05:29 — forked from jenslohmann/toString Generator
Java toString() generator for IntelliJ IDEA that generates JSON
public java.lang.String toString() {
#if ( $members.size() > 0 )
#set ( $i = 0 )
return "{ \"_class\": " + $classname .class.getSimpleName() + ", " +
#foreach( $member in $members )
#set ( $i = $i + 1 )
#if ( $i == $members.size() )
#set ( $postfix = "+ "" "" + " )
#else
#set ( $postfix = "+ "", "" + " )