Skip to content

Instantly share code, notes, and snippets.

View beaussan's full-sized avatar

Nicolas Beaussart beaussan

  • PayFit
  • France
  • 22:26 (UTC +02:00)
  • X @beaussan
View GitHub Profile
@beaussan
beaussan / Usage.md
Last active October 20, 2021 00:08
Generate a list of backlinks that are not yet in the document for Obsidian Templater's plugin

<% tp.user.getNotSetBaclinks(tp.file.path(true), this.app)%>

@beaussan
beaussan / gist:4c22603622dc5628ae16
Created January 5, 2015 12:16
mazeGeneratorIjava
class mazeGenerator extends Program {
static class Point{
Integer r;
Integer c;
Point parent;
}
final int r=30, c=30;