answers ^#blog

without an r


slicklibary

In 2013, fresh out of college and eager to hone my skills, I embarked on my first web project: slicklibary (yes, the missing “r” is intentional!). This isn’t a real library, but a personal project aimed at creating a one-stop hub for my passions: music and news.

Inspired by my existing routines – curating a music feed with YouTube tracks on Xmarks and following news via RSS feeds on igoogle – I envisioned a website that combined these elements.

This project serves as a valuable learning experience, allowing me to experiment and solidify my knowledge base.

Technique


Themes and Backdrop


For the project, I utilized the OneNews Premium WordPress theme by Genkisan. It offered a built-in JavaScript video popup for displaying bookmarked items, complete with automatic thumbnail fetching – a powerful but initially overwhelming feature.

Since Xmarks’ shutdown in 2018, I’ve wholeheartedly recommended the open-source shaarli bookmarking solution used on this project. Shaarli empowers you to create and implement your own RSS feeds anywhere, acting as a personal time capsule of your curated content.

For the project, I utilized the OneNews Premium WordPress theme by Genkisan. It offered a built-in JavaScript video popup for displaying bookmarked items, complete with automatic thumbnail fetching – a powerful but initially overwhelming feature.

Since Xmarks’ shutdown in 2018, I’ve wholeheartedly recommended the open-source shaarli bookmarking solution used on this project. Shaarli empowers you to create and implement your own RSS feeds anywhere, acting as a personal time capsule of your curated content.


Secure


troubles

However, publishing online comes with challenges. Legal hurdles like the Cookie declaration initiative and ancillary copyright law posed initial obstacles. As someone navigating uncharted territory (not a pilot!), I had to continuously adapt since 2013, gaining valuable experience in the process.

Beyond legal considerations, website security is paramount. For WordPress users, modifying functions.php and .htaccess files can enhance security. Additionally, protecting the wp-config.php file (containing database logins) is crucial. Adding specific code to the .htaccess file can help achieve this.

However, publishing online comes with challenges. Legal hurdles like the Cookie declaration initiative and ancillary copyright law posed initial obstacles. As someone navigating uncharted territory (not a pilot!), I had to continuously adapt since 2013, gaining valuable experience in the process.

Beyond legal considerations, website security is paramount. For WordPress users, modifying functions.php and .htaccess files can enhance security. Additionally, protecting the wp-config.php file (containing database logins) is crucial. Adding specific code to the .htaccess file can help achieve this.

<Files wp-config.php>
   order allow,deny
   deny from all
</Files>

With some additional rules, you can also prevent new users from hacking your site by registering themselves as new users:

With some additional rules, you can also prevent new users from hacking your site by registering themselves as new users:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{THE_REQUEST} ^.*(wp-login.php\?action=register).* [NC]
RewriteRule ^(.*)$ https://example.com/
</IfModule>

A decade later, slicklibary remains a testament to the power of perseverance and continuous learning. With security at the forefront, I’ve meticulously maintained and enhanced this project, showcasing my expertise in building robust web experiences.

I’m passionate about crafting impactful web presences for businesses, tailoring solutions to your unique needs. Whether you prefer WordPress or another CMS, I’m here to guide you.

Get in touch to discuss your project!

A decade later, slicklibary remains a testament to the power of perseverance and continuous learning. With security at the forefront, I’ve meticulously maintained and enhanced this project, showcasing my expertise in building robust web experiences.

I’m passionate about crafting impactful web presences for businesses, tailoring solutions to your unique needs. Whether you prefer WordPress or another CMS, I’m here to guide you.

Get in touch to discuss your project!


art


Idee trifft farbe

Born in 2021 on WordPress, this website reflects a time of togetherness during the challenging days of COVID-19. My talented mother, a part-time artist, inspired us to showcase her beautiful artwork online. Explore her creations here:

Born in 2021 on WordPress, this website reflects a time of togetherness during the challenging days of COVID-19. My talented mother, a part-time artist, inspired us to showcase her beautiful artwork online. Explore her creations here:

https://www.ideetrifftfarbe.de

https://www.ideetrifftfarbe.de

In case you have something similar you want to promote in a beautiful, charming webspace, please contact me.

In case you have something similar you want to promote in a beautiful, charming webspace, please contact me.


plugin


background

Fulfill my goal of contributing a plugin to the WordPress repository:

In 2024, I accomplished a personal goal of developing and releasing a free plugin on the official WordPress repository. This lightweight tool allows you to set a full-scale background image on your website, targeting either the .body or .wp-site-blocks element depending on your theme type (classic or block-based).

Learn more about the plugin and its inspiration and feel free to try it out and leave a rating on wordpress.org if you find it helpful!

Fulfill my goal of contributing a plugin to the WordPress repository:

In 2024, I accomplished a personal goal of developing and releasing a free plugin on the official WordPress repository. This lightweight tool allows you to set a full-scale background image on your website, targeting either the .body or .wp-site-blocks element depending on your theme type (classic or block-based).

Learn more about the plugin and its inspiration and feel free to try it out and leave a rating on wordpress.org if you find it helpful!


optimize


tracking

Do you use Google Tag Manager on your online shop?

Master your data layer with my expert guidance. I’ve helped numerous clients customize their data layers, leading to increased efficiency. Take control yourself using the DataLayer Chrome Extension or contact me to discuss your needs. #timesaving

Do you use Google Tag Manager on your online shop?

Master your data layer with my expert guidance. I’ve helped numerous clients customize their data layers, leading to increased efficiency. Take control yourself using the DataLayer Chrome Extension or contact me to discuss your needs. #timesaving

without an r


slicklibary

In 2013, fresh out of college and eager to hone my skills, I embarked on my first web project: slicklibary (yes, the missing “r” is intentional!). This isn’t a real library, but a personal project aimed at creating a one-stop hub for my passions: music and news.

Inspired by my existing routines – curating a music feed with YouTube tracks on Xmarks and following news via RSS feeds on igoogle – I envisioned a website that combined these elements.

This project serves as a valuable learning experience, allowing me to experiment and solidify my knowledge base.

Technique


Themes and Backdrop


For the project, I utilized the OneNews Premium WordPress theme by Genkisan. It offered a built-in JavaScript video popup for displaying bookmarked items, complete with automatic thumbnail fetching – a powerful but initially overwhelming feature.

Since Xmarks’ shutdown in 2018, I’ve wholeheartedly recommended the open-source shaarli bookmarking solution used on this project. Shaarli empowers you to create and implement your own RSS feeds anywhere, acting as a personal time capsule of your curated content.

For the project, I utilized the OneNews Premium WordPress theme by Genkisan. It offered a built-in JavaScript video popup for displaying bookmarked items, complete with automatic thumbnail fetching – a powerful but initially overwhelming feature.

Since Xmarks’ shutdown in 2018, I’ve wholeheartedly recommended the open-source shaarli bookmarking solution used on this project. Shaarli empowers you to create and implement your own RSS feeds anywhere, acting as a personal time capsule of your curated content.


Secure


troubles

However, publishing online comes with challenges. Legal hurdles like the Cookie declaration initiative and ancillary copyright law posed initial obstacles. As someone navigating uncharted territory (not a pilot!), I had to continuously adapt since 2013, gaining valuable experience in the process.

Beyond legal considerations, website security is paramount. For WordPress users, modifying functions.php and .htaccess files can enhance security. Additionally, protecting the wp-config.php file (containing database logins) is crucial. Adding specific code to the .htaccess file can help achieve this.

However, publishing online comes with challenges. Legal hurdles like the Cookie declaration initiative and ancillary copyright law posed initial obstacles. As someone navigating uncharted territory (not a pilot!), I had to continuously adapt since 2013, gaining valuable experience in the process.

Beyond legal considerations, website security is paramount. For WordPress users, modifying functions.php and .htaccess files can enhance security. Additionally, protecting the wp-config.php file (containing database logins) is crucial. Adding specific code to the .htaccess file can help achieve this.

<Files wp-config.php>
   order allow,deny
   deny from all
</Files>

With some additional rules, you can also prevent new users from hacking your site by registering themselves as new users:

With some additional rules, you can also prevent new users from hacking your site by registering themselves as new users:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{THE_REQUEST} ^.*(wp-login.php\?action=register).* [NC]
RewriteRule ^(.*)$ https://example.com/
</IfModule>

A decade later, slicklibary remains a testament to the power of perseverance and continuous learning. With security at the forefront, I’ve meticulously maintained and enhanced this project, showcasing my expertise in building robust web experiences.

I’m passionate about crafting impactful web presences for businesses, tailoring solutions to your unique needs. Whether you prefer WordPress or another CMS, I’m here to guide you.

Get in touch to discuss your project!

A decade later, slicklibary remains a testament to the power of perseverance and continuous learning. With security at the forefront, I’ve meticulously maintained and enhanced this project, showcasing my expertise in building robust web experiences.

I’m passionate about crafting impactful web presences for businesses, tailoring solutions to your unique needs. Whether you prefer WordPress or another CMS, I’m here to guide you.

Get in touch to discuss your project!


art


Idee trifft farbe

Born in 2021 on WordPress, this website reflects a time of togetherness during the challenging days of COVID-19. My talented mother, a part-time artist, inspired us to showcase her beautiful artwork online. Explore her creations here:

Born in 2021 on WordPress, this website reflects a time of togetherness during the challenging days of COVID-19. My talented mother, a part-time artist, inspired us to showcase her beautiful artwork online. Explore her creations here:

https://www.ideetrifftfarbe.de

https://www.ideetrifftfarbe.de

In case you have something similar you want to promote in a beautiful, charming webspace, please contact me.

In case you have something similar you want to promote in a beautiful, charming webspace, please contact me.


plugin


background

Fulfill my goal of contributing a plugin to the WordPress repository:

In 2024, I accomplished a personal goal of developing and releasing a free plugin on the official WordPress repository. This lightweight tool allows you to set a full-scale background image on your website, targeting either the .body or .wp-site-blocks element depending on your theme type (classic or block-based).

Learn more about the plugin and its inspiration and feel free to try it out and leave a rating on wordpress.org if you find it helpful!

Fulfill my goal of contributing a plugin to the WordPress repository:

In 2024, I accomplished a personal goal of developing and releasing a free plugin on the official WordPress repository. This lightweight tool allows you to set a full-scale background image on your website, targeting either the .body or .wp-site-blocks element depending on your theme type (classic or block-based).

Learn more about the plugin and its inspiration and feel free to try it out and leave a rating on wordpress.org if you find it helpful!


optimize


tracking

Do you use Google Tag Manager on your online shop?

Master your data layer with my expert guidance. I’ve helped numerous clients customize their data layers, leading to increased efficiency. Take control yourself using the DataLayer Chrome Extension or contact me to discuss your needs. #timesaving

Do you use Google Tag Manager on your online shop?

Master your data layer with my expert guidance. I’ve helped numerous clients customize their data layers, leading to increased efficiency. Take control yourself using the DataLayer Chrome Extension or contact me to discuss your needs. #timesaving