Author: Zombi Istilasi
-
Setting Up the Mail Server for Gitlab (and other platforms)
In short, I tried setting up GitLab with Microsoft Cloud, but it didn’t work unless I paid. So, I used Sendinblue instead. The email setup comes after the gitlab setup which I explained here: https://afeser.duckdns.org/2024/06/21/setting-up-gitlab-nginx/ Setting Up with Office365 (failed) I tried all 3 approaches given in this link: https://learn.microsoft.com/en-gb/Exchange/mail-flow-best-practices/how-to-set-up-a-multifunction-device-or-application-to-send-email-using-microsoft-365-or-office-365 First approach First link failed…
-
Setting up GitLab + Nginx
Assume you are a home user and you want to setup gitlab on a server. However, gitlab consumes signifcant memory and you need to pay at least 50-100$ per month to run the server on cloud providers. At the same time, you don’t have any public IP address, but you can get one for 5$,…
-
Resolution Problem – Windows 11 on QEMU
I get resolution problem when I install on Qemu using libvirtd and SPICE. The problem is that, I cannot change the resolution because Windows shows default display adapter. The solution is to install teh VirtIO adapter using this link: https://www.spice-space.org/download.html
-
Reinforcement Learning – Cheat Sheet
Policy gradient methods: Methods where we directly optimize the policy without the value function. Examples are: REINFORCE, Proximal Policy Optimization.Actor-Critic: Actor critic methods consist of one actor and one critic. Actor is the function of the agent and the critic is the value function of the environment. The goal is to have a fast and…
-
Y Combinator Notes – 3
How to found a startup? What matters most for a entrepreneurship? Domain expertise! Also, just watch it : ) References [1] https://www.youtube.com/watch?v=f4_14pZlJBs&list=PLQ-uHSnFig5MaafmEhFox7rO-b0RxQth-
-
Y Combinator Notes – 1
I only have some bullet points here without any category. References [1] https://www.youtube.com/watch?v=f4_14pZlJBs&list=PLQ-uHSnFig5MaafmEhFox7rO-b0RxQth-
-
Y Combinator Notes – 2
How to know the growing markets? This turns out to be the easiest problem. Young people already can observe their environment, and they know what young people use, and what they will use in the future better than other people. Therefore, use college as a place to meet more people, to observe technologies, and to…
-
Setting Up GPU Passthrough on Fedora with 2 GPUs
I have 2 GPUs. FIrst one is AMD, and I am adding a second one, NVIDIA. It was already running with AMD so all the drivers were installed. No drivers are installed for NVIDIA. NVIDIA will be used in the VM environment only. Install Qemu/KVM TODO Enable IOMMU (both in BIOS and Kernel) In kernel,…
-
NeRF – Nerual Radiance Field
Let’s start with these definitions:Zero-level set: is a mathematical function, e.g. is a level-set.Neural Implicit Representation: we represent a 3D shape’s surface using a mathematical formula. This formula is called zero-level set where the formula is zero if we are on the 3D shape, and some other value if we are on a different location…