- Learn by doing
- Take away a sound understanding of new concepts learned at the end of each activity
- Transform knowledge into intuition
- Share your learnings
- Experiment to avoid/overcome procrastination
- Go further, Carpe noctem
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": "Modern Science and Anarchism", | |
"subtitle": null, | |
"slug": "modern-science-and-anarchism", | |
"series_index": 1, | |
"caid": 993, | |
"uuid": "e0896194-dcef-4c5c-9cea-c6844ba85f5e", | |
"isbn": "9780341661047", | |
"gdrds": "42483549", | |
"authors": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ----------------------------------------------------------------------------- | |
import { css } from "uebersicht"; | |
import { DateTime } from "luxon"; | |
// Refresh Frequency of the widget | |
// This affects only the final return, not the whole script | |
export const refreshFrequency = 1000 * 60; | |
// Trigger the refresh | |
export const command = (dispatch) => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Übersicht "TimeZoneStrip" JSX widget | |
* [email protected] / 2024-10-09 | |
* MIT Licensed | |
* Based on https://www.reddit.com/r/Ubersicht/comments/1fdp5bu/widget_based_on_the_worldtimebuddy/ | |
*/ | |
import { css, run } from "uebersicht"; | |
const timezones = [ | |
{ name: "JST", timezone: "Asia/Tokyo" }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class CardinalDirections | |
{ | |
private const CARDINALS = [ | |
'N', 'NNE', 'NE', 'ENE', 'E', 'ESE', 'SE', 'SSE', | |
'S', 'SSW', 'SW', 'WSW', 'W', 'WNW', 'NW', 'NNW' | |
]; | |
public static function degreesToCardinals($degrees): array |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
From: | |
https://codepen.io/jscottsmith/pen/VLzMLo?editors=0010 | |
Post about console log styles: | |
http://jscottsmith.me/notes/styling-your-console-logs | |
**/ | |
// Styles and Colors | |
var colors = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600&display=swap'); | |
body { | |
font-family: 'Source Sans Pro', sans-serif; | |
font-size: 12px; | |
font-weight: 400; | |
} | |
.getting-started__trends, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ------------------------------- | |
This is a custom CSS to override the styling on | |
https://nftbiker.xyz/follow | |
Use an extension like Stylish on Chrome or Firefox, create a new "style" and paste this in. | |
For me it only works if you set the "Applies to" URL to the full one including the wallet you are following. | |
WARNING: This actually hides a few little bits of functionality I never found useful. | |
These include: | |
- textfile input for following multiple wallets |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Updated 2022-12-23 */ | |
/* Set some base color variable here. Default is a deep red. */ | |
:root { | |
--keycolor: #900; | |
--keycolor-active: #f00; | |
--keycolor-hover: #c00; | |
} | |
/*a[data-testid="AppTabBar_Explore_Link"],*/ | |
a[aria-label="Bookmarks"], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// dm Klopapier Widget | |
// | |
// Copyright (C) 2020 by marco79 <[email protected]> | |
// | |
// Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted. | |
// | |
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL | |
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, | |
// INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER | |
// IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE |
NewerOlder