Lately I've been working on rInstallFriendly v2.0, my simple and easy-to-use tool to create fancy software installers.
rInstallFriendly v2.0, some of its multiple visual styles available. Style is fully customizable!
Lately I've been working on rInstallFriendly v2.0, my simple and easy-to-use tool to create fancy software installers.
rInstallFriendly v2.0, some of its multiple visual styles available. Style is fully customizable!
In the last years I've been asked multiple times about the comparison between raylib and SDL libraries. Unfortunately, my experience with SDL was quite limited so I couldn't provide a good comparison. In the last two years I've learned about SDL and used it to teach at University so I feel that now I can provide a good comparison between both.
Hope it helps future users to better understand this two libraries internals and functionality.
| # Softwrap long lines (and correct for improper kakoune movement behavior) | |
| add-highlighter global/softwrap wrap -word -indent | |
| define-command goto-center -docstring 'Jump to the center of the view' %{ | |
| execute-keys %sh{ | |
| echo $kak_window_range $kak_cursor_line | ( | |
| read y x h w l | |
| num_lines=$((l-y-(h+1)/2)) | |
| if [ $num_lines -lt 0 ]; then | |
| echo "${num_lines##-}j" | |
| elif [ $num_lines -gt 0 ]; then |
| // ==UserScript== | |
| // @name itch.io - claim bundle items | |
| // @namespace https://raccoon.land/ | |
| // @version 1.3 | |
| // @description Claims all items from itch bundles | |
| // @author Avi Duda | |
| // @match https://*.itch.io/* | |
| // @icon https://icons.duckduckgo.com/ip2/itch.io.ico | |
| // @grant GM.setValue | |
| // @grant GM.getValue |
Those patches are to convert GameBoy ROM to .pocket ROM. This allows you to play games from the SD Card on your Analogue Pocket.
Feature like RTC and Link cable seems to be unsupported by the Analogue Pocket in GB Studio mode.
| declare module "obsidian" { | |
| interface App { | |
| isMobile: boolean; | |
| } | |
| } | |
| // Call this method inside your plugin's `onLoad` function | |
| function monkeyPatchConsole(plugin: Plugin) { | |
| if (!plugin.app.isMobile) { | |
| return; |
| # ------------------------------------------------------------------------- | |
| # Nimbus note HTML export to markdown converter | |
| # Extract all zip files containing 'note.html' and convert to markdown | |
| # | |
| # Setup: | |
| # 1) install python 3 for your OS | |
| # 2) install pandoc https://github.com/jgm/pandoc/releases/tag/2.11.4 | |
| # on Windows, the .msi will automatically add pandoc to your $PATH | |
| # otherwise add it to your $PATH. | |
| # 3) save this script in the directory where your HTML exports were |
| --- | |
| title: "Obsidian Sentiment Analysis" | |
| author: "Bryan Jenks" | |
| date: "2020-10-10" | |
| output: html_document | |
| --- | |
| ```{r} | |
| require(here) | |
| require(jsonlite) |
| // ==UserScript== | |
| // @name Activate all Itch.io Bundle downloads | |
| // @version 1 | |
| // @include https://itch.io/bundle/download/* | |
| // @include https://*.itch.io/* | |
| // @require https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js | |
| // @grant none | |
| // ==/UserScript== | |
| $(document).ready(function() { |