Skip to main content

· One min read
Ujwal Kadariya

Setting up laravel project to work on Ubuntu & Apache Form Directories other than /var/www

2. Allow Apache to handle directives other than /var/www. This setting is found in /etc/apache2/apache2.conf.
3. Add apache user (Mine was www-data) to your user group with this command: sudo adduser www-data $(whoami)
4. You need to restart apache2. Also might need to restart php-fpm. Mine was php8.1-fpm.
5. Create virtual host with roverrwire/virtualhost available on github.

· 2 min read
Ujwal Kadariya

Learning Markdown

  1. Enclose words/sentences inside _ to make it italic. For example "_red_" will display as "red";

  2. Enclose words/sentences inside ** to make it bold. ( "**bold**" becomes "bold");

  3. Headers are available from level 1 to level 6, 1 being the largest. # for level 1 and ###### for level 6.

  4. Headers can't be bold, but can be Italic

  5. There are two ways to create a link.

For example, [a link to github] [github link]

[github link]: https://www.github.com (This should be placed(not necessarily, but for your own convenience at the bottom of the markdown). Later, when we want to change the link, we can only change it at one place. Would produce: a link to github

Bannekat](https://octodex.github.com/images/bannekat.png\).

Benjamin

For a reference image, you'll follow the same pattern as a reference link. You'll precede the Markdown with an exclamation point, then provide two brackets for the alt text, and then two more for the image tag, like this:

![The founding father][Father]

At the bottom of your Markdown page, you'll define an image for the tag, like this:

[Father]: http://octodex.github.com/images/founding-father.jpg.

· One min read
Sébastien Lorber
Yangshun Tay

Docusaurus blogging features are powered by the blog plugin.

Simply add Markdown files (or folders) to the blog directory.

Regular blog authors can be added to authors.yml.

The blog post date can be extracted from filenames, such as:

  • 2019-05-30-welcome.md
  • 2019-05-30-welcome/index.md

A blog post folder can be convenient to co-locate blog post images:

Docusaurus Plushie

The blog supports tags as well!

And if you don't want a blog: just delete this directory, and use blog: false in your Docusaurus config.