Skip to content

Instantly share code, notes, and snippets.

View gozilla-paradise's full-sized avatar
💭
I may be slow to respond.

gozilla-paradise

💭
I may be slow to respond.
View GitHub Profile
@gozilla-paradise
gozilla-paradise / reverse_proxy_setup.txt
Created April 5, 2023 03:16 — forked from codesorter2015/reverse_proxy_setup.txt
Reverse Proxy Setup with XAMPP/WAMP
Open apache httpd.conf file
Enable the following Modules by removing the # at the front of the line.
- LoadModule rewrite_module modules/mod_rewrite.so
- LoadModule proxy_module modules/mod_proxy.so
- LoadModule proxy_http_module modules/mod_proxy_http.so
- LoadModule proxy_connect_module modules/mod_proxy_connect.so
Open apache httpd-vhosts.conf
<VirtualHost *:80>
ProxyRequests On
@gozilla-paradise
gozilla-paradise / PriConne Farm & Shop Guide.md
Created February 2, 2023 03:12 — forked from Wazhai/PriConne Farm & Shop Guide.md
Guide on shard farming & buying priority for Princess Connect! Re:Dive English/Global server

✾✾✾ STORY FARM/SHOP GUIDE ✾✾✾

For both new and older players, with advice for the current and near future meta!
Some other useful resources are also linked at the bottom.

Big thanks to Nyara❤#6964 from the PriConne community Discord for creating the guide! This page is a mirror by Wazhai#0161 for convenience and easy access outside of Discord. The original and latest version can be found here on Discord. The content of this page will be updated as any changes to the guide come out, and it is shared here with Nyara's authorization.

Last Update: 28/11/2022
Next Update: Around 10/01/2023
(dd/mm/yyyy)

@gozilla-paradise
gozilla-paradise / 0. Create New Entity
Last active September 21, 2021 16:07
[How to create new entity using Blazor Hero Template] How to create new entity using Blazor Hero Template #BlazorHero
1. At Core/Domain/Entities:
Create Entity
2. At Infrastructure/Context/BlazorHeroContext.cs
Add DbSet
3. At Application/Interface/Repositories
Add Repository Interface
4. At Infrastructure/Repository