Most Recent Bookmarks

🔗 Ventoy

-

Ventoy is an open source tool to create bootable USB drive for ISO/WIM/IMG/EFI files. With ventoy, you don't need to format the disk over and over, you just need to copy the ISO/WIM/IMG/EFI files to the USB drive and boot them directly.

🔗 The Four Mountain Test

-

Our capacity to recognise places and imagine them from alternative points of view is thought to depend on the hippocampal formation, a part of the brain that is affected during the early stages of Alzheimer's Disease. The Four Mountains Test, developed at UCL and the University of York, is a simple test of this ability and of individual variation in healthy people and patients. <<<

🔗 Tag Cloud

-

\define tag-pill-styles() ---------- copied from $:/core/macros/tag - use $(count)$ to set font-size \define tag-pill-styles() background-color:$(backgroundColor)$; fill:$(foregroundColor)$; color:$(foregroundColor)$; font-size:calc(0.8em + (0.05em * ($(count)$ / 50) ) ); \end

\define tag-pill-inner() ---------- copied from $:/core/macros/tag - added $(count)$ display in pill \define tag-pill-inner(tag,icon,colour,fallbackTarget,colourA,colourB,element-tag,element-attributes,actions) <$vars foregroundColor=<> backgroundColor="""$colour$"""> <$element-tag$ $element-attributes$ class="tc-tag-label tc-btn-invisible" style=<>> $actions$<$transclude tiddler="""$icon$"""/> <$view tiddler=<<tag>> field="title" format="text" /> ($(count)$)

\end

\define tagcloud_get() <$list filter="[all[tiddlers]tags[]]"> <$text text="[["/>{{{ [tagging[]count[]divide[10000]] }}};<><$text text="]]"/>

\end

\define tagcloud_sort() <$list filter="[enlist!nsort[]]"> <$list filter="[split[;]last[]]"><>

\end

\define tagcloud_showitem() <$vars count={{{ [tagging[]count[]] }}}> <$macrocall $name="tag" tag=<> />

\end

\define tagcloud_showbycount() <$wikify name="items" text=<> > <$wikify name="sorted" text=<> > <$list filter=<>> <>

\end

There are …

🔗 Egypt arrests doctors, silences critics over virus outbreak

A doctor arrested after writing an article about Egypt’s fragile health system. A pharmacist picked up from work after posting online about a shortage of protective gear. An editor taken from his home after questioning official coronavirus figures. A pregnant doctor arrested after a colleague used her phone to report a suspected coronavirus case. <<<

🔗 PICO-8

-

[img[https://www.lexaloffle.com/gfx/jelpi_demo.gif]]

PICO-8 is a fantasy console for making, sharing and playing tiny games and other computer programs. It feels like a regular console, but runs on Windows / Mac / Linux. When you turn it on, the machine greets you with a commandline, a suite of cartridge creation tools, and an online cartridge browser called SPLORE.

🔗 Twine

Twine is an open-source tool for telling interactive, nonlinear stories.

You don't need to write any code to create a simple story with Twine, but you can extend your stories with variables, conditional logic, images, CSS, and JavaScript when you're ready.

Twine publishes directly to HTML, so you can post your work nearly anywhere. Anything you create with it is completely free to use any way you like, including for commercial purposes.

🔗 VanMoof S3

-

A €2000 e-bike that offers 'next-generation' technology. Apart from the e-bike technology with a 60-150km battery range and the sleek design where the battery is embedded inside the frame, it offers hydraulic disc brakes, GPS, smartphone app, anti-theft technology and an electronic gear shifter.

All of the above is incredibly impressive but stands against the '[[Just Ride|https://www.amazon.com/dp/B0074QGFES/]]' philosophy and the spirit of bikes that they are essentially simple machines that are accessible and easy to fix. Close up photos show proprietary screws, you can't service these bikes at your local bike shop. These bikes are more of descendant of the motorbike or a Segway.

It is ironic that the brand gained some marketing after their ad was banned in France. The [[ad …

🔗 Pixel Art Tutorial from the Creator of Celeste

-

[img[https://64.media.tumblr.com/b48321d1a3cd0a1b570dd2f696247353/tumblr_inline_orlo88y0i81qdiwz3_1280.gif]]

Another location for the tutorial: http://saint11.org/blog/pixel-art-tutorials/

Complete Series of ''How to start making pixel art'' by ''Pedro Medeiros'':

[[An absolute beginner’s guide|https://medium.com/pixel-grimoire/how-to-start-making-pixel-art-2d1e31a5ceab]]

[[Cluster sketching and painting|https://medium.com/pixel-grimoire/how-to-start-making-pixel-art-2-bcd705cb04d7]]

[[A basic Aseprite animation|https://medium.com/pixel-grimoire/how-to-start-making-pixel-art-3-c9eb70270fa1]]

[[Anti-Alias and Banding|https://medium.com/pixel-grimoire/how-to-start-making-pixel-art-4-ff4bfcd2d085]]

[[Basic Color Theory|https://medium.com/pixel-grimoire/how-to-start-making-pixel-art-6-a74f562a4056]]

[[Working with lines|https://medium.com/pixel-grimoire/how-to-start-making-pixel-art-7-e504bfa4ddf2]]

[[Saving and Exporting Pixel Art|https://medium.com/pixel-grimoire/how-to-start-making-pixel-art-8-eb218a4637dd]]

🔗 Easy way to create -h help messages for shell scripts

-

Have you ever thought how good it would be to have a help message for your shell script that you wrote a month ago and already forgot what it is supposed to do?

Yeah, there is always a way to show a message using cat (meow) or a bunch of echo calls.

But there is a neat trick.

Add your message with all the required information on top of your file, just right after the shebang. <<<