Skip to content

Instantly share code, notes, and snippets.

View WiBla's full-sized avatar

WiBla WiBla

  • France
View GitHub Profile
@samogot
samogot / readme.txt
Last active July 11, 2022 16:20
Reply to people with a button, quouting full message or selected text
There is new version of quoter plugin! See here: https://github.com/samogot/betterdiscord-plugins/tree/master/v2/Quoter
If you neen Quoter 2.8 - look into gist's history.
How to use:
There is Quote button appears on message hover. It doesn't work in compact mode.
- Click Quote button to quote full messages group.
@davidhund
davidhund / comments.css
Created October 18, 2016 10:00
Example of various CSS comment styles
/**
* = MAIN Comment Block
*
* A Main Comment Block for a file. Recognized by the
* 'heavy' bottom border. This comment lives at the top of a file and
* document's its function.
*
* ========================================================================= */
@conorbuck
conorbuck / angle-between-points.js
Created May 5, 2012 22:51
JavaScript: Find the angle between two points
var p1 = {
x: 20,
y: 20
};
var p2 = {
x: 40,
y: 40
};