Skip to content

Instantly share code, notes, and snippets.

diff --git a/panel-plugin/datetime.c b/panel-plugin/datetime.c
index 01a7b97..8258faa 100644
--- a/panel-plugin/datetime.c
+++ b/panel-plugin/datetime.c
@@ -689,7 +689,7 @@ static void datetime_create_widget(t_datetime * datetime)
   gtk_widget_show(datetime->button);
 
   /* create a box which can be easily adapted to the panel orientation */
@AmyShackles
AmyShackles / timezones.js
Last active October 25, 2020 01:18
Time zone options for Intl
const timeZones = [
"Africa/Abidjan",
"Africa/Accra",
"Africa/Addis_Ababa",
"Africa/Algiers",
"Africa/Asmara",
"Africa/Asmera",
"Africa/Bamako",
"Africa/Bangui",
"Africa/Banjul",
@stereokai
stereokai / index.css
Created June 18, 2017 11:03
Trigonometry in CSS
//----------------------------------*\
// TRIGONOMETRY FUNCTIONS
//----------------------------------*/
// # Trigonometry in CSS
//
// - Through Taylor/Maclaurin polynomial representation: http://people.math.sc.edu/girardi/m142/handouts/10sTaylorPolySeries.pdf
// - Useful if you don't want to use JS.
// - With CSS Variables.
// - `calc()` can't do power (x ^ y) so I used multiplication instead.