<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>DevMemo – bunnylol</title><link>https://devmemo.gitlab.io/tags/bunnylol/</link><description>Recent content in bunnylol on DevMemo</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Mon, 23 Jan 2023 15:38:11 -0800</lastBuildDate><atom:link href="https://devmemo.gitlab.io/tags/bunnylol/index.xml" rel="self" type="application/rss+xml"/><item><title>Blog: Quick Website Access With Bunnylol</title><link>https://devmemo.gitlab.io/blog/quick_website_access_with_bunnylol/</link><pubDate>Mon, 23 Jan 2023 15:38:11 -0800</pubDate><guid>https://devmemo.gitlab.io/blog/quick_website_access_with_bunnylol/</guid><description>
&lt;h2 id="what-is-bunnylol">What is Bunnylol?&lt;/h2>
&lt;p>Bunnylol is a tool that allows you to quickly access target websites from your browser address bar. For example, by typing in &lt;code>gm&lt;/code> in your browser search bar, bunnylol will forward you to gmail automatically. With bunnylol, many commonly used websites can be accessed with easy-to-remember shortcuts.&lt;/p>
&lt;h2 id="how-to-set-up-bunnylol">How To Set Up Bunnylol?&lt;/h2>
&lt;p>First of all, to use bunnylol, you&amp;rsquo;ll need a bunnylol service. Fortunately, this site provides one.&lt;/p>
&lt;p>To set up bunnylol, go to &lt;strong>Settings -&amp;gt; Manage search engines and site search&lt;/strong>.&lt;/p>
&lt;p align="center">
&lt;img src="https://devmemo.gitlab.io/blog/images/quick_website_access_with_bunnylol/create_bunnylol_search_engine.png" style="width:60%" alt="create bunnylol search engine"/>
&lt;/p>
&lt;p>Create a new site search with the following information:&lt;/p>
&lt;ul>
&lt;li>&lt;strong>Search engine&lt;/strong>: bunnylol&lt;/li>
&lt;li>&lt;strong>Shortcut&lt;/strong>: b&lt;/li>
&lt;li>&lt;strong>URL with %s in place of query&lt;/strong>: &lt;code>https://devmemo.gitlab.io/bunnylol?query=%s&lt;/code>&lt;/li>
&lt;/ul>
&lt;p>After that, make it default&lt;/p>
&lt;p align="center">
&lt;img src="https://devmemo.gitlab.io/blog/images/quick_website_access_with_bunnylol/make_bunnylol_default.png" style="width:60%" alt="make bunnylol default"/>
&lt;/p>
&lt;h2 id="how-to-use-bunnylol">How To Use Bunnylol?&lt;/h2>
&lt;p>After you finish the last step, you can start using bunnylol. Try type in &lt;code>bunnylol&lt;/code>, it&amp;rsquo;ll help you go back to this page. A mouseless way of doing that:&lt;/p>
&lt;ol>
&lt;li>Press &lt;code>C-l&lt;/code>.&lt;/li>
&lt;li>Type in &lt;code>bunnylol&lt;/code>.&lt;/li>
&lt;li>Press &lt;code>Enter&lt;/code>.&lt;/li>
&lt;/ol>
&lt;p>And then your browser will go to the target page (which is still this one).&lt;/p>
&lt;p>&lt;strong>Note that if the keyword you type in is not supported by bunnylol, it&amp;rsquo;ll forward you to the google search page for the keyword.&lt;/strong>&lt;/p>
&lt;p>The following table shows all the supported commands from bunnylol.&lt;/p>
&lt;script>
function load_data() {
let table_obj = document.getElementById("bunnylol-table");
let table_tbody_obj = table_obj.createTBody();
for (let key in bunnylol_items)
{
let supported_redirects = bunnylol_items[key].processor.get_supported_redirects();
supported_redirects.forEach(
function (redirect) {
let row = table_tbody_obj.insertRow();
let key_cell = row.insertCell();
let value_cell = row.insertCell();
key_cell.innerHTML = `&lt;code>${redirect.key}&lt;/code>`;
value_cell.innerHTML = `&lt;code>${redirect.value}&lt;/code>`;
}
);
}
}
window.onload = function() {
load_data();
add_inline_code_copy();
};
&lt;/script>
&lt;div class="sw-lg-table-container dark-scrollbar">
&lt;table class="sw-key-value-table" id="bunnylol-table">
&lt;thead>
&lt;tr>
&lt;th>Bunnylol Key&lt;/th>
&lt;th>Redirect URL&lt;/th>
&lt;/tr>
&lt;/thead>
&lt;/table>
&lt;/div></description></item></channel></rss>