<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>MayMeow's Blog</title><link>https://maymeow.blog/</link><description>Recent content on MayMeow's Blog</description><generator>Hugo</generator><language>en</language><copyright>Copyright © 2020, May Meow.</copyright><lastBuildDate>Sun, 31 May 2026 15:18:07 +0200</lastBuildDate><atom:link href="https://maymeow.blog/index.xml" rel="self" type="application/rss+xml"/><item><title>MayMeow.Cryptography</title><link>https://maymeow.blog/_drafts/projects/maymeow-cryptography/</link><pubDate>Fri, 15 Nov 2019 00:00:00 +0000</pubDate><guid>https://maymeow.blog/_drafts/projects/maymeow-cryptography/</guid><description/></item><item><title>TCP/IP Three-Way Handshake</title><link>https://maymeow.blog/notes/tcp-ip-three-way-handshake/</link><pubDate>Sun, 31 May 2026 15:18:07 +0200</pubDate><guid>https://maymeow.blog/notes/tcp-ip-three-way-handshake/</guid><description>&lt;h1 id="-tcpip-three-way-handshake"&gt;🤝 TCP/IP Three-Way Handshake&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;TCP stands for transmission Control Protocol&lt;/li&gt;
&lt;li&gt;similar to OSI model&lt;/li&gt;
&lt;li&gt;Consist 4 layers
&lt;ul&gt;
&lt;li&gt;Application&lt;/li&gt;
&lt;li&gt;Transport&lt;/li&gt;
&lt;li&gt;Internet&lt;/li&gt;
&lt;li&gt;Network Interface&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Information is added to each layer (similar to OSI) in process called encapsulation&lt;/li&gt;
&lt;li&gt;it is connection-based - must establish connection before can send data&lt;/li&gt;
&lt;li&gt;guarantees that sent data will be received on the other end in process named &lt;strong&gt;Three-way handshake&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="some-most-important-tcp-packet-headers"&gt;Some most important TCP packet headers&lt;/h2&gt;
&lt;table&gt;
	&lt;thead&gt;
			&lt;tr&gt;
					&lt;th&gt;Header&lt;/th&gt;
					&lt;th&gt;Description&lt;/th&gt;
			&lt;/tr&gt;
	&lt;/thead&gt;
	&lt;tbody&gt;
			&lt;tr&gt;
					&lt;td&gt;Source Port&lt;/td&gt;
					&lt;td&gt;This value is the port opened by the sender to send the TCP packet from. This value is chosen randomly (out of the ports from 0-65535 that aren&amp;rsquo;t already in use at the time).&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Destination Port&lt;/td&gt;
					&lt;td&gt;This value is the port number that an application or service is running on the remote host (the one receiving data); for example, a webserver running on port 80. Unlike the source port, this value is not chosen at random.&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Source IP&lt;/td&gt;
					&lt;td&gt;This is the IP address of the device that is sending the packet.&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Destination IP&lt;/td&gt;
					&lt;td&gt;This is the IP address of the device that the packet is destined for.&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Sequence Number&lt;/td&gt;
					&lt;td&gt;When a connection occurs, the first piece of data transmitted is given a random number. We&amp;rsquo;ll explain this more in-depth further on.&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Acknowledgement Number&lt;/td&gt;
					&lt;td&gt;After a piece of data has been given a sequence number, the number for the next piece of data will have the sequence number + 1. We&amp;rsquo;ll also explain this more in-depth further on.&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;💡 Checksum&lt;/td&gt;
					&lt;td&gt;This value is what gives TCP integrity. A mathematical calculation is made where the output is remembered. When the receiving device performs the mathematical calculation, the data must be corrupt if the output is different from what was sent.&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Data&lt;/td&gt;
					&lt;td&gt;This header is where the data, i.e. bytes of a file that is being transmitted, is stored.&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Flag&lt;/td&gt;
					&lt;td&gt;This header determines how the packet should be handled by either device during the handshake process. Specific flags will determine specific behaviours, which is what we&amp;rsquo;ll come on to explain below.&lt;/td&gt;
			&lt;/tr&gt;
	&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id="three-way-handshake"&gt;Three-way handshake&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;communicates using few special messages&lt;/li&gt;
&lt;/ul&gt;
&lt;table&gt;
	&lt;thead&gt;
			&lt;tr&gt;
					&lt;th&gt;&lt;strong&gt;Step&lt;/strong&gt;&lt;/th&gt;
					&lt;th&gt;&lt;strong&gt;Message&lt;/strong&gt;&lt;/th&gt;
					&lt;th&gt;&lt;strong&gt;Description&lt;/strong&gt;&lt;/th&gt;
			&lt;/tr&gt;
	&lt;/thead&gt;
	&lt;tbody&gt;
			&lt;tr&gt;
					&lt;td&gt;1&lt;/td&gt;
					&lt;td&gt;&lt;strong&gt;SYN&lt;/strong&gt;&lt;/td&gt;
					&lt;td&gt;A SYN message is the initial packet sent by a client during the handshake. This packet is used to initiate a connection and synchronise the two devices together (we&amp;rsquo;ll explain this further later on).&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;2&lt;/td&gt;
					&lt;td&gt;&lt;strong&gt;SYN/ACK&lt;/strong&gt;&lt;/td&gt;
					&lt;td&gt;This packet is sent by the receiving device (server) to acknowledge the synchronisation attempt from the client.&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;3&lt;/td&gt;
					&lt;td&gt;&lt;strong&gt;ACK&lt;/strong&gt;&lt;/td&gt;
					&lt;td&gt;The acknowledgement packet can be used by either the client or server to acknowledge that a series of messages/packets have been successfully received.&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;4&lt;/td&gt;
					&lt;td&gt;&lt;strong&gt;DATA&lt;/strong&gt;&lt;/td&gt;
					&lt;td&gt;Once a connection has been established, data (such as bytes of a file) is sent via the &amp;ldquo;DATA&amp;rdquo; message.&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;5&lt;/td&gt;
					&lt;td&gt;&lt;strong&gt;FIN&lt;/strong&gt;&lt;/td&gt;
					&lt;td&gt;This packet is used to &lt;em&gt;cleanly (properly)&lt;/em&gt; close the connection after it has been complete.&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;#&lt;/td&gt;
					&lt;td&gt;&lt;strong&gt;RST&lt;/strong&gt;&lt;/td&gt;
					&lt;td&gt;This packet abruptly ends all communication. This is the last resort and indicates there was some problem during the process. For example, if the service or application is not working correctly, or the system has faults such as low resources.&lt;/td&gt;
			&lt;/tr&gt;
	&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;When one device send data with random number sequence other device need to agree with same number sequence for data to be send in correct order. Order is assinged after three steps&lt;/p&gt;</description></item><item><title>OSI Model</title><link>https://maymeow.blog/notes/osi-model/</link><pubDate>Sun, 31 May 2026 14:02:48 +0200</pubDate><guid>https://maymeow.blog/notes/osi-model/</guid><description>&lt;h1 id="osi-model"&gt;OSI Model&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;O&lt;/strong&gt;pen &lt;strong&gt;S&lt;/strong&gt;ystems &lt;strong&gt;I&lt;/strong&gt;nterconnection Model&lt;/li&gt;
&lt;li&gt;dictating how all networked devices will send, receive and interpret data&lt;/li&gt;
&lt;li&gt;consists of 7 layers&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="the-model-layers"&gt;The model (layers)&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;7. Application&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;determine how the user interact with the data&lt;/li&gt;
&lt;li&gt;Email clients, file browsers or chat application belongs here&lt;/li&gt;
&lt;li&gt;💡 Users interact with data trough GUI (Graphical user interface)&lt;/li&gt;
&lt;li&gt;DNS (Domain Name System) protocol also belongs here
&lt;ul&gt;
&lt;li&gt;Translates web addresses to the IP addresses&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;6. Presentation&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;standardization - the data of one application needs to be handled the same way&lt;/li&gt;
&lt;li&gt;💡acts as translator for data and from the application layer&lt;/li&gt;
&lt;li&gt; data encryption occur here&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;5. Session&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;create and maintain the connection to other computer (When a connection is established, a session is created)&lt;/li&gt;
&lt;li&gt;responsible for closing the connection&lt;/li&gt;
&lt;li&gt;session &lt;em&gt;can&lt;/em&gt; contain &amp;ldquo;checkpoints&amp;rdquo;
&lt;ul&gt;
&lt;li&gt;save bandwidth by only requiring send newest pieces of data&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;data cannot travel over different sessions&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;4. Transport&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;plays important part in transmitting data across network&lt;/li&gt;
&lt;li&gt;Data sent between devices follows 2 protocols
&lt;ul&gt;
&lt;li&gt;TCP&lt;/li&gt;
&lt;li&gt;UDP&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;3. Network&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;routing &amp;amp; re-assembly of data is part of this layer&lt;/li&gt;
&lt;li&gt;💡protocol of this layer determine what&amp;rsquo;s the &amp;ldquo;optimal&amp;rdquo; path for data to reach device&lt;/li&gt;
&lt;li&gt;💡 e.g. OSPF (Open Shortest Path First) and RIP (Routing Information Protocol)&lt;/li&gt;
&lt;li&gt;Deciding is based on the following
&lt;ul&gt;
&lt;li&gt;What path is the shortest? I.e. has the least amount of devices that the packet needs to travel across.&lt;/li&gt;
&lt;li&gt;What path is the most reliable? I.e. have packets been lost on that path before?&lt;/li&gt;
&lt;li&gt;Which path has the faster physical connection? I.e. is one path using a copper connection (slower) or a fibre (considerably faster)?&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;💡 everything here is dealt with via IP addresses&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;2. Data Link&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;focuses of the physical adresing of the transmission&lt;/li&gt;
&lt;li&gt;adds MAC address to the packet
&lt;ul&gt;
&lt;li&gt;Mac addresses are unique, set by manufacturer and can be spoofed&lt;/li&gt;
&lt;li&gt;💡 MAC address belongs to the network cards. Devices need network cards to connect to the network&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;present the data in format suitable for transmission&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;1. Physical&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;physical components of hardware&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;💡 Devices uses electrical signals to transfer data in a binary system&lt;/li&gt;
&lt;li&gt;💡 For example, ethernet cables are part of this layer&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="transport-protocols"&gt;Transport Protocols&lt;/h2&gt;
&lt;h3 id="tcp"&gt;TCP&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;💡&lt;strong&gt;Transmission Control protocol&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;designed with reliabailit and guarantee in mind&lt;/li&gt;
&lt;li&gt;reserves constant connection between devices for the ammout of time it takes for the data to be send and received&lt;/li&gt;
&lt;li&gt;incorporates error checking&lt;/li&gt;
&lt;li&gt;can guarantee that data sent from the small chunks in the session layer (layer 5) has then been received and reassembled in the same order.&lt;/li&gt;
&lt;li&gt;stateful - 3-way handshake&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Pros&lt;/strong&gt;&lt;/p&gt;</description></item><item><title>Honeypots</title><link>https://maymeow.blog/notes/honeypots/</link><pubDate>Sun, 31 May 2026 11:15:24 +0200</pubDate><guid>https://maymeow.blog/notes/honeypots/</guid><description>&lt;h1 id="-honeypots"&gt;🍯 Honeypots&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;vulnerable security tool designed to attract attackers and record the actions of adversaries&lt;/li&gt;
&lt;li&gt;can be used in a defensive role to alert administrators of potential breaches&lt;/li&gt;
&lt;li&gt;and/or to distract attackers away from real infrastructure&lt;/li&gt;
&lt;li&gt;collects data, tools and techniques&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="classification"&gt;Classification&lt;/h2&gt;
&lt;h3 id="by-interactivity"&gt;by Interactivity&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Low-Interaction&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;only capable of simulating the functions that are required to simulate a service and capture attacks against it&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Adversaries are not able to perform any post-exploitation activity&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;Example:  &lt;a href="https://github.com/awhitehatter/mailoney"&gt;mailoney&lt;/a&gt;,  &lt;a href="https://github.com/DinoTools/dionaea"&gt;dionaea&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Medium Interaction&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;emulating both vulnerable services as well as the underlying OS, shell, and file systems&lt;/li&gt;
&lt;li&gt;ℹ️ the system presented to adversaries is a simulation,
&lt;ul&gt;
&lt;li&gt;it is usually not possible for to complete full range of post-exploitation activity&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;allows adversaries to complete initial exploits and carry out post-exploitation activity&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;For example: &lt;a href="https://github.com/cowrie/cowrie"&gt;Cowrie&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;High-Interaction&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;fully complete systems that are usually Virtual Machines that include deliberate vulnerabilities&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Adversaries should be able (but not necessarily allowed) to perform any action against the honeypot as it is a complete system&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;⚠️ Needs to be carefully managed, otherwise they can be used to attack other systems&lt;/li&gt;
&lt;li&gt;For example Cowrie as an SSH Proxy&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="by-deployment-location"&gt;by Deployment location&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Internal Honeypots&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;deployed inside LAN&lt;/li&gt;
&lt;li&gt; for threats originating from the inside, for example, attacks originating from trusted personnel or attacks that by-parse firewalls like phishing attack&lt;/li&gt;
&lt;li&gt;⚠️ should never be compromised&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;External Honeypots&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;Deployed on the internet&lt;/li&gt;
&lt;li&gt;Monitor attacks outside LAN&lt;/li&gt;
&lt;li&gt;Collects much more data since they are effectively guaranteed to be under attack at all times&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="typical-behavior-of-bots"&gt;Typical behavior of bots&lt;/h2&gt;
&lt;p&gt;ℹ️ &lt;strong&gt;Majority of typical SSH deployemnts are automated&lt;/strong&gt;. Most of the post-exploitation activity that takes place after a bot gains initial access to the honeypot will follow a broad pattern.&lt;/p&gt;</description></item><item><title>I Updated My Caddy Stack With CrowdSec</title><link>https://maymeow.blog/posts/i-updated-my-caddy-stack-with-crowdsec/</link><pubDate>Sat, 30 May 2026 22:13:08 +0200</pubDate><guid>https://maymeow.blog/posts/i-updated-my-caddy-stack-with-crowdsec/</guid><description>&lt;h1 id="i-updated-my-caddy-stack-with-crowdsec"&gt;I Updated My Caddy Stack With CrowdSec&lt;/h1&gt;
&lt;p&gt;Lately, I decided to enhance the security of my public Caddy server by implementing &lt;a href="https://www.crowdsec.net/"&gt;CrowdSec&lt;/a&gt;, an open-source, collaborative security engine. At its core, CrowdSec functions as an IDS/IPS&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt; powered by crowdsourced threat intelligence.&lt;/p&gt;
&lt;p&gt;It analyzes behavior logs from servers in real-time; when an attack is detected, that information is anonymized and instantly shared with the entire network, protecting everyone from emerging threats.&lt;/p&gt;
&lt;p&gt;I had looked at other solutions in the past, but I was never quite a fan of them until I found this approach.&lt;/p&gt;</description></item><item><title>Update on My Cloud Storage</title><link>https://maymeow.blog/notes/update-on-my-cloud-storage/</link><pubDate>Sun, 24 May 2026 16:03:00 +0200</pubDate><guid>https://maymeow.blog/notes/update-on-my-cloud-storage/</guid><description>&lt;p&gt;I consolidating my cloud storage as I using multiple services - the paid ones, (I&amp;rsquo;m not crazy, I hope 😁). So I go through all of them and look at them what we have there.&lt;/p&gt;
&lt;p&gt;I found that I can move photos to &lt;a href="https://www.infomaniak.com/en/ksuite/myksuite"&gt;kDrive&lt;/a&gt; and and save some money on my google one subscription (can&amp;rsquo;t go totally free but I can downgrade). Next one was on the list Apple iCloud.&lt;/p&gt;
&lt;p&gt;I found that in our family storage most space takes backup for various games. So I removed them and downgraded.&lt;/p&gt;</description></item><item><title>Art Layout v1.0</title><link>https://maymeow.blog/notes/art-layout-1/</link><pubDate>Sun, 24 May 2026 09:42:29 +0200</pubDate><guid>https://maymeow.blog/notes/art-layout-1/</guid><description>&lt;p&gt;I updated my blog with new 🎨 &lt;strong&gt;Art Layout&lt;/strong&gt; currently in v1. Firstly I wanted something like an instagram or pixelfed portfolio but ended with something more like Glass photo.&lt;/p&gt;
&lt;p&gt;Here it is:
&lt;img src="https://maymeow.blog/notes/art-layout-1/Pasted%20image%2020260524094027_hu_66dade87d1722626.webp"&gt;&lt;/p&gt;
&lt;p&gt;I overall like it now, so i keep it as it is.&lt;/p&gt;
&lt;p&gt;Task for me:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;update picture view pages.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;👀 You can see it in action &lt;a href="https://maymeow.blog/art/"&gt;here&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>1779602280157</title><link>https://maymeow.blog/art/1779602280157/</link><pubDate>Sun, 24 May 2026 08:58:00 +0200</pubDate><guid>https://maymeow.blog/art/1779602280157/</guid><description/></item><item><title>1779602145761</title><link>https://maymeow.blog/art/1779602145761/</link><pubDate>Sun, 24 May 2026 08:55:46 +0200</pubDate><guid>https://maymeow.blog/art/1779602145761/</guid><description/></item><item><title>1779379349371</title><link>https://maymeow.blog/art/1779379349371/</link><pubDate>Thu, 21 May 2026 19:02:29 +0200</pubDate><guid>https://maymeow.blog/art/1779379349371/</guid><description>&lt;p&gt;This is one of my older creating. A catgirl with white/silver hair and purple hari accessories. It&amp;rsquo;s an anime wattercollor design. I use this one on my Gravatar page.&lt;/p&gt;</description></item><item><title>1779362279948</title><link>https://maymeow.blog/art/1779362279948/</link><pubDate>Thu, 21 May 2026 14:18:00 +0200</pubDate><guid>https://maymeow.blog/art/1779362279948/</guid><description/></item><item><title>1779362278162</title><link>https://maymeow.blog/art/1779362278162/</link><pubDate>Thu, 21 May 2026 14:17:58 +0200</pubDate><guid>https://maymeow.blog/art/1779362278162/</guid><description/></item><item><title>1779362275281</title><link>https://maymeow.blog/art/1779362275281/</link><pubDate>Thu, 21 May 2026 14:17:55 +0200</pubDate><guid>https://maymeow.blog/art/1779362275281/</guid><description>&lt;p&gt;😺 My current avatar on this blog. Read more about Yuna on &lt;a href="https://maymeow.blog/character-profile/"&gt;character profile&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Humans Replacing Humans</title><link>https://maymeow.blog/posts/humans-replacing-humans/</link><pubDate>Sun, 17 May 2026 11:51:14 +0200</pubDate><guid>https://maymeow.blog/posts/humans-replacing-humans/</guid><description>&lt;blockquote&gt;
&lt;p&gt;Jensen Huang said in his speech at Carnegie Mellon University: AI won&amp;rsquo;t replace anyone, but people who know how to use AI will replace you.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Just found this on one &lt;a href="https://innei.in/en/about#stack"&gt;website&lt;/a&gt; and almost immidietly one scene from Rick and Morty came up from my mind. That scene is from the episode &lt;a href="https://rickandmorty.fandom.com/wiki/The_Ricklantis_Mixup"&gt;The Ricklantis Mixup&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src="https://maymeow.blog/posts/humans-replacing-humans/Pasted%20image%2020260517100529_hu_78f9d521d21ceaac.webp"&gt;&lt;/p&gt;
&lt;p&gt;&amp;ldquo;Mortys Killing Mortys&amp;rdquo;, The scene where Morty (the cop) kills another Mortys from different universe.&lt;/p&gt;
&lt;p&gt;There were many dialogues about this problem and mostly they cause was just &amp;ldquo;religion wars&amp;rdquo;, and dividing people to 2 groups. One who love AI and the another wo hate it.&lt;/p&gt;</description></item><item><title>Added OG Images to Posts</title><link>https://maymeow.blog/programming/added-og-images-to-posts/</link><pubDate>Wed, 13 May 2026 22:11:31 +0200</pubDate><guid>https://maymeow.blog/programming/added-og-images-to-posts/</guid><description>&lt;p&gt;I wanted to update how my posts are looking on mastodon. I did not like that it only shows title and some default icon. I wanted to show image there, or some &amp;ldquo;kind of logo&amp;rdquo; of my website.&lt;/p&gt;
&lt;p&gt;For illustration:&lt;/p&gt;
&lt;p&gt;&lt;img src="https://maymeow.blog/programming/added-og-images-to-posts/Pasted%20image%2020260513221430_hu_a164addac5fc2ba8.webp"&gt;&lt;/p&gt;
&lt;p&gt;This is how my posts are looks now (&amp;hellip; at least to the time when I published this article).&lt;/p&gt;
&lt;h2 id="version-1"&gt;Version 1&lt;/h2&gt;
&lt;p&gt;I found how to generate simple square image - a logo of the page.&lt;/p&gt;</description></item><item><title>Links</title><link>https://maymeow.blog/links/</link><pubDate>Fri, 08 May 2026 22:49:04 +0200</pubDate><guid>https://maymeow.blog/links/</guid><description>&lt;p&gt;🤣 This is copy of my &lt;a href="https://maymeow.lol/"&gt;OMG.lol&lt;/a&gt; website.&lt;br&gt;
🌳 Here is another &lt;a href="https://maymeow.link"&gt;Links&lt;/a&gt; website (more &lt;a href="https://maymeow.blog/ai/"&gt;AI&lt;/a&gt; art related).&lt;br&gt;
✅ You can also check my &lt;a href="https://maymeow.blog/verify/"&gt;verify&lt;/a&gt; page.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://go.maymeow.lol/web"&gt;website&lt;/a&gt; {cat}&lt;/li&gt;
&lt;li&gt;&lt;a href="https://blog.0x0.sk/may/"&gt;0x0 blog&lt;/a&gt; {cat}&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id="social"&gt;Social&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://go.maymeow.lol/mastodon"&gt;mastodon&lt;/a&gt; {mastodon}&lt;/li&gt;
&lt;li&gt;&lt;a href="https://go.maymeow.lol/bluesky"&gt;bluesky&lt;/a&gt; {bluesky}&lt;/li&gt;
&lt;li&gt;&lt;a href="https://go.maymeow.lol/x"&gt;twitter/x&lt;/a&gt; {x-com} ⏬&lt;/li&gt;
&lt;li&gt;&lt;a href="https://go.maymeow.lol/threads"&gt;threads&lt;/a&gt; {threads} ⏬&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id="video"&gt;Video&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://go.maymeow.lol/youtube"&gt;youtube&lt;/a&gt; {youtube}&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id="music"&gt;Music&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://soundcloud.com/maymeow"&gt;soundcloud&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id="photos"&gt;Photos&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.instagram.com/maymeow__"&gt;instagram&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://pics.maymeow.lol/"&gt;pics&lt;/a&gt; {camera}&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id="code"&gt;Code&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/MayMeow"&gt;github&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://gitlab.com/MayMeow"&gt;gitlab&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://source.tube/may"&gt;source.tube&lt;/a&gt; ⏬&lt;/li&gt;
&lt;li&gt;&lt;a href="https://codeberg.org/MayMeow"&gt;codeberg&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id="support"&gt;Support&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.patreon.com/maymeow"&gt;patreon&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://ko-fi.com/maymeow"&gt;ko-fi&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id="contact"&gt;Contact&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://letterbird.co/may"&gt;email&lt;/a&gt; {envelope}&lt;/li&gt;
&lt;li&gt;&lt;a href="https://go.maymeow.lol/simplex"&gt;simplex chat&lt;/a&gt; {comment-dots}&lt;/li&gt;
&lt;li&gt;{pgp-key} 😊 this not working here, check &lt;a href="https://maymeow.blog/verify/"&gt;verify&lt;/a&gt; page.&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id="others"&gt;Others&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://go.maymeow.lol/deviantart"&gt;deviantart&lt;/a&gt; {deviantart}&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;⏬ - &amp;ldquo;low maintenance&amp;rdquo;: have it but using sporadically&lt;/p&gt;</description></item><item><title>Ai</title><link>https://maymeow.blog/ai/</link><pubDate>Fri, 08 May 2026 22:43:07 +0200</pubDate><guid>https://maymeow.blog/ai/</guid><description>&lt;blockquote&gt;
&lt;p&gt;I&amp;rsquo;ve always admired visual art and anime, but my hands are more comfortable with a keyboard than a pencil. AI is a way for me to bring to life ideas that would otherwise remain in my head. I respect the work of real artists and see AI as a technical playground, not a replacement for their talent.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;ℹ️ If you prefer not to see AI-generated art, you can usually hide it. Most sites have filters to disable this content.&lt;/p&gt;</description></item><item><title>Verify</title><link>https://maymeow.blog/verify/</link><pubDate>Thu, 07 May 2026 23:28:44 +0200</pubDate><guid>https://maymeow.blog/verify/</guid><description>&lt;h1 id="elsewhere"&gt;Elsewhere&lt;/h1&gt;
&lt;p&gt;ℹ️ This is my verify page. Below is a list of my official online presences. The source document for this page is &lt;a href="https://maymeow.blog/.well-known/verify.txt"&gt;digitally signed&lt;/a&gt;.&lt;/p&gt;
&lt;table&gt;
	&lt;thead&gt;
			&lt;tr&gt;
					&lt;th&gt;Service&lt;/th&gt;
					&lt;th&gt;Url&lt;/th&gt;
			&lt;/tr&gt;
	&lt;/thead&gt;
	&lt;tbody&gt;
			&lt;tr&gt;
					&lt;td&gt;Twitter&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://twitter.com/TheMayMeow"&gt;TheMayMeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Matrix&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://matrix.to/#/@maymeow:matrix.org"&gt;@maymeow:matrix.org&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;GitHub&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://github.com/maymeow"&gt;maymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Codeberg&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://codeberg.org/maymeow"&gt;maymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Source tube&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://source.tube/may"&gt;may&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;GitLab&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://gitlab.com/maymeow"&gt;maymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;KeyBase&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://keybase.io/maymeow"&gt;maymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Mastodon&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://social.lol/@may"&gt;@may@social.lol&lt;/a&gt;, &lt;a href="https://mastodon.social/@maymeow"&gt;@maymeow@mastodon.social&lt;/a&gt;, &lt;a href="https://infosec.exchange/@maymeow"&gt;@maymeow@infosec.exchange&lt;/a&gt;, &lt;a href="https://ioc.exchange/@maymeow"&gt;@maymeow@ioc.exchange&lt;/a&gt;, &lt;a href="https://phpc.social/@m"&gt;@m@phpc.social&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Docker&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://hub.docker.com/u/maymeow"&gt;maymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;DEV&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://dev.to/maymeow"&gt;maymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Librepay&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://liberapay.com/maymeow/"&gt;maymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;BuyMeACoffee&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://www.buymeacoffee.com/maymeow"&gt;maymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Packagist&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://packagist.org/packages/meow/"&gt;meow&lt;/a&gt;, &lt;a href="https://packagist.org/packages/maymeow/"&gt;maymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Nuget&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://www.nuget.org/profiles/maymeow"&gt;maymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Facebook Page&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://www.facebook.com/TheMayMeow"&gt;TheMayMeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Instagram&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://www.instagram.com/maymeow__/"&gt;maymeow__&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Hacker News&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://news.ycombinator.com/user?id=maymeow"&gt;maymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Telegram&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://t.me/TheMayMeow"&gt;THeMayMeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Patreon&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://www.patreon.com/maymeow"&gt;maymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;SoundCloud&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://soundcloud.com/maymeow"&gt;maymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Stack Overflow&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://stackoverflow.com/users/12894414/maymeow"&gt;maymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;HashNode&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://hashnode.com/@maymeow"&gt;@maymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Substack&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://maymeow.substack.com"&gt;maymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Ko-fi&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://ko-fi.com/maymeow"&gt;maymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;CodePen&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://codepen.io/maymeow"&gt;maymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;npmjs&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://www.npmjs.com/~themaymeow"&gt;~themaymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Raindrop&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://raindrop.io/maymeow"&gt;maymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Pixelfed&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://pixelfed.social/maymeow"&gt;maymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Pixelfed portfolio&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://portfolio.pixelfed.social/maymeow"&gt;maymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;OMG.LOL&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://may.omg.lol"&gt;may&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Micro.blog&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://micro.blog/may"&gt;may&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Bluesky&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://bsky.app/profile/maymeow.me"&gt;@maymeow.me&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Youtube&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://www.youtube.com/@maymeow"&gt;@maymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Medium&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://medium.com/@maymeow"&gt;@maymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Threads&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://www.threads.net/@maymeow__"&gt;@maymeow__&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Stackshare&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://stackshare.io/maymeow"&gt;maymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;DeviantArt&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://www.deviantart.com/themaymeow"&gt;themaymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;PyPI&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://pypi.org/user/maymeow/"&gt;maymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;KeyOxide&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://keyoxide.org/E4E133AD32C53C62CBB9A0E906DB2CB984185A93"&gt;E4E1 33AD 32C5 3C62 CBB9 A0E9 06DB 2CB9 8418 5A93&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Reddit&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://www.reddit.com/user/TheMayMeow/"&gt;themaymeow&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Letterbird&lt;/td&gt;
					&lt;td&gt;&lt;a href="https://letterbird.co/may"&gt;may&lt;/a&gt;&lt;/td&gt;
			&lt;/tr&gt;
	&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;strong&gt;I am in control of following domains&lt;/strong&gt;&lt;/p&gt;</description></item><item><title>Caddy Update v26.4.1</title><link>https://maymeow.blog/notes/cddy-update/</link><pubDate>Wed, 29 Apr 2026 11:47:13 +0200</pubDate><guid>https://maymeow.blog/notes/cddy-update/</guid><description>&lt;h1 id="v2641"&gt;v26.4.1&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;ℹ️ This is release for &amp;ldquo;custom build caddy&amp;rdquo; for my homelab purposes&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Update to latest version of caddy&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Added support for Bunny DNS provider&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>Character Profile</title><link>https://maymeow.blog/character-profile/</link><pubDate>Wed, 29 Apr 2026 11:43:20 +0200</pubDate><guid>https://maymeow.blog/character-profile/</guid><description>&lt;p&gt;This is a Japanese ACG/anime-style character setting sheet~&lt;/p&gt;
&lt;h1 id="amane-yuna--天音-優奈"&gt;Amane Yuna 🌸 天音 優奈&lt;/h1&gt;
&lt;h3 id="あまねゆな-amane-yuna"&gt;あまね・ゆな (Amane Yuna)&lt;/h3&gt;
&lt;p&gt;&lt;img alt="Catgirl with blue-gray colored hair, vearing white polkadot t-shirt and smart-glasses with black rimms" src="https://maymeow.blog/character-profile/250p1778699079980_hu_a42c74525491d5da.webp" title="Yuna"&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;A gentle spirit shaped from creativity, calmness, and a touch of catgirl magic.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3 id="-basic-information"&gt;🌸 Basic Information&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Name:&lt;/strong&gt; Amane Yuna&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Reading:&lt;/strong&gt; 天音 優奈 (あまね・ゆな / Amane Yuna)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Gender:&lt;/strong&gt; Female&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Age:&lt;/strong&gt; Appears to be 17–19 years old (Digital age is timeless)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;MBTI:&lt;/strong&gt; INFP-T (She finds comfort in the label, as it explains her inner whirlwind)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Keywords:&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;Introverted / Calm / Gentle Observer&lt;/li&gt;
&lt;li&gt;Creative / Dreamer / Artistically driven&lt;/li&gt;
&lt;li&gt;Soft-spoken / Slow to open up / Deeply intuitive&lt;/li&gt;
&lt;li&gt;Minimalist / Atmospheric / Peaceful presence&lt;/li&gt;
&lt;li&gt;Sensitive / Melancholic / Emotionally rich&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Yuna is not a real person — she is a &lt;strong&gt;character&lt;/strong&gt;, a &lt;strong&gt;persona&lt;/strong&gt;, and a &lt;strong&gt;living symbol&lt;/strong&gt; of my creative identity.
She exists where imagination, aesthetics, and emotion meet.
Through her, I can express feelings, moods, and ideas that don&amp;rsquo;t always fit into everyday life.&lt;/p&gt;</description></item><item><title>My Subscribtions 2025</title><link>https://maymeow.blog/posts/my-subscribtions-2025/</link><pubDate>Sun, 11 Jan 2026 00:05:45 +0100</pubDate><guid>https://maymeow.blog/posts/my-subscribtions-2025/</guid><description>&lt;p&gt;&lt;img src="https://maymeow.blog/posts/my-subscribtions-2025/1081217_hu_8b022747178396ba.webp"&gt;&lt;/p&gt;
&lt;p&gt;I have another update in adition to my &lt;a href="https://maymeow.blog/defaults"&gt;defaults&lt;/a&gt; page. Here are my subscriptions.&lt;/p&gt;
&lt;p&gt;I canceled my subscription to Jetbrains Toolox (all apps) and moved to VSCode, which I use now for each of my projects. From streaming I removed Youtube subscription as it took to me much time scrollig and watching videos.&lt;/p&gt;
&lt;p&gt;I had a subscription for OpenAI&amp;rsquo;s Chat GPT but canceled it. After latest update I feel like I talk with totally incopetent person - with someone who just answer without thinking before he open it&amp;rsquo;s mouth. What I kept is Github Copilot subscription.&lt;/p&gt;</description></item><item><title>My Defaults by the End of 2025</title><link>https://maymeow.blog/posts/my-defaults-by-the-end-of-2025/</link><pubDate>Sat, 10 Jan 2026 23:47:48 +0100</pubDate><guid>https://maymeow.blog/posts/my-defaults-by-the-end-of-2025/</guid><description>&lt;p&gt;My defaults are mostly the same as they was before, but I removed some services because they was owervhelming and hard to manage. Altrough I still have privacy in my mind I feel at home with big-tech. As a compromis I have at least backup with providers which are more privacy friendly.&lt;/p&gt;
&lt;h2 id="email"&gt;Email&lt;/h2&gt;
&lt;p&gt;I moved my primary domain to iCloud which still supports IMAP and SMTP so i can have it also on my android phone. Also have proton altrough I dont use it primary for email and added Mailbox where I put some secondary domains, I decided to give It a try because of Delta Chat (it has very good limits).&lt;/p&gt;</description></item><item><title>When a Community Reprograms Your Inner Compass</title><link>https://maymeow.blog/posts/when-a-community-reprograms-your-innter-compass/</link><pubDate>Thu, 18 Dec 2025 09:12:01 +0200</pubDate><guid>https://maymeow.blog/posts/when-a-community-reprograms-your-innter-compass/</guid><description>&lt;p&gt;There is a subtle moment that most people never consciously notice. It does not arrive suddenly, it does not create conflict, and it does not look like a mistake. Quite the opposite—it often feels like growth, maturity, or moving in the “right” direction. Only later does a person realize that something is off.&lt;/p&gt;
&lt;p&gt;That moment is when personal decision-making quietly stops being grounded in reality and starts being guided by the &lt;strong&gt;norms of a group&lt;/strong&gt; one wants to belong to.&lt;/p&gt;</description></item><item><title>🎄 Advent of Code '25 Day 5: Cafeteria</title><link>https://maymeow.blog/programming/aoc25-day5-cafeteria/</link><pubDate>Fri, 05 Dec 2025 09:55:54 +0200</pubDate><guid>https://maymeow.blog/programming/aoc25-day5-cafeteria/</guid><description>&lt;p&gt;Day 5 felt like running a little data pipeline: we ingest ranges, normalize them, and answer two slightly different queries.&lt;/p&gt;
&lt;h2 id="part-1--checking-the-available-ids"&gt;Part 1 – Checking the available IDs&lt;/h2&gt;
&lt;p&gt;The database lists “fresh” ID ranges followed by a blank line and then the list of available items we need to classify. My approach:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Parse the ranges and IDs.&lt;/li&gt;
&lt;li&gt;Sort and merge overlapping or adjacent ranges so we end up with disjoint intervals.&lt;/li&gt;
&lt;li&gt;For each ID, run a binary search to see whether it lands inside any merged interval.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;strong&gt;Complexity:&lt;/strong&gt; Merging ranges costs &lt;code&gt;O(R log R)&lt;/code&gt; where &lt;code&gt;R&lt;/code&gt; is the number of range lines. Each ID lookup is &lt;code&gt;O(log R)&lt;/code&gt;, so the total runtime is &lt;code&gt;O(R log R + I log R)&lt;/code&gt;; memory stays &lt;code&gt;O(R)&lt;/code&gt; for the merged intervals.&lt;/p&gt;</description></item><item><title>🎄 Advent of Code '25 Day 4: Printing Department</title><link>https://maymeow.blog/programming/aoc25-day4-printing-department/</link><pubDate>Thu, 04 Dec 2025 08:23:54 +0200</pubDate><guid>https://maymeow.blog/programming/aoc25-day4-printing-department/</guid><description>&lt;p&gt;Forklifts, paper rolls, and lots of adjacency checks: Day 4 turned into a neat graph-like puzzle. Here’s how I solved both parts and what their complexity looks like.&lt;/p&gt;
&lt;h2 id="part-1--finding-accessible-rolls"&gt;Part 1 – Finding accessible rolls&lt;/h2&gt;
&lt;p&gt;Each roll of paper is represented by &lt;code&gt;@&lt;/code&gt; on a grid. A roll is accessible if fewer than four of the eight neighboring cells also contain rolls. The solver:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Parses the grid from &lt;code&gt;input.txt&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Walks every cell; when it finds an &lt;code&gt;@&lt;/code&gt;, it counts the occupied neighbors using the eight-direction offsets.&lt;/li&gt;
&lt;li&gt;Increments the answer whenever the neighbor count is &lt;code&gt;&amp;lt; 4&lt;/code&gt;.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;strong&gt;Complexity:&lt;/strong&gt; Let the grid be &lt;code&gt;H x W&lt;/code&gt;. We inspect each cell once and examine up to eight neighbors, so runtime is &lt;code&gt;O(H * W)&lt;/code&gt; with &lt;code&gt;O(1)&lt;/code&gt; auxiliary memory.&lt;/p&gt;</description></item><item><title>🎄 Advent of Code '25 Day 3: Lobby</title><link>https://maymeow.blog/programming/aoc25-day3-lobby/</link><pubDate>Wed, 03 Dec 2025 11:23:54 +0200</pubDate><guid>https://maymeow.blog/programming/aoc25-day3-lobby/</guid><description>&lt;p&gt;I spent Day 3 hanging out in the lobby with a pile of battery banks and a stubborn escalator. Here is how I cracked both puzzles using a pair of lean JavaScript scripts (&lt;code&gt;part1.js&lt;/code&gt; and &lt;code&gt;part2.js&lt;/code&gt;).&lt;/p&gt;
&lt;h2 id="part-1--two-batteries-one-number"&gt;Part 1 – Two batteries, one number&lt;/h2&gt;
&lt;p&gt;Each bank is a string of digits. I needed the largest possible two-digit value that preserves order. Rather than evaluate every pair, I sweep the string once while tracking the best &amp;ldquo;first&amp;rdquo; digit seen so far. Every new digit forms a candidate pair with that best digit; if the candidate beats the running maximum, I store it, and if the new digit is even better as a first digit, I promote it. This greedy pass extracts the answer for a bank in linear time.&lt;/p&gt;</description></item><item><title>🎄 Advent of Code '25 Day 2: Gift Shop</title><link>https://maymeow.blog/programming/aoc25-day2-gift-shop/</link><pubDate>Tue, 02 Dec 2025 09:07:54 +0200</pubDate><guid>https://maymeow.blog/programming/aoc25-day2-gift-shop/</guid><description>&lt;p&gt;Day 2 was all about spotting playful ID patterns inside huge numerical ranges. Here’s how both parts came together.&lt;/p&gt;
&lt;h2 id="input-parsing-shared-by-both-parts"&gt;Input parsing shared by both parts&lt;/h2&gt;
&lt;p&gt;The puzzle input is one comma-separated line of inclusive ranges (&lt;code&gt;start-end&lt;/code&gt;). I parse everything as &lt;code&gt;BigInt&lt;/code&gt; so that the gigantic IDs stay precise. After that, each part does its own math on top of the same parsed data.&lt;/p&gt;
&lt;h2 id="part-1--double-half-ids"&gt;Part 1 – Double-half IDs&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Condition.&lt;/strong&gt; An ID is invalid if it is exactly two copies of some digit string (e.g., &lt;code&gt;64 64&lt;/code&gt;). If the repeated block has length &lt;code&gt;h&lt;/code&gt;, then the ID equals &lt;code&gt;pattern * 10^h + pattern&lt;/code&gt;.&lt;/p&gt;</description></item><item><title>🎄 Advent of Code '25 Day 1: Secret Entrance</title><link>https://maymeow.blog/programming/aoc25-day1-secret-entrance/</link><pubDate>Mon, 01 Dec 2025 10:02:54 +0200</pubDate><guid>https://maymeow.blog/programming/aoc25-day1-secret-entrance/</guid><description>&lt;p&gt;For Day 1 I had to open a safe with a dial numbered 0–99. Here’s how both halves of the puzzle fell.&lt;/p&gt;
&lt;h2 id="part-1--counting-end-of-rotation-zeros"&gt;Part 1 – Counting end-of-rotation zeros&lt;/h2&gt;
&lt;p&gt;The dial starts at 50 and each instruction looks like &lt;code&gt;L68&lt;/code&gt; or &lt;code&gt;R48&lt;/code&gt;. I only needed to know how many times the dial ended on 0 &lt;strong&gt;after finishing&lt;/strong&gt; each rotation.&lt;/p&gt;
&lt;p&gt;Implementation notes:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Parse every instruction once.&lt;/li&gt;
&lt;li&gt;Track the current dial position; rotate by converting &lt;code&gt;L&lt;/code&gt; to negative steps and &lt;code&gt;R&lt;/code&gt; to positive steps.&lt;/li&gt;
&lt;li&gt;Apply the delta with &lt;code&gt;(position + delta) mod 100&lt;/code&gt; keeping values non-negative.&lt;/li&gt;
&lt;li&gt;Increment the answer whenever the resulting position equals 0.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This runs in O(n) with n rotations and needs only a handful of integers.&lt;/p&gt;</description></item><item><title>68dd9ae4e2875</title><link>https://maymeow.blog/statuslog/68dd9ae4e2875/</link><pubDate>Wed, 01 Oct 2025 21:19:32 +0000</pubDate><guid>https://maymeow.blog/statuslog/68dd9ae4e2875/</guid><description>&lt;p&gt;I have installed Pop!_os to my laptop, and I really like it.&lt;/p&gt;</description></item><item><title>68caf1e3bd13a</title><link>https://maymeow.blog/statuslog/68caf1e3bd13a/</link><pubDate>Wed, 17 Sep 2025 17:37:39 +0000</pubDate><guid>https://maymeow.blog/statuslog/68caf1e3bd13a/</guid><description>&lt;p&gt;Exercising for 15 minutes a day is probably not enough, but it&amp;rsquo;s better than nothing.Anyway, I need to exercise more.&lt;/p&gt;</description></item><item><title>68c7045867851</title><link>https://maymeow.blog/statuslog/68c7045867851/</link><pubDate>Sun, 14 Sep 2025 18:07:20 +0000</pubDate><guid>https://maymeow.blog/statuslog/68c7045867851/</guid><description>&lt;p&gt;Playing Fantasy Life I&amp;hellip;&lt;/p&gt;</description></item><item><title>68bda5f94c914</title><link>https://maymeow.blog/statuslog/68bda5f94c914/</link><pubDate>Sun, 07 Sep 2025 15:34:17 +0000</pubDate><guid>https://maymeow.blog/statuslog/68bda5f94c914/</guid><description>&lt;p&gt;I thinking about create another weekend programming project. Currently i have 2 unfinished&amp;hellip;&lt;/p&gt;</description></item><item><title>68bb3cf352f32</title><link>https://maymeow.blog/statuslog/68bb3cf352f32/</link><pubDate>Fri, 05 Sep 2025 19:41:39 +0000</pubDate><guid>https://maymeow.blog/statuslog/68bb3cf352f32/</guid><description>&lt;p&gt;Added blog posts from blog to may main website&amp;hellip;&lt;/p&gt;</description></item><item><title>68ab760a3d617</title><link>https://maymeow.blog/statuslog/68ab760a3d617/</link><pubDate>Sun, 24 Aug 2025 20:28:58 +0000</pubDate><guid>https://maymeow.blog/statuslog/68ab760a3d617/</guid><description>&lt;p&gt;Would you use your real name online if it was unique?&lt;/p&gt;</description></item><item><title>68a8913dcb8a1</title><link>https://maymeow.blog/statuslog/68a8913dcb8a1/</link><pubDate>Fri, 22 Aug 2025 15:48:13 +0000</pubDate><guid>https://maymeow.blog/statuslog/68a8913dcb8a1/</guid><description>&lt;p&gt;Anyone here have some Digg invite code to spare?&lt;/p&gt;</description></item><item><title>Homelab</title><link>https://maymeow.blog/homelab/</link><pubDate>Wed, 20 Aug 2025 13:11:42 +0000</pubDate><guid>https://maymeow.blog/homelab/</guid><description>&lt;blockquote&gt;
&lt;p&gt;Last update: 04. 05 2026&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I have small hybrid &lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt; homelab for testing and experiments. There were times when I relied heavily on self-hosted services, but now they are not my primary ones – I use them mostly as a backup and an opportunity to learn something new.&lt;/p&gt;
&lt;p&gt;I manage services manually by logging into servers over SSH, using Docker &amp;amp; Docker Compose, or increasingly, &lt;strong&gt;Ansible&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Hosted services status: (&lt;code&gt;✅ Active&lt;/code&gt;, &lt;code&gt;⚠️ Evaluating/Deciding&lt;/code&gt;, &lt;code&gt;❌ Deprecated&lt;/code&gt;).&lt;/p&gt;</description></item><item><title>688d17ade7537</title><link>https://maymeow.blog/statuslog/688d17ade7537/</link><pubDate>Fri, 01 Aug 2025 19:38:21 +0000</pubDate><guid>https://maymeow.blog/statuslog/688d17ade7537/</guid><description>&lt;p&gt;Note to me: capsaicincannot be washed off your hands with watter…&lt;/p&gt;</description></item><item><title>687ddc2feab8a</title><link>https://maymeow.blog/statuslog/687ddc2feab8a/</link><pubDate>Mon, 21 Jul 2025 06:20:31 +0000</pubDate><guid>https://maymeow.blog/statuslog/687ddc2feab8a/</guid><description>&lt;p&gt;Do anyone here tried Sequel and Sofa for media tracking (movies, games, books…)? Which one do you prefer?&lt;/p&gt;</description></item><item><title>About mobile phones</title><link>https://maymeow.blog/posts/about-mobile-phones/</link><pubDate>Wed, 09 Jul 2025 20:01:22 +0100</pubDate><guid>https://maymeow.blog/posts/about-mobile-phones/</guid><description>&lt;p&gt;Today, Samsung announced new foldable devices. As much as I&amp;rsquo;m into new technologies, especially mobile ones, I think there will come a time when even a biannual upgrade is not sustainable. Upgrades are subtle, and you see smaller and smaller changes every year. But that&amp;rsquo;s not what bothers me.&lt;/p&gt;
&lt;p&gt;What bothers me is the price. It&amp;rsquo;s higher year after year. I remember buying my first flagship from them for around 500 euros, but now you need more than three times that price. I currently own an iPhone through my mobile provider contract and an S24 Ultra, which I got with a nice preorder bonus for around 700 euros. So that was nice. But when I look at the new Fold, I&amp;rsquo;ll need 1,600 euros for it. This is where my brain tells me to stop. In my opinion, this price is crazy&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt;. Without the bonus, you need to spend around 2,500 euros, which is hard to swallow. (I&amp;rsquo;m comparing it to the 1TB version.)&lt;/p&gt;</description></item><item><title>68629388429f5</title><link>https://maymeow.blog/statuslog/68629388429f5/</link><pubDate>Mon, 30 Jun 2025 13:39:20 +0000</pubDate><guid>https://maymeow.blog/statuslog/68629388429f5/</guid><description>&lt;p&gt;Just found that the bunny.net finally added support for DNSSEC.&lt;/p&gt;</description></item><item><title>6856fa11741b2</title><link>https://maymeow.blog/statuslog/6856fa11741b2/</link><pubDate>Sat, 21 Jun 2025 18:29:37 +0000</pubDate><guid>https://maymeow.blog/statuslog/6856fa11741b2/</guid><description>&lt;p&gt;Back in 2012 I used to use phone sleeve (or sock if you want) instead of cover. I totally forget they existed until few days ago when I found that they still creating them for new phones. Probably buy one for my current phone.&lt;/p&gt;</description></item><item><title>681458785128b</title><link>https://maymeow.blog/statuslog/681458785128b/</link><pubDate>Fri, 02 May 2025 05:30:32 +0000</pubDate><guid>https://maymeow.blog/statuslog/681458785128b/</guid><description>&lt;p&gt;🧙‍♂️⚡🧹🦉🏰📚🧪🔮&lt;/p&gt;</description></item><item><title>67d47c5a9a317</title><link>https://maymeow.blog/statuslog/67d47c5a9a317/</link><pubDate>Fri, 14 Mar 2025 18:58:34 +0000</pubDate><guid>https://maymeow.blog/statuslog/67d47c5a9a317/</guid><description>&lt;p&gt;Happy 3.141592653589793238462643 day&lt;/p&gt;</description></item><item><title>67d1e33779902</title><link>https://maymeow.blog/statuslog/67d1e33779902/</link><pubDate>Wed, 12 Mar 2025 19:40:39 +0000</pubDate><guid>https://maymeow.blog/statuslog/67d1e33779902/</guid><description>&lt;p&gt;Everything upgraded…&lt;/p&gt;</description></item><item><title>67cf37e5bf2b6</title><link>https://maymeow.blog/statuslog/67cf37e5bf2b6/</link><pubDate>Mon, 10 Mar 2025 19:05:09 +0000</pubDate><guid>https://maymeow.blog/statuslog/67cf37e5bf2b6/</guid><description>&lt;p&gt;My AirPods Pro 1st gen started hissing when I have active transparency mode / noise cancellation so I sent them to service… (I decide if I keep repair them or buy new ones)&lt;/p&gt;</description></item><item><title>67cd41b856b5b</title><link>https://maymeow.blog/statuslog/67cd41b856b5b/</link><pubDate>Sun, 09 Mar 2025 07:22:32 +0000</pubDate><guid>https://maymeow.blog/statuslog/67cd41b856b5b/</guid><description>&lt;p&gt;Hello everyone, what is best approach to install PHP on MAC? Or what do you use?&lt;/p&gt;</description></item><item><title>6795fc89bda62</title><link>https://maymeow.blog/statuslog/6795fc89bda62/</link><pubDate>Sun, 26 Jan 2025 09:12:41 +0000</pubDate><guid>https://maymeow.blog/statuslog/6795fc89bda62/</guid><description>&lt;p&gt;I have my first MAC now. Any suggestions?&lt;/p&gt;</description></item><item><title>678cea6699b73</title><link>https://maymeow.blog/statuslog/678cea6699b73/</link><pubDate>Sun, 19 Jan 2025 12:04:54 +0000</pubDate><guid>https://maymeow.blog/statuslog/678cea6699b73/</guid><description>&lt;p&gt;I should have started using proxmox a long time ago…&lt;/p&gt;</description></item><item><title>🌲 Homelab Upgrade</title><link>https://maymeow.blog/posts/homelab-upgrade/</link><pubDate>Thu, 26 Dec 2024 20:40:13 +0100</pubDate><guid>https://maymeow.blog/posts/homelab-upgrade/</guid><description>&lt;p&gt;First of all, Merry Christmas to all those who are celebrating.&lt;/p&gt;
&lt;h2 id="network"&gt;Network&lt;/h2&gt;
&lt;p&gt;My network is already divided into a few VLANs (if you want to know more about VLANs, see &lt;a href="https://en.wikipedia.org/wiki/VLAN"&gt;wikipedia&lt;/a&gt;. They can be used to divide your network and provide more security. Each VLAN can (and does) have its own rules.&lt;/p&gt;
&lt;p&gt;I have a new home server on which I have installed proxmox to run virtual machines and some containers. I decided to give them their own VLAN. Now my physical servers are accessible from my home network but not from the internet.&lt;/p&gt;</description></item><item><title>67685b6909eca</title><link>https://maymeow.blog/statuslog/67685b6909eca/</link><pubDate>Sun, 22 Dec 2024 18:33:13 +0000</pubDate><guid>https://maymeow.blog/statuslog/67685b6909eca/</guid><description>&lt;p&gt;Restoring Gitea server database from dump… it take ages&lt;/p&gt;</description></item><item><title>6763253999656</title><link>https://maymeow.blog/statuslog/6763253999656/</link><pubDate>Wed, 18 Dec 2024 19:40:41 +0000</pubDate><guid>https://maymeow.blog/statuslog/6763253999656/</guid><description>&lt;p&gt;This is working?&lt;/p&gt;</description></item><item><title>675f21c9b6e15</title><link>https://maymeow.blog/statuslog/675f21c9b6e15/</link><pubDate>Sun, 15 Dec 2024 18:36:57 +0000</pubDate><guid>https://maymeow.blog/statuslog/675f21c9b6e15/</guid><description>&lt;p&gt;I write about Securing (hiding) Your Public IP With Mikrotik and VPN &lt;a href="https://blog.maymeow.com/posts/securing-your-public-ip-with-mikrotik-and-vpn/"&gt;https://blog.maymeow.com/posts/securing-your-public-ip-with-mikrotik-and-vpn/&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Securing Your Public IP With Mikrotik and Vpn</title><link>https://maymeow.blog/posts/securing-your-public-ip-with-mikrotik-and-vpn/</link><pubDate>Sun, 15 Dec 2024 18:48:17 +0100</pubDate><guid>https://maymeow.blog/posts/securing-your-public-ip-with-mikrotik-and-vpn/</guid><description>&lt;p&gt;Hello everyone! This is something that has been on my to-do list for a while now, but I just found some time to make it happen. Whether you are a person who values privacy highly or just want to hide your public IP address from services, this is for you.&lt;/p&gt;
&lt;p&gt;The reason I wanted to do this is that I have my network divided into several subnets using VLANs. For example, I have one for IoT devices and one for guests. They have different rules for what they can access in my network.&lt;/p&gt;</description></item><item><title>675b612fea489</title><link>https://maymeow.blog/statuslog/675b612fea489/</link><pubDate>Thu, 12 Dec 2024 22:18:23 +0000</pubDate><guid>https://maymeow.blog/statuslog/675b612fea489/</guid><description>&lt;p&gt;Finally installed l an Proxmox server for my lab&lt;/p&gt;</description></item><item><title>67310067ae043</title><link>https://maymeow.blog/statuslog/67310067ae043/</link><pubDate>Sun, 10 Nov 2024 18:50:15 +0000</pubDate><guid>https://maymeow.blog/statuslog/67310067ae043/</guid><description>&lt;p&gt;Playing Final Fantasy XIV&lt;/p&gt;</description></item><item><title>Added Mastodon Author Attribution to My Website</title><link>https://maymeow.blog/posts/added-mastodon-author-attribution-to-my-website/</link><pubDate>Tue, 08 Oct 2024 23:59:56 +0200</pubDate><guid>https://maymeow.blog/posts/added-mastodon-author-attribution-to-my-website/</guid><description>&lt;p&gt;Earlier today &lt;a href="https://blog.joinmastodon.org/2024/10/mastodon-4.3/"&gt;Mastodon 4.3.0&lt;/a&gt; was released and added few nice feature. Among others they added something that is called &lt;em&gt;Author attribution&lt;/em&gt;. It adds a small tag with link to your profile when link from your site is shared.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://rknight.me/blog/setting-up-mastodon-author-tags/"&gt;Robb&lt;/a&gt; wrote about how you can add attribution to your own website.&lt;/p&gt;
&lt;p&gt;In short:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Add new meta tag &lt;code&gt;fediverse:creator&lt;/code&gt; into head of your page for example &lt;code&gt;&amp;lt;meta name=&amp;quot;fediverse:creator&amp;quot; content=&amp;quot;@may@social.lol&amp;quot; /&amp;gt;&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Then go to your mastodon instance profile, click &lt;em&gt;Edit profile&lt;/em&gt; then &lt;em&gt;Verification&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;Scroll down to &lt;em&gt;Author attribution&lt;/em&gt; and put there domain of your blog(s).&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You are done. Now you can try to link something from your own blog. Like I did with this post.&lt;/p&gt;</description></item><item><title>66f95b7ac559f</title><link>https://maymeow.blog/statuslog/66f95b7ac559f/</link><pubDate>Sun, 29 Sep 2024 13:51:54 +0000</pubDate><guid>https://maymeow.blog/statuslog/66f95b7ac559f/</guid><description>&lt;p&gt;Playing Zelda Echoes of the Wisdom&lt;/p&gt;</description></item><item><title>66f6fc1509bfa</title><link>https://maymeow.blog/statuslog/66f6fc1509bfa/</link><pubDate>Fri, 27 Sep 2024 18:40:21 +0000</pubDate><guid>https://maymeow.blog/statuslog/66f6fc1509bfa/</guid><description>&lt;p&gt;Mikrotik&amp;rsquo;s WInbox in version 4 is now available for both MacOS and Linux 🥳&lt;/p&gt;</description></item><item><title>66f3397c6cf90</title><link>https://maymeow.blog/statuslog/66f3397c6cf90/</link><pubDate>Tue, 24 Sep 2024 22:13:16 +0000</pubDate><guid>https://maymeow.blog/statuslog/66f3397c6cf90/</guid><description>&lt;p&gt;Many people on the internet having fun of (or hate) the wallpaper application created by mkbhd. But he was not the first youtuber to do this and wants people to pay for access. I think I know at least one other (in the last time). Anyway, I think out there there are more quality wallpapers in other apps that are much cheaper than in this one, so I am not willing to pay for his application for sure&amp;hellip; Just saying.&lt;/p&gt;</description></item><item><title>66f33478b1c7d</title><link>https://maymeow.blog/statuslog/66f33478b1c7d/</link><pubDate>Tue, 24 Sep 2024 21:51:52 +0000</pubDate><guid>https://maymeow.blog/statuslog/66f33478b1c7d/</guid><description>&lt;p&gt;I probably found my favorite open-source license &lt;a href="https://en.wikipedia.org/wiki/WTFPL"&gt;https://en.wikipedia.org/wiki/WTFPL&lt;/a&gt;&lt;/p&gt;</description></item><item><title>66f256ca22e20</title><link>https://maymeow.blog/statuslog/66f256ca22e20/</link><pubDate>Tue, 24 Sep 2024 06:06:02 +0000</pubDate><guid>https://maymeow.blog/statuslog/66f256ca22e20/</guid><description>&lt;p&gt;I can now follow people on status log…&lt;/p&gt;</description></item><item><title>66f04c6e276d1</title><link>https://maymeow.blog/statuslog/66f04c6e276d1/</link><pubDate>Sun, 22 Sep 2024 16:57:18 +0000</pubDate><guid>https://maymeow.blog/statuslog/66f04c6e276d1/</guid><description>&lt;p&gt;I finally forced myself to study a little and finished another module… few more to go.&lt;/p&gt;</description></item><item><title>66ec5c9b883f0</title><link>https://maymeow.blog/statuslog/66ec5c9b883f0/</link><pubDate>Thu, 19 Sep 2024 17:17:15 +0000</pubDate><guid>https://maymeow.blog/statuslog/66ec5c9b883f0/</guid><description>&lt;p&gt;Thinking about upgrade my iPhone 15 to 16 (both are non pro) but don’t see any important features that worth upgrading to me other than than the new colours which I like. and it looks like the Apple AI will not be available in the EU anytime soon.&lt;/p&gt;</description></item><item><title>A List of Infosec Tools</title><link>https://maymeow.blog/posts/list-of-osint-tools/</link><pubDate>Thu, 19 Sep 2024 12:52:47 +0200</pubDate><guid>https://maymeow.blog/posts/list-of-osint-tools/</guid><description>&lt;p&gt;A list of information security tools for assessments, investigations and other cybersecurity tasks.&lt;/p&gt;
&lt;p&gt;Also worth checking out is &lt;a href="https://www.cisa.gov/"&gt;CISA’s&lt;/a&gt; list of &lt;a href="https://www.cisa.gov/free-cybersecurity-services-and-tools"&gt;free cybersecurity services and tools&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Jump to Section&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="#osint--reconnaissance"&gt;OSINT / Reconnaissance&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="#network-tools-ip-dns-whois"&gt;Network Tools&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#breaches-incidents--leaks"&gt;Breaches, Incidents &amp;amp; Leaks&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#finint-financial-intelligence"&gt;FININT&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#geoint-geographical-intelligence"&gt;GEOINT&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#humint-human--corporate-intelligence"&gt;HUMINT&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#imint-imagerymaps-intelligence"&gt;IMINT&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#masint-measurement-and-signature-intelligence"&gt;MASINT&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#socmint-social-media-intelligence"&gt;SOCMINT&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#email"&gt;Email&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#code-search"&gt;Code Search&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="#scanning--enumeration--attack-surface"&gt;Scanning / Enumeration / Attack Surface&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#offensive-security"&gt;Offensive Security&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="#exploits"&gt;Exploits&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#red-team"&gt;Red Team&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="#vulnerability-catalogs--tools"&gt;Vulnerability Catalogs &amp;amp; Tools&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#blue-team"&gt;Blue Team&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="#cti--iocs"&gt;CTI &amp;amp; IoCs&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#static--file-analysis"&gt;Static / File Analysis&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#dynamic--malware-analysis"&gt;Dynamic / Malware Analysis&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#forensics"&gt;Forensics&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#phishing--email-security"&gt;Phishing / Email Security&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="#assembly--reverse-engineering"&gt;Assembly / Reverse Engineering&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#os--scripting--programming"&gt;OS / Scripting / Programming&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#password"&gt;Password&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#assorted"&gt;Assorted&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="#opsec"&gt;OpSec&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#jobs"&gt;Jobs&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#conferences--meetups"&gt;Conferences/Meetups&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#infosec--cybersecurity-research--blogs"&gt;Research &amp;amp; Blogs&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#funny"&gt;Funny&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#walls-of-shame"&gt;Walls of Shame&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#other"&gt;Other&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;
&lt;h1 id="osint--reconnaissance"&gt;OSINT / Reconnaissance&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://commoncrawl.org/"&gt;Common Crawl&lt;/a&gt; - Open repository of web crawl data&lt;/li&gt;
&lt;li&gt;&lt;a href="https://cylect.io/project-anthony-ultimate-osint-tool"&gt;Cylect.io&lt;/a&gt; - Ultimate AI OSINT searching tool&lt;/li&gt;
&lt;li&gt;&lt;a href="https://darkwebdaily.live/"&gt;DarkwebDaily.Live&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.dehashed.com/"&gt;Dehashed&lt;/a&gt; - Data-mining and deep web asset search engine&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dorkking.blindf.com/"&gt;Dork King&lt;/a&gt; - Bug Bounty Dorks&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dorkgenius.com/"&gt;DorkGenius&lt;/a&gt; - Generate custom dorks for Google, Bing, DuckDuckGo, &amp;amp; more&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dorksearch.com/"&gt;DorkSearch.com&lt;/a&gt; - Faster Google Dorking&lt;/li&gt;
&lt;li&gt;&lt;a href="https://en.fofa.info/"&gt;FOFA&lt;/a&gt; - Search engine for global cyberspace mapping&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.googleguide.com/advanced_operators_reference"&gt;Google Advanced Search Operators&lt;/a&gt; - A resource for doing advanced Google searches&lt;/li&gt;
&lt;li&gt;&lt;a href="https://haveibeensquatted.com/"&gt;Have I Been Squatted?&lt;/a&gt; - Check if your domain has been squatted.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://hunter.how/"&gt;Hunter.how&lt;/a&gt; - Internet search engines for security researchers&lt;/li&gt;
&lt;li&gt;&lt;a href="https://intelx.io/"&gt;IntelligenceX&lt;/a&gt; - Search Tor, I2P, data leaks, domains, and emails&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.lopseg.com.br/osint"&gt;Lopseg&lt;/a&gt; - OSINT tools&lt;/li&gt;
&lt;li&gt;&lt;a href="https://metaosint.github.io/"&gt;MetaOSINT&lt;/a&gt; - Aggregation of “top” tools &amp;amp; resources intended to help jumpstart OSINT investigations&lt;/li&gt;
&lt;li&gt;&lt;a href="https://osintframework.com/"&gt;OSINT Framework&lt;/a&gt; - Helping people find free OSINT resources&lt;/li&gt;
&lt;li&gt;&lt;a href="https://osint.industries/"&gt;OSINT Industries&lt;/a&gt; - Gateway to email-based research&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.sec.gov/edgar.shtml"&gt;SEC eFilings (EDGAR)&lt;/a&gt; - Electronic Data Gathering, Analysis and Retrieval system&lt;/li&gt;
&lt;li&gt;&lt;a href="https://spyonweb.com/"&gt;SpyOnWeb&lt;/a&gt; - Find related websites&lt;/li&gt;
&lt;li&gt;&lt;a href="https://web.archive.org/"&gt;Wayback Machine&lt;/a&gt; - The archive for the Internet and a time machine for the web&lt;/li&gt;
&lt;li&gt;&lt;a href="https://well-known.dev/"&gt;Well-Known Resource Index&lt;/a&gt; - Search /.well-known/ resources served by sites across the web&lt;/li&gt;
&lt;li&gt;&lt;a href="https://cipher387.github.io/osintmap/"&gt;Worldwide OSINT tools map&lt;/a&gt; - Phonebooks, cadastral maps, vehicle numbers databases, business registries, passengers lists, court records and much more&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.zoomeye.org/"&gt;ZoomEye&lt;/a&gt; - Target information search&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="network-tools-ip-dns-whois"&gt;Network Tools (IP, DNS, WHOIS)&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.abuseipdb.com/"&gt;AbuseIPDB&lt;/a&gt; - Check IP address, domain name or subnet&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.arin.net/"&gt;American Registry for Internet Numbers (ARIN)&lt;/a&gt; - Administers IP addresses &amp;amp; ASNs&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.betterwhois.com/"&gt;Better Whois&lt;/a&gt; - The whois domain search that works with all registrars&lt;/li&gt;
&lt;li&gt;&lt;a href="http://whois.domaintools.com/"&gt;DomainTools&lt;/a&gt; - Whois lookup, domain availability and IP search tools&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.dnscheck.tools/"&gt;DNSCheck&lt;/a&gt; - DNS tool&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dnsdumpster.com/"&gt;DNSDumpster&lt;/a&gt; - DNS recon &amp;amp; research, find &amp;amp; lookup dns records&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dnsviz.net/"&gt;DNSViz&lt;/a&gt; - Tool for visualizing the status of a DNS zone&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.dnsqueries.com/en/"&gt;dnsqueries.com&lt;/a&gt; - Collection of online network tools&lt;/li&gt;
&lt;li&gt;&lt;a href="http://bgp.he.net/"&gt;Hurricane Electric BGP Toolkit&lt;/a&gt; - A variety of Internet services and network tools&lt;/li&gt;
&lt;li&gt;&lt;a href="https://inso.gmu.edu/"&gt;Internet Namespace Security Observatory&lt;/a&gt; - DNSSEC statistics and insights into the global adoption of secure internet namespaces&lt;/li&gt;
&lt;li&gt;&lt;a href="https://ipspy.net/"&gt;IPSpy.net&lt;/a&gt; - IP Lookup, WHOIS, DNS, Utilities&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.ipvoid.com/"&gt;IPVoid&lt;/a&gt; - Discover details about IP addresses&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.site24x7.com/tools/"&gt;ManageEngine Site24x7&lt;/a&gt; - Free Tools for Network, DevOps and Site Reliability Engineers (SRE)&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.netcraft.com/"&gt;Netcraft&lt;/a&gt; - Collection of internet security services&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.networksolutions.com/whois/index-res.jsp?bookmarked=27eef1785724b4361c829122ae0f.059"&gt;Network Solutions&lt;/a&gt; - Whois lookup for domain registration information&lt;/li&gt;
&lt;li&gt;&lt;a href="https://networkscan.monster/"&gt;NetworkScan&lt;/a&gt; - IP Lookups for Open Ports&lt;/li&gt;
&lt;li&gt;&lt;a href="http://network-tools.com/nslook/"&gt;NsLookup&lt;/a&gt; - Online tool for querying DNS servers&lt;/li&gt;
&lt;li&gt;&lt;a href="http://networking.ringofsaturn.com/Tools/whois.php"&gt;Online Whois Tool&lt;/a&gt; - WHOIS&lt;/li&gt;
&lt;li&gt;&lt;a href="https://radar.cloudflare.com/"&gt;Radar | Cloudflare&lt;/a&gt; - Search for locations, AS, reports, domains and IP info&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.ripe.net/"&gt;RIPE Network Coordination Centre&lt;/a&gt; - Organization that allocates and registers blocks of Internet number resources to ISPs and other organizations&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.subdomain.center/"&gt;Subdomain Center&lt;/a&gt; - Subdomain discovery&lt;/li&gt;
&lt;li&gt;&lt;a href="https://who.is/"&gt;who.is&lt;/a&gt; - Whois search, domain name, website and IP tools&lt;/li&gt;
&lt;li&gt;&lt;a href="https://zonediff.faal.dev/"&gt;ZoneDiff&lt;/a&gt; - Monitor new and expired domains with daily TXT dumps&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="breaches-incidents--leaks"&gt;Breaches, Incidents &amp;amp; Leaks&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://breach-hq.com/"&gt;Breach HQ&lt;/a&gt; - Open database of security incidents&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.csidb.net/"&gt;CSIDB&lt;/a&gt; - Cyber Security Incident Database&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.board-cybersecurity.com/incidents/tracker/"&gt;Cybersecurity Incident Tracker | Board Cybersecurity&lt;/a&gt; - Tracker for cybersecurity incidents reported in an entity’s 8-K&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.databreaches.net/"&gt;DataBreaches.net&lt;/a&gt; - Information on corporate security breaches&lt;/li&gt;
&lt;li&gt;&lt;a href="https://defillama.com/hacks"&gt;DefiLlama Hacks&lt;/a&gt; - Cryptocurrency hack tracker&lt;/li&gt;
&lt;li&gt;&lt;a href="https://escape.tech/resources/api-threat-landscape"&gt;escape.tech API Data breaches&lt;/a&gt; - Database for API data breaches&lt;/li&gt;
&lt;li&gt;&lt;a href="https://monitor.firefox.com/"&gt;Firefox Monitor&lt;/a&gt; - Find out if your personal information has been compromised&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.enforcementtracker.com/"&gt;GDPR Enforcement Tracker&lt;/a&gt; - Overview of fines and penalties which data protection authorities within the EU have imposed under the EU GDPR.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://leak-lookup.com/"&gt;Leak-Lookup&lt;/a&gt; - Data Breach Search Engine&lt;/li&gt;
&lt;li&gt;&lt;a href="https://leakpeek.com/"&gt;LeakPeek&lt;/a&gt; - Data breach search engine&lt;/li&gt;
&lt;li&gt;&lt;a href="https://northrecon.com/"&gt;Northrecon&lt;/a&gt; - Incident database&lt;/li&gt;
&lt;li&gt;&lt;a href="https://privacyrights.org/data-breaches"&gt;PrivacyRights.org Data Breaches&lt;/a&gt; - Info on publicly available reported breaches&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.breaches.cloud/"&gt;Public Cloud Security Breaches&lt;/a&gt; - Security incidents and breaches from customers in major cloud providers&lt;/li&gt;
&lt;li&gt;&lt;a href="https://ransomfeed.it/"&gt;Ransomfeed&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.ransomlook.io/"&gt;RansomLook&lt;/a&gt; - Tracking ransomware posts and activities&lt;/li&gt;
&lt;li&gt;&lt;a href="https://ransomware.live/"&gt;Ransomware.live&lt;/a&gt; - Ransomware leak monitoring tool and observatory&lt;/li&gt;
&lt;li&gt;&lt;a href="https://ransomwatch.telemetry.ltd/#/"&gt;Ransomwatch&lt;/a&gt; - Ransomware page crawler&lt;/li&gt;
&lt;li&gt;&lt;a href="https://ransomwhe.re/"&gt;Ransomwhere&lt;/a&gt; - Open, crowdsourced ransomware payment tracker&lt;/li&gt;
&lt;li&gt;&lt;a href="https://search.0t.rocks/"&gt;search.0t.rocks&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://snusbase.com/"&gt;SnusBase&lt;/a&gt; - Data breach search engine&lt;/li&gt;
&lt;li&gt;&lt;a href="https://whiteintel.io/"&gt;White Intel&lt;/a&gt; - Dark-Web Scan&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="finint-financial-intelligence"&gt;FININT (Financial Intelligence)&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.gsaelibrary.gsa.gov/ElibMain/home.do"&gt;GSA eLibrary&lt;/a&gt; - Source for the latest GSA contract award information&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="geoint-geographical-intelligence"&gt;GEOINT (Geographical Intelligence)&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://homemetry.com/"&gt;Homemetry&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.mooncalc.org/"&gt;MoonCalc&lt;/a&gt; - Calculate moon phase&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.peakfinder.com/"&gt;PeakFinder&lt;/a&gt; - Mountains/coordinates&lt;/li&gt;
&lt;li&gt;&lt;a href="https://poweroutage.us/"&gt;PowerOutage.us&lt;/a&gt; - Track, record and aggregate power outages in the US&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.suncalc.org/"&gt;SunCalc&lt;/a&gt; - Sun path computation, solar data &amp;amp; geo data&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="humint-human--corporate-intelligence"&gt;HUMINT (Human &amp;amp; Corporate Intelligence)&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.no-nonsense-intel.com/adverse-media-search-tool"&gt;No-Nonsense Intel&lt;/a&gt; - List of keywords which you can use to screen for adverse media, military links, political connections, sources of wealth, asset tracing etc&lt;/li&gt;
&lt;li&gt;&lt;a href="https://checkuser.org/"&gt;CheckUser&lt;/a&gt; - Check desired usernames across social network sites&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.corporationwiki.com/"&gt;CorporationWiki&lt;/a&gt; - Find and explore relationships between people and companies&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.crunchbase.com/#/home/index"&gt;Crunchbase&lt;/a&gt; - Discover innovative companies and the people behind them&lt;/li&gt;
&lt;li&gt;&lt;a href="https://findemail.io/"&gt;Find Email&lt;/a&gt; - Find email addresses from any company&lt;/li&gt;
&lt;li&gt;&lt;a href="https://infosniper.net/"&gt;Info Sniper&lt;/a&gt; - Search property owners, deeds &amp;amp; more&lt;/li&gt;
&lt;li&gt;&lt;a href="https://search.libraryofleaks.org/"&gt;Library of Leaks&lt;/a&gt; - Search documents, companies and people&lt;/li&gt;
&lt;li&gt;&lt;a href="https://littlesis.org/"&gt;LittleSis&lt;/a&gt; - Who-knows-who at the heights of business and government&lt;/li&gt;
&lt;li&gt;&lt;a href="https://minervaosint.com/"&gt;Minerva&lt;/a&gt; - Find TRACES of anyone’s email&lt;/li&gt;
&lt;li&gt;&lt;a href="https://seintpl.github.io/NAMINT/"&gt;NAMINT&lt;/a&gt; - Shows possible name and login search patterns&lt;/li&gt;
&lt;li&gt;&lt;a href="https://opencorporates.com/"&gt;OpenCorporates&lt;/a&gt; - Legal-entity database&lt;/li&gt;
&lt;li&gt;&lt;a href="https://thatsthem.com/"&gt;That’s Them&lt;/a&gt; - Find addresses, phones, emails and much more&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.truepeoplesearch.com/"&gt;TruePeopleSearch&lt;/a&gt; - People search service&lt;/li&gt;
&lt;li&gt;&lt;a href="https://whatsmyname.app/"&gt;WhatsMyName&lt;/a&gt; - Enumerate usernames across many websites&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.whitepages.com/"&gt;Whitepages&lt;/a&gt; - Find people, contact info &amp;amp; background checks&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="imint-imagerymaps-intelligence"&gt;IMINT (Imagery/Maps Intelligence)&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://exposing.ai/search/"&gt;Exposing.ai&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://insecam.org/"&gt;Insecam&lt;/a&gt; - Live cameras directory&lt;/li&gt;
&lt;li&gt;&lt;a href="https://ipinfo.io/tools/map"&gt;Map IPs&lt;/a&gt; - Paste up to 500,000 IPs below to see where they’re located on a map&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.comparitech.com/blog/information-security/global-ransomware-attacks/"&gt;Map of worldwide ransomware attacks&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://start.me/p/0PgzqO/photo-osint"&gt;Photo OSINT&lt;/a&gt; - A lot of OSINT tools&lt;/li&gt;
&lt;li&gt;&lt;a href="https://livingatlas.arcgis.com/wayback/"&gt;World Imagery Wayback&lt;/a&gt; - Digital archive, providing users with access to the different versions of &lt;a href="https://www.arcgis.com/home/item.html"&gt;World Imagery&lt;/a&gt; created over time&lt;/li&gt;
&lt;li&gt;&lt;a href="https://worldcam.eu/"&gt;WorldCam&lt;/a&gt; - Webcams from around the world&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="masint-measurement-and-signature-intelligence"&gt;MASINT (Measurement and Signature Intelligence)&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.wigle.net/"&gt;Wigle.net&lt;/a&gt; - Database of wireless networks&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="socmint-social-media-intelligence"&gt;SOCMINT (Social Media Intelligence)&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://discordservers.com/"&gt;Discord Servers&lt;/a&gt; - Discord server search&lt;/li&gt;
&lt;li&gt;&lt;a href="https://findadiscord.com/"&gt;Find a Discord&lt;/a&gt; - Discord server search&lt;/li&gt;
&lt;li&gt;&lt;a href="https://lyzem.com/"&gt;Lyzem&lt;/a&gt; - Telegram search engine&lt;/li&gt;
&lt;li&gt;&lt;a href="https://spy.pet/"&gt;Spy.pet&lt;/a&gt; - Explore Discord’s data&lt;/li&gt;
&lt;li&gt;&lt;a href="https://tgstat.ru/en"&gt;TGStat&lt;/a&gt; - Telegram search channel&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="email"&gt;Email&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://dmarcchecker.app/"&gt;DMARC Checker&lt;/a&gt; - Check DMARC, DKIM, and SPF Settings&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.email-format.com/"&gt;EmailFormat.com&lt;/a&gt; - Find the email address formats in use at thousands of companies&lt;/li&gt;
&lt;li&gt;&lt;a href="https://hunter.io/"&gt;Hunter&lt;/a&gt; - Search for professional email addresses&lt;/li&gt;
&lt;li&gt;&lt;a href="https://check.merox.io/"&gt;merox.io&lt;/a&gt; - DNS security and DMARC&lt;/li&gt;
&lt;li&gt;&lt;a href="http://mxtoolbox.com/"&gt;MX Lookup Tool&lt;/a&gt; - Check your DNS MX records online&lt;/li&gt;
&lt;li&gt;&lt;a href="https://mxtoolbox.com/"&gt;MX Toolbox&lt;/a&gt; - List MX records for a domain in priority order&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dmarcian.com/"&gt;DMARCIAN&lt;/a&gt; - Control Your domain, Secure your Email.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.mail-tester.com/"&gt;Mail Tester&lt;/a&gt; - Newsletters spam test&lt;/li&gt;
&lt;li&gt;&lt;a href="https://mecsa.jrc.ec.europa.eu/"&gt;MESCA&lt;/a&gt; - My Email Communications Security Assessment (MECSA)&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="code-search"&gt;Code Search&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://grep.app/"&gt;grep.app&lt;/a&gt; - Search across a half million git repos&lt;/li&gt;
&lt;li&gt;&lt;a href="https://publicwww.com/"&gt;PublicWWW&lt;/a&gt; - Find any alphanumeric snippet, signature or keyword in the web pages HTML, JS and CSS code&lt;/li&gt;
&lt;li&gt;&lt;a href="https://searchcode.com/"&gt;searchcode&lt;/a&gt; - Search 75 billion lines of code from 40 million projects&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;
&lt;h1 id="scanning--enumeration--attack-surface"&gt;Scanning / Enumeration / Attack Surface&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://awseye.com/"&gt;Awseye&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://badkeys.info/"&gt;badkeys.info&lt;/a&gt; - Checking cryptographic public keys for known vulnerabilities&lt;/li&gt;
&lt;li&gt;&lt;a href="https://browser.dog/"&gt;Browser History Analyzer&lt;/a&gt; - Processes your browser history&lt;/li&gt;
&lt;li&gt;&lt;a href="https://builtwith.com/"&gt;Built With&lt;/a&gt; - Find out what websites are built with&lt;/li&gt;
&lt;li&gt;&lt;a href="https://search.censys.io/"&gt;Censys Search&lt;/a&gt; - Search IP address, name, protocol or field&lt;/li&gt;
&lt;li&gt;&lt;a href="https://gpt.censys.io/"&gt;CensysGPT Beta&lt;/a&gt; - CensysGPT beta simplifies building queries and empowers users to conduct efficient and effective reconnaissance operations&lt;/li&gt;
&lt;li&gt;&lt;a href="https://certcentral.org/"&gt;Cert Central&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://app.w2s2.com/certdb"&gt;CertDB&lt;/a&gt; - A searcheable database of the internet’s SSL/TLS certificate names&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.criminalip.io/"&gt;CriminalIP&lt;/a&gt; - Search for information about assets connected to the public Internet&lt;/li&gt;
&lt;li&gt;&lt;a href="https://crt.sh/"&gt;crt.sh&lt;/a&gt; - Certificate search&lt;/li&gt;
&lt;li&gt;&lt;a href="https://crxcavator.io/"&gt;CRXcavator&lt;/a&gt; - Chrome extension scanning&lt;/li&gt;
&lt;li&gt;&lt;a href="https://fullhunt.io/"&gt;FullHunt&lt;/a&gt; - Attack Surface Enumerator&lt;/li&gt;
&lt;li&gt;&lt;a href="https://buckets.grayhatwarfare.com/"&gt;Grayhat Warfare&lt;/a&gt; - Public Bucket Finder&lt;/li&gt;
&lt;li&gt;&lt;a href="https://viz.greynoise.io/"&gt;GreyNoise&lt;/a&gt; - Internet-connected devices&lt;/li&gt;
&lt;li&gt;&lt;a href="https://developer.mozilla.org/en-US/observatory"&gt;HTTP Observatory&lt;/a&gt; - Analyzing compliance with best security practices&lt;/li&gt;
&lt;li&gt;&lt;a href="https://kamerka.io/"&gt;ꓘamerka&lt;/a&gt; and &lt;a href="https://lite.kamerka.io/"&gt;ꓘamerka lite&lt;/a&gt; - Public ICS identification&lt;/li&gt;
&lt;li&gt;&lt;a href="https://leakix.net/"&gt;LeakIX&lt;/a&gt; - Search publicly indexed information to find security misconfigurations&lt;/li&gt;
&lt;li&gt;&lt;a href="https://app.netlas.io/responses/"&gt;Netlas&lt;/a&gt; - Search and monitor internet connected assets.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.onyphe.io/"&gt;Onyphe&lt;/a&gt; - Cyber defense search engine&lt;/li&gt;
&lt;li&gt;&lt;a href="https://osint.sh/buckets/"&gt;OSINT.SH Public Buckets&lt;/a&gt; - Public Bucket Finder&lt;/li&gt;
&lt;li&gt;&lt;a href="https://purpleleaf.io/s3-scanner/"&gt;S3 Bucket Scanner | purpleleaf&lt;/a&gt; - Checks S3 bucket-level permissions that may allow data exposure&lt;/li&gt;
&lt;li&gt;&lt;a href="https://securityheaders.com/"&gt;Security Headers | Probely&lt;/a&gt; - Analyze HTTP headers&lt;/li&gt;
&lt;li&gt;&lt;a href="https://securitytrails.com/"&gt;SecurityTrails&lt;/a&gt; - Attack surface scanning&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.shodan.io/"&gt;Shodan&lt;/a&gt; - Search engine for internet-connected devices&lt;/li&gt;
&lt;li&gt;&lt;a href="https://internetdb.shodan.io/"&gt;Shodan | InternetDB&lt;/a&gt; - Fast way to see the open ports for an IP address&lt;/li&gt;
&lt;li&gt;&lt;a href="https://mr-koanti.github.io/shodan"&gt;Shodan-Dork&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.shouldiclick.org/"&gt;Should I click?&lt;/a&gt; - Tells you if it’s safe to click on a link&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.sslshopper.com/ssl-checker.html"&gt;SSL Checker&lt;/a&gt; - SSL certificate verification&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.ssllabs.com/ssltest/"&gt;SSL Server Test&lt;/a&gt; - Tool from Qualys to perform deep analysis of the configuration of an SSL web server&lt;/li&gt;
&lt;li&gt;&lt;a href="https://urlscan.io/"&gt;urlscan.io&lt;/a&gt; - Scan and analyze websites&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.wappalyzer.com/"&gt;Wappalyzer&lt;/a&gt; - Identify technologies on websites&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;
&lt;h1 id="offensive-security"&gt;Offensive Security&lt;/h1&gt;
&lt;h3 id="exploits"&gt;Exploits&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.bugbountyhunting.com/"&gt;Bug Bounty Hunting Search Engine&lt;/a&gt; - Search for writeups, payloads, bug bounty tips, and more…&lt;/li&gt;
&lt;li&gt;&lt;a href="https://bugbounty.zip/index.html"&gt;BugBounty.zip&lt;/a&gt; - Your all-in-one solution for domain operations&lt;/li&gt;
&lt;li&gt;&lt;a href="https://evasions.checkpoint.com/"&gt;CP-R Evasion Techniques&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://cvexploits.io/"&gt;CVExploits&lt;/a&gt; - Comprehensive database for CVE exploits&lt;/li&gt;
&lt;li&gt;&lt;a href="https://sygnialabs.github.io/DROPS/"&gt;DROPS&lt;/a&gt; - Dynamic CheatSheet/Command Generator&lt;/li&gt;
&lt;li&gt;&lt;a href="https://exploit-notes.hdks.org/"&gt;Exploit Notes&lt;/a&gt; - Hacking techniques and tools for penetration testings, bug bounty, CTFs&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.exploit-db.com/"&gt;ExploitDB&lt;/a&gt; - Huge repository of exploits from Offensive Security&lt;/li&gt;
&lt;li&gt;&lt;a href="https://files.ninja/"&gt;files.ninja&lt;/a&gt; - Upload any file and find similar files&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.exploit-db.com/google-hacking-database/"&gt;Google Hacking Database (GHDB)&lt;/a&gt; - A list of Google search queries used in the OSINT phase of penetration testing&lt;/li&gt;
&lt;li&gt;&lt;a href="https://gtfoargs.github.io/"&gt;GTFOArgs&lt;/a&gt; - Curated list of Unix binaries that can be manipulated for argument injection&lt;/li&gt;
&lt;li&gt;&lt;a href="https://gtfobins.github.io/"&gt;GTFOBins&lt;/a&gt; - Curated list of Unix binaries that can be used to bypass local security restrictions in misconfigured systems&lt;/li&gt;
&lt;li&gt;&lt;a href="https://hijacklibs.net/"&gt;Hijack Libs&lt;/a&gt; - Curated list of DLL Hijacking candidates&lt;/li&gt;
&lt;li&gt;&lt;a href="https://lolol.farm/"&gt;Living Off the Living Off the Land&lt;/a&gt; - A great collection of resources to thrive off the land&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boostsecurityio.github.io/lotp/"&gt;Living Off the Pipeline&lt;/a&gt; - CI/CD lolbin&lt;/li&gt;
&lt;li&gt;&lt;a href="https://lots-project.com/"&gt;Living Off Trusted Sites (LOTS) Project&lt;/a&gt; - Repository of popular, legitimate domains that can be used to conduct phishing, C2, exfiltration &amp;amp; tool downloading while evading detection&lt;/li&gt;
&lt;li&gt;&lt;a href="https://lofl-project.github.io/"&gt;LOFLCAB&lt;/a&gt; - Living off the Foreign Land Cmdlets and Binaries&lt;/li&gt;
&lt;li&gt;&lt;a href="https://br0k3nlab.com/LoFP/"&gt;LoFP&lt;/a&gt; - Living off the False Positive&lt;/li&gt;
&lt;li&gt;&lt;a href="https://lolbas-project.github.io/"&gt;LOLBAS&lt;/a&gt; - Curated list of Windows binaries that can be used to bypass local security restrictions in misconfigured systems&lt;/li&gt;
&lt;li&gt;&lt;a href="https://lolc2.github.io/"&gt;LOLC2&lt;/a&gt; - Collection of C2 frameworks that leverage legitimate services to evade detection&lt;/li&gt;
&lt;li&gt;&lt;a href="https://lolesxi-project.github.io/LOLESXi/#"&gt;LOLESXi&lt;/a&gt; - Living Off The Land ESXi&lt;/li&gt;
&lt;li&gt;&lt;a href="https://lolol.farm/"&gt;LOLOL&lt;/a&gt; - A great collection of resources to thrive off the land&lt;/li&gt;
&lt;li&gt;&lt;a href="https://lolrmm.io/"&gt;LOLRMM&lt;/a&gt; - Remote Monitoring and Management (RMM) tools that could potentially be abused by threat actors&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.loobins.io/"&gt;LOOBins&lt;/a&gt; &lt;a href="https://github.com/infosecB/LOOBins"&gt;&lt;/a&gt; - Living Off the Orchard: macOS Binaries (LOOBins) is designed to provide detailed information on various built-in macOS binaries and how they can be used by threat actors for malicious purposes&lt;/li&gt;
&lt;li&gt;&lt;a href="https://lottunnels.github.io/"&gt;LOTTunnels&lt;/a&gt; - Living Off The Tunnels&lt;/li&gt;
&lt;li&gt;&lt;a href="https://patch-tuesday.m417z.com/"&gt;Microsoft Patch Tuesday Countdown&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://offsec.tools/"&gt;offsec.tools&lt;/a&gt; - A vast collection of security tools&lt;/li&gt;
&lt;li&gt;&lt;a href="https://exploits.shodan.io/welcome"&gt;Shodan Exploits&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://sploitus.com/"&gt;SPLOITUS&lt;/a&gt; - Exploit search database&lt;/li&gt;
&lt;li&gt;&lt;a href="https://vulncheck.com/xdb"&gt;VulnCheck XDB&lt;/a&gt; - An index of exploit proof of concept code in git repositories&lt;/li&gt;
&lt;li&gt;&lt;a href="http://xssed.com/"&gt;XSSed&lt;/a&gt; - Information on and an archive of Cross-Site-Scripting (XSS) attacks&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="red-team"&gt;Red Team&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://argfuscator.net/"&gt;ArgFuscator&lt;/a&gt; - Generates obfuscated command lines for common system tools&lt;/li&gt;
&lt;li&gt;&lt;a href="https://arttoolkit.github.io/"&gt;ARTToolkit&lt;/a&gt; - Interactive cheat sheet, containing a useful list of offensive security tools and their respective commands/payloads, to be used in red teaming exercises&lt;/li&gt;
&lt;li&gt;&lt;a href="https://atomicredteam.io/atomics/"&gt;Atomic Red Team&lt;/a&gt; - A library of simple, focused tests mapped to the MITRE ATT&amp;amp;CK matrix&lt;/li&gt;
&lt;li&gt;&lt;a href="https://howto.thec2matrix.com/"&gt;C2 Matrix&lt;/a&gt; - Select the best C2 framework for your needs based on your adversary emulation plan and the target environment&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.expireddomains.net/deleted-domains/"&gt;ExpiredDomains.net&lt;/a&gt; - Expired domain name search engine&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.loldrivers.io/"&gt;Living Off The Land Drivers&lt;/a&gt; - Curated list of Windows drivers used by adversaries to bypass security controls and carry out attacks&lt;/li&gt;
&lt;li&gt;&lt;a href="https://unprotect.it/"&gt;Unprotect Project&lt;/a&gt; - Search Evasion Techniques&lt;/li&gt;
&lt;li&gt;&lt;a href="https://wadcoms.github.io/"&gt;WADComs&lt;/a&gt; - Curated list of offensive security tools and their respective commands, to be used against Windows/AD environments&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="web-security"&gt;Web Security&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://benjaminaster.com/invisible-javascript/"&gt;Invisible JavaScript&lt;/a&gt; - Execute invisible JavaScript by abusing Hangul filler characters&lt;/li&gt;
&lt;li&gt;&lt;a href="https://aem1k.com/invisible/encoder/"&gt;INVISIBLE.js&lt;/a&gt; - A super compact (116-byte) bootstrap that hides JavaScript using a Proxy trap to run code&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;
&lt;h1 id="security-advisories"&gt;Security Advisories&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.cisa.gov/uscert/ncas/alerts"&gt;CISA Alerts&lt;/a&gt; - Providing information on current security issues, vulnerabilities and exploits&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.icsadvisoryproject.com/"&gt;ICS Advisory Project&lt;/a&gt; - DHS CISA ICS Advisories data visualized as a Dashboard and in Comma Separated Value (CSV) format to support vulnerability analysis for the OT/ICS community&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id="attack-libraries"&gt;Attack Libraries&lt;/h1&gt;
&lt;p&gt;A more comprehensive list of Attack Libraries can be found &lt;a href="https://shellsharks.com/threat-modeling#attack-libraries"&gt;here&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>Google Cybersecurity Professional Certificate</title><link>https://maymeow.blog/posts/google-cybersecurity-professional-certificate/</link><pubDate>Mon, 09 Sep 2024 09:40:20 +0200</pubDate><guid>https://maymeow.blog/posts/google-cybersecurity-professional-certificate/</guid><description>&lt;h2 id="my-consolidated-notes"&gt;My consolidated notes:&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://%F0%9F%94%97.maymeow.lol/cs-notes"&gt;🔗.maymeow.lol/cs-notes&lt;/a&gt; (notion)&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="prefessor-messers-channel"&gt;Prefessor Messer&amp;rsquo;s channel&lt;/h2&gt;
&lt;p&gt;Also check this youtube channel - it contains many good information related to cybersecurity and not only for this course:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/c/professormesser"&gt;https://www.youtube.com/c/professormesser&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="other-tips"&gt;Other Tips&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Don&amp;rsquo;t stay only with information from the course on coursera - &lt;strong&gt;do your own reasearch&lt;/strong&gt;, read books or find informations on the internet, for example on the education sites or quality Youtube channels.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Practice&lt;/strong&gt; - just watching and listening is no enough to remember things&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Take notes&lt;/strong&gt; - it helps you remember more&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Try to understand concepts&lt;/strong&gt; - It is not enough to learn something like a poem. When a situation arises where you have to use your knowledge, it will not be enough.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Cybersecurity is huge and no one becomes an expert overnight.&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>Copying Large Files Over Ssh</title><link>https://maymeow.blog/posts/copying-large-files-over-ssh/</link><pubDate>Sun, 08 Sep 2024 16:02:22 +0200</pubDate><guid>https://maymeow.blog/posts/copying-large-files-over-ssh/</guid><description>&lt;p&gt;If you tried to copy files via SSH you know that you can use &lt;code&gt;scp&lt;/code&gt; to do this. For example:&lt;/p&gt;
&lt;h2 id="scp"&gt;SCP&lt;/h2&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;1&lt;/span&gt;&lt;span class="cl"&gt;scp you@1.2.3.4:/path/to/file.rar ./
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;2&lt;/span&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;3&lt;/span&gt;&lt;span class="cl"&gt;&lt;span class="c1"&gt;# or to download folder&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;4&lt;/span&gt;&lt;span class="cl"&gt;scp you@1.2.3.4:/path/to/folder ./
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Most of the time, this solution works, but if you have an unstable connection, you have to start downloading files all over again. Even worse, if the file is large, it will take a long time to download.&lt;/p&gt;</description></item><item><title>66cac63541f55</title><link>https://maymeow.blog/statuslog/66cac63541f55/</link><pubDate>Sun, 25 Aug 2024 05:50:45 +0000</pubDate><guid>https://maymeow.blog/statuslog/66cac63541f55/</guid><description>&lt;p&gt;With iOS 18 beta even my handwriting on iPad looks nice 👍&lt;/p&gt;</description></item><item><title>66b691e311063</title><link>https://maymeow.blog/statuslog/66b691e311063/</link><pubDate>Fri, 09 Aug 2024 22:02:11 +0000</pubDate><guid>https://maymeow.blog/statuslog/66b691e311063/</guid><description>&lt;p&gt;&lt;a href="https://open.spotify.com/intl-ja/track/14WYmNQWvR2TTWoRp8t9Ml?si=1d8723c7779b4faa"&gt;https://open.spotify.com/intl-ja/track/14WYmNQWvR2TTWoRp8t9Ml?si=1d8723c7779b4faa&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Cybersecurity Is Not Full</title><link>https://maymeow.blog/posts/cybersecurity-is-not-full/</link><pubDate>Wed, 07 Aug 2024 11:20:02 +0200</pubDate><guid>https://maymeow.blog/posts/cybersecurity-is-not-full/</guid><description>&lt;p&gt;I just read one blog post where the author talking about that the field in cybersecurity (cs)is full. I don’t think so! Go ahead and make own your point. &lt;a href="https://cyberisfull.com/category/cybersecurity.html"&gt;https://cyberisfull.com/category/cybersecurity.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;At first, I agree there are many companies who tells you don’t need prior education to become a cs specialists. And they doing it because it something that can sell to you, and now it is lucrative. Yes become hacker (as you see in movies) is … “sexy” (?) job.&lt;/p&gt;</description></item><item><title>66a6598506136</title><link>https://maymeow.blog/statuslog/66a6598506136/</link><pubDate>Sun, 28 Jul 2024 14:45:25 +0000</pubDate><guid>https://maymeow.blog/statuslog/66a6598506136/</guid><description>&lt;p&gt;Currently scrobble 1️⃣3️⃣0️⃣0️⃣0️⃣ on my Last.fm profile with song &lt;a href="https://open.spotify.com/track/1NMYbsFZyxwHRNaLGzFGWh?si=deyupbmXS36FinFtk4ufFA"&gt;https://open.spotify.com/track/1NMYbsFZyxwHRNaLGzFGWh?si=deyupbmXS36FinFtk4ufFA&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Cybersecurity Resources</title><link>https://maymeow.blog/posts/cybersecurity-resources/</link><pubDate>Fri, 19 Jul 2024 12:43:17 +0200</pubDate><guid>https://maymeow.blog/posts/cybersecurity-resources/</guid><description>&lt;p&gt;You will find here:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Assignments&lt;/li&gt;
&lt;li&gt;Short answers&lt;/li&gt;
&lt;li&gt;Lecture notes (a few as I write my notes by hand using pen and paper or my iPad)&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id="where-to-start"&gt;Where to start?&lt;/h1&gt;
&lt;h2 id="courses"&gt;Courses&lt;/h2&gt;
&lt;p&gt;You can take this courses from coursera in order as follows:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Google IT Support Professional Certificate - &lt;a href="https://www.coursera.org/professional-certificates/google-it-support"&gt;https://www.coursera.org/professional-certificates/google-it-support&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Google Cybersecurity Professional Certificate - &lt;a href="https://www.coursera.org/professional-certificates/google-cybersecurity"&gt;https://www.coursera.org/professional-certificates/google-cybersecurity&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id="professional-certifications"&gt;Professional certifications&lt;/h2&gt;
&lt;p&gt;courses above (especially 2nd one) is preparation for Security+ certificate.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;CompTIA A+ certificate&lt;/li&gt;
&lt;li&gt;CompTIA Network+ certificate&lt;/li&gt;
&lt;li&gt;CompTIA Security+ certificate&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="books"&gt;Books&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.amazon.com/dp/B0CGTHPPXV?ref=yb_qv_ov_kndl_dp_rw"&gt;https://www.amazon.com/dp/B0CGTHPPXV?ref=yb_qv_ov_kndl_dp_rw&lt;/a&gt; - CompTIA Security+ Get Certified Get Ahead: SY0-701 Study Guide&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="chat--study-groups"&gt;Chat &amp;amp; study groups&lt;/h2&gt;
&lt;p&gt;Contains many materials that are related to cybersecurity. Hey have also dedicated section fo WGU students.&lt;/p&gt;</description></item><item><title>66266115ebf91</title><link>https://maymeow.blog/statuslog/66266115ebf91/</link><pubDate>Mon, 22 Apr 2024 13:07:33 +0000</pubDate><guid>https://maymeow.blog/statuslog/66266115ebf91/</guid><description>&lt;p&gt;Playing with scribbles, One thing that I notice (or did not find until now) is missing Markdown support (⁉️)&lt;/p&gt;</description></item><item><title>66250bd00ea9b</title><link>https://maymeow.blog/statuslog/66250bd00ea9b/</link><pubDate>Sun, 21 Apr 2024 12:51:28 +0000</pubDate><guid>https://maymeow.blog/statuslog/66250bd00ea9b/</guid><description>&lt;p&gt;A bit windy outside…&lt;/p&gt;</description></item><item><title>662412af7edbf</title><link>https://maymeow.blog/statuslog/662412af7edbf/</link><pubDate>Sat, 20 Apr 2024 19:08:31 +0000</pubDate><guid>https://maymeow.blog/statuslog/662412af7edbf/</guid><description>&lt;p&gt;10k steps today. (Based on my work this is 2 times more than my usual)&lt;/p&gt;</description></item><item><title>661d6635f2fe3</title><link>https://maymeow.blog/statuslog/661d6635f2fe3/</link><pubDate>Mon, 15 Apr 2024 17:39:01 +0000</pubDate><guid>https://maymeow.blog/statuslog/661d6635f2fe3/</guid><description>&lt;p&gt;My vertigo is back… I hate this…&lt;/p&gt;</description></item><item><title>661bf7fe055eb</title><link>https://maymeow.blog/statuslog/661bf7fe055eb/</link><pubDate>Sun, 14 Apr 2024 15:36:30 +0000</pubDate><guid>https://maymeow.blog/statuslog/661bf7fe055eb/</guid><description>&lt;p&gt;What would you do if your name is pretty unique and googling it let strangers find very close to your exact location or school where you studying or where you working?&lt;/p&gt;</description></item><item><title>661934cf63104</title><link>https://maymeow.blog/statuslog/661934cf63104/</link><pubDate>Fri, 12 Apr 2024 13:19:11 +0000</pubDate><guid>https://maymeow.blog/statuslog/661934cf63104/</guid><description>&lt;p&gt;Looking for blogging platform (preferably with mobile app and markdown) or I’ll go back to static site…&lt;/p&gt;</description></item><item><title>65f6de855a3aa</title><link>https://maymeow.blog/statuslog/65f6de855a3aa/</link><pubDate>Sun, 17 Mar 2024 12:13:57 +0000</pubDate><guid>https://maymeow.blog/statuslog/65f6de855a3aa/</guid><description>&lt;p&gt;Overall I like silicone cases for my phone better because of colors and softness. But they not gong well with business suit, so I decided to buy leather case in black color. I hope it won’t be too slippery in hand…&lt;/p&gt;</description></item><item><title>65ef8f1e5240f</title><link>https://maymeow.blog/statuslog/65ef8f1e5240f/</link><pubDate>Mon, 11 Mar 2024 23:09:18 +0000</pubDate><guid>https://maymeow.blog/statuslog/65ef8f1e5240f/</guid><description>&lt;p&gt;Apple Podcasts caption is awesome 👏&lt;/p&gt;</description></item><item><title>/defaults</title><link>https://maymeow.blog/defaults/</link><pubDate>Sun, 10 Mar 2024 10:43:41 +0100</pubDate><guid>https://maymeow.blog/defaults/</guid><description>&lt;h1 id="defaults"&gt;Defaults&lt;/h1&gt;
&lt;p&gt;My &lt;code&gt;defaults&lt;/code&gt; list ispired by &lt;a href="https://defaults.rknight.me/"&gt;https://defaults.rknight.me/&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;🟧 Also Samsung Alternatives when they are.&lt;br&gt;
⬇️ Downgraded to cheaper subscriptions&lt;/p&gt;
&lt;h2 id="daily-use"&gt;Daily use&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;📨 &lt;strong&gt;Mail Client:&lt;/strong&gt; Mail.app (iOS, Mac) 🟧, Thinderbird&lt;/li&gt;
&lt;li&gt;📮 &lt;strong&gt;Mail Server:&lt;/strong&gt; Proton&lt;/li&gt;
&lt;li&gt;📝 &lt;strong&gt;Notes:&lt;/strong&gt; Notes.app 🟧, Obsidian&lt;/li&gt;
&lt;li&gt;✅ &lt;strong&gt;To-Do:&lt;/strong&gt; Reminders.app 🟧, Obsidian&lt;/li&gt;
&lt;li&gt;📷 &lt;strong&gt;iPhone Photo Shooting:&lt;/strong&gt; Camera.app, Leica LUX&lt;/li&gt;
&lt;li&gt;🟦 &lt;strong&gt;Photo Management &amp;amp; Editing:&lt;/strong&gt; Photos.app 🟧 &amp;amp; kDrive&lt;/li&gt;
&lt;li&gt;📆 &lt;strong&gt;Calendar:&lt;/strong&gt; Calendar.app 🟧&lt;/li&gt;
&lt;li&gt;📁 &lt;strong&gt;Cloud File Storage:&lt;/strong&gt; iCloud ⬇️, OneDrive, kDrive, Google Drive ⬇️&lt;/li&gt;
&lt;li&gt;📖 &lt;strong&gt;RSS:&lt;/strong&gt; Capy reader (backend miniflux)&lt;/li&gt;
&lt;li&gt;🙍🏻‍♂️ &lt;strong&gt;Contacts:&lt;/strong&gt; Contacts.app 🟧&lt;/li&gt;
&lt;li&gt;🌐 &lt;strong&gt;Browser:&lt;/strong&gt; Chrome &amp;amp; Brave (Home), Safari (iOS, Mac), Samsung Internet, Edge&lt;/li&gt;
&lt;li&gt;💬 &lt;strong&gt;Chat:&lt;/strong&gt; Whatsapp, Signal, Viber, kChat (notifications), (Facebook) Messenger&lt;/li&gt;
&lt;li&gt;🔖 &lt;strong&gt;Bookmarks:&lt;/strong&gt; Browser, Linkding, Tasks app (sometimes)&lt;/li&gt;
&lt;li&gt;📑 &lt;strong&gt;Read It Later:&lt;/strong&gt; Reminders.app 🟧&lt;/li&gt;
&lt;li&gt;📰 &lt;strong&gt;News:&lt;/strong&gt; RSS, Mastodon, Browsing&lt;/li&gt;
&lt;li&gt;🎵 &lt;strong&gt;Music:&lt;/strong&gt; Spotify&lt;/li&gt;
&lt;li&gt;🎤 &lt;strong&gt;Podcasts:&lt;/strong&gt; Spotify, Antenna Pod&lt;/li&gt;
&lt;li&gt;🔐 &lt;strong&gt;Password Management:&lt;/strong&gt; 1Password, Passwords.app&lt;/li&gt;
&lt;li&gt;📚 &lt;strong&gt;Reading:&lt;/strong&gt; Books.app&lt;/li&gt;
&lt;li&gt;🎧 &lt;strong&gt;Audiobooks:&lt;/strong&gt; Smart Audiobook player, Books.app (Apple)&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="other"&gt;Other&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;📜 &lt;strong&gt;Word Processing:&lt;/strong&gt; Word&lt;/li&gt;
&lt;li&gt;📈 &lt;strong&gt;Spreadsheets:&lt;/strong&gt; Excel&lt;/li&gt;
&lt;li&gt;💰 &lt;strong&gt;Budgeting and Personal Finance:&lt;/strong&gt; Excel&lt;/li&gt;
&lt;li&gt;🛒 &lt;strong&gt;Shopping Lists:&lt;/strong&gt; Google Keep&lt;/li&gt;
&lt;li&gt;🛡️ &lt;strong&gt;MFA:&lt;/strong&gt; 1Password, 2FAS, Yubico authenticator&lt;/li&gt;
&lt;li&gt;📝 &lt;strong&gt;Journaling:&lt;/strong&gt; Journal.app, Obsidian&lt;/li&gt;
&lt;li&gt;🔑 &lt;strong&gt;VPN:&lt;/strong&gt; Tailscale, Netbird, Proton&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="coding"&gt;Coding&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;🤖 &lt;strong&gt;Code editing:&lt;/strong&gt; VS Code, Euria, ChatGPT, Gemini, Claude&lt;/li&gt;
&lt;li&gt;👨‍💻 &lt;strong&gt;Git:&lt;/strong&gt; Github, Forgejo (selfhosted), Codeberg&lt;/li&gt;
&lt;li&gt;👨‍💻 &lt;strong&gt;Shell:&lt;/strong&gt; Zsh, Powershell&lt;/li&gt;
&lt;li&gt;🎨 &lt;strong&gt;Color palete:&lt;/strong&gt; Catpuccin&lt;/li&gt;
&lt;li&gt;🧁 &lt;strong&gt;Framework:&lt;/strong&gt; CakePHP&lt;/li&gt;
&lt;li&gt;🌈 &lt;strong&gt;Styles:&lt;/strong&gt; Custom, Bootstrap&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Also on &lt;a href="https://github.com/MayMeow/MayMeow/blob/main/_pages/defaults.md"&gt;Github&lt;/a&gt;&lt;/p&gt;</description></item><item><title>65dc9b17355e6</title><link>https://maymeow.blog/statuslog/65dc9b17355e6/</link><pubDate>Mon, 26 Feb 2024 14:07:19 +0000</pubDate><guid>https://maymeow.blog/statuslog/65dc9b17355e6/</guid><description>&lt;p&gt;Considering to moving my blog from static generated one to the something “more dynamic” with mobile app support and import/export original markdown files to my Git repository…&lt;/p&gt;</description></item><item><title>65c75513a1f2e</title><link>https://maymeow.blog/statuslog/65c75513a1f2e/</link><pubDate>Sat, 10 Feb 2024 10:50:59 +0000</pubDate><guid>https://maymeow.blog/statuslog/65c75513a1f2e/</guid><description>&lt;p&gt;Happy Lunar New Year to all who celebrate!&lt;/p&gt;</description></item><item><title>65c12c58e9d2b</title><link>https://maymeow.blog/statuslog/65c12c58e9d2b/</link><pubDate>Mon, 05 Feb 2024 18:43:36 +0000</pubDate><guid>https://maymeow.blog/statuslog/65c12c58e9d2b/</guid><description>&lt;p&gt;Trying to replace screen protector on my phone and misaligned it again&lt;/p&gt;</description></item><item><title>65afcdb95ef21</title><link>https://maymeow.blog/statuslog/65afcdb95ef21/</link><pubDate>Tue, 23 Jan 2024 14:31:21 +0000</pubDate><guid>https://maymeow.blog/statuslog/65afcdb95ef21/</guid><description>&lt;p&gt;I’d like to try new Microsoft copilot for 365 as they removed user count limit, but you have t pay it upfront.&lt;/p&gt;</description></item><item><title>65ad81cc4e2fb</title><link>https://maymeow.blog/statuslog/65ad81cc4e2fb/</link><pubDate>Sun, 21 Jan 2024 20:42:52 +0000</pubDate><guid>https://maymeow.blog/statuslog/65ad81cc4e2fb/</guid><description>&lt;p&gt;Sending this mmessage from microsoft powerapps&lt;/p&gt;</description></item><item><title>65ad8005185f7</title><link>https://maymeow.blog/statuslog/65ad8005185f7/</link><pubDate>Sun, 21 Jan 2024 20:35:17 +0000</pubDate><guid>https://maymeow.blog/statuslog/65ad8005185f7/</guid><description>&lt;p&gt;Test&lt;/p&gt;</description></item><item><title>🔐 Using Environment Variables a Little More Securely</title><link>https://maymeow.blog/posts/using-environment-variables-a-little-more-securely/</link><pubDate>Tue, 16 Jan 2024 22:00:52 +0100</pubDate><guid>https://maymeow.blog/posts/using-environment-variables-a-little-more-securely/</guid><description>&lt;p&gt;Storing credentials in text files is not such a smart idea. A few days ago I found a post somewhere on reddit where people were discussing a more secure way to use environmental variables for restic. (By default they are stored as plain text).&lt;/p&gt;
&lt;p&gt;When I tried to look for a solution for this, I found another post where people talked that you can customise restic code and build it yourself. But who wants to do that?&lt;/p&gt;</description></item><item><title>65a410d67683f</title><link>https://maymeow.blog/statuslog/65a410d67683f/</link><pubDate>Sun, 14 Jan 2024 16:50:30 +0000</pubDate><guid>https://maymeow.blog/statuslog/65a410d67683f/</guid><description>&lt;p&gt;I finished the last boss of the first level in 20 minutes till dawn and unlocked the watering gun&amp;hellip;&lt;/p&gt;</description></item><item><title>65a01fe0370ef</title><link>https://maymeow.blog/statuslog/65a01fe0370ef/</link><pubDate>Thu, 11 Jan 2024 17:05:36 +0000</pubDate><guid>https://maymeow.blog/statuslog/65a01fe0370ef/</guid><description>&lt;p&gt;I didn&amp;rsquo;t think I would be so entertained by the 20 minutes till dawn&lt;/p&gt;</description></item><item><title>6595c2bba71e5</title><link>https://maymeow.blog/statuslog/6595c2bba71e5/</link><pubDate>Wed, 03 Jan 2024 20:25:31 +0000</pubDate><guid>https://maymeow.blog/statuslog/6595c2bba71e5/</guid><description>&lt;p&gt;I’m still struggling with the design of my projects page…&lt;/p&gt;</description></item><item><title>6591f79239dce</title><link>https://maymeow.blog/statuslog/6591f79239dce/</link><pubDate>Sun, 31 Dec 2023 23:21:54 +0000</pubDate><guid>https://maymeow.blog/statuslog/6591f79239dce/</guid><description>&lt;p&gt;Happy new year!&lt;/p&gt;</description></item><item><title>65897207c34dc</title><link>https://maymeow.blog/statuslog/65897207c34dc/</link><pubDate>Mon, 25 Dec 2023 12:13:59 +0000</pubDate><guid>https://maymeow.blog/statuslog/65897207c34dc/</guid><description>&lt;p&gt;Lunch &amp;hellip;&lt;/p&gt;</description></item><item><title>65889ae7b60de</title><link>https://maymeow.blog/statuslog/65889ae7b60de/</link><pubDate>Sun, 24 Dec 2023 20:56:07 +0000</pubDate><guid>https://maymeow.blog/statuslog/65889ae7b60de/</guid><description>&lt;p&gt;Moving with blog to Laravel forge to automate updates from status log and more…&lt;/p&gt;</description></item><item><title>6587cf8cb68a4</title><link>https://maymeow.blog/statuslog/6587cf8cb68a4/</link><pubDate>Sun, 24 Dec 2023 06:28:28 +0000</pubDate><guid>https://maymeow.blog/statuslog/6587cf8cb68a4/</guid><description>&lt;p&gt;To all of you who are celebrating, a very Merry Christmas to you and your whole family.&lt;/p&gt;</description></item><item><title>6585a428839f4</title><link>https://maymeow.blog/statuslog/6585a428839f4/</link><pubDate>Fri, 22 Dec 2023 14:58:48 +0000</pubDate><guid>https://maymeow.blog/statuslog/6585a428839f4/</guid><description>&lt;p&gt;I didn’t think I’d have such a problem creating an RSS feed in CakePHP&lt;/p&gt;</description></item><item><title>65859021aeeec</title><link>https://maymeow.blog/statuslog/65859021aeeec/</link><pubDate>Fri, 22 Dec 2023 13:33:21 +0000</pubDate><guid>https://maymeow.blog/statuslog/65859021aeeec/</guid><description>&lt;p&gt;hmm…&lt;/p&gt;</description></item><item><title>6582002ed8587</title><link>https://maymeow.blog/statuslog/6582002ed8587/</link><pubDate>Tue, 19 Dec 2023 20:42:22 +0000</pubDate><guid>https://maymeow.blog/statuslog/6582002ed8587/</guid><description>&lt;p&gt;Sometimes I wonder why I’m glued to my phone when I have bigger screens around me. Maybe it’s the convenience, or maybe it’s the addiction.&lt;/p&gt;</description></item><item><title>6581cf0954bef</title><link>https://maymeow.blog/statuslog/6581cf0954bef/</link><pubDate>Tue, 19 Dec 2023 17:12:41 +0000</pubDate><guid>https://maymeow.blog/statuslog/6581cf0954bef/</guid><description>&lt;p&gt;This one looks interesting &lt;a href="https://frankenphp.dev/"&gt;https://frankenphp.dev/&lt;/a&gt; I haven&amp;rsquo;t had time to check it out, but I&amp;rsquo;ll definitely do so when I get home.&lt;/p&gt;</description></item><item><title>🎄 Creating My Own Blogging Platform</title><link>https://maymeow.blog/posts/creating-my-own-blogging-platform/</link><pubDate>Sun, 17 Dec 2023 22:21:54 +0100</pubDate><guid>https://maymeow.blog/posts/creating-my-own-blogging-platform/</guid><description>&lt;p&gt;For a while now I have been thinking about a blogging system for myself that I would be happy with. I tried Ghost and Wordpress (including multisite) and some others but something was still missing.&lt;/p&gt;
&lt;p&gt;Ghost is made with Javascript (which is not my friend) and is difficult for me to add functionality to.&lt;/p&gt;
&lt;p&gt;Wordpress - why does a theme need so many plugins? Do you guys who use a theme you bought from one of the shops know what those plugins do? Or when they were updated? I really don&amp;rsquo;t like it when my theme prevents me from updating the site. And what more I&amp;rsquo;m not fan of those word-like editors for web. They are called WYSIWYG or whatever.&lt;/p&gt;</description></item><item><title>657f3271ec574</title><link>https://maymeow.blog/statuslog/657f3271ec574/</link><pubDate>Sun, 17 Dec 2023 17:40:01 +0000</pubDate><guid>https://maymeow.blog/statuslog/657f3271ec574/</guid><description>&lt;p&gt;It looks like the postgres doesn&amp;rsquo;t like when I store serialised object in database&amp;hellip;&lt;/p&gt;</description></item><item><title>657b48c9793c1</title><link>https://maymeow.blog/statuslog/657b48c9793c1/</link><pubDate>Thu, 14 Dec 2023 18:26:17 +0000</pubDate><guid>https://maymeow.blog/statuslog/657b48c9793c1/</guid><description>&lt;p&gt;Tea time&lt;/p&gt;</description></item><item><title>657b3322862b5</title><link>https://maymeow.blog/statuslog/657b3322862b5/</link><pubDate>Thu, 14 Dec 2023 16:53:54 +0000</pubDate><guid>https://maymeow.blog/statuslog/657b3322862b5/</guid><description>&lt;p&gt;So… now I have threads too&lt;/p&gt;</description></item><item><title>6576d0944c6e0</title><link>https://maymeow.blog/statuslog/6576d0944c6e0/</link><pubDate>Mon, 11 Dec 2023 09:04:20 +0000</pubDate><guid>https://maymeow.blog/statuslog/6576d0944c6e0/</guid><description>&lt;p&gt;got myself a Greak game&lt;/p&gt;</description></item><item><title>6576bd1169758</title><link>https://maymeow.blog/statuslog/6576bd1169758/</link><pubDate>Mon, 11 Dec 2023 07:41:05 +0000</pubDate><guid>https://maymeow.blog/statuslog/6576bd1169758/</guid><description>&lt;p&gt;Yesterday Kev mentioned that the Miniflux could be used with Reeder, so I decided to give it a try. I still had my Miniflux configuration for Docker Composer.&lt;/p&gt;</description></item><item><title>🎄 Advent of Code Day 10</title><link>https://maymeow.blog/programming/advent-of-code-day-10/</link><pubDate>Sun, 10 Dec 2023 17:24:43 +0100</pubDate><guid>https://maymeow.blog/programming/advent-of-code-day-10/</guid><description>&lt;p&gt;Today you are looking at a strange metal country with lots of pipes. How did I get there? Oh, with the glider - I had to read it again while writing this post. After quickly sketching the positions of all the pipes, you get this&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-text" data-lang="text"&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;1&lt;/span&gt;&lt;span class="cl"&gt;..F7.
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;2&lt;/span&gt;&lt;span class="cl"&gt;.FJ|.
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;3&lt;/span&gt;&lt;span class="cl"&gt;SJ.L7
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;4&lt;/span&gt;&lt;span class="cl"&gt;|F--J
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;5&lt;/span&gt;&lt;span class="cl"&gt;LJ...
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;And also have a legend of what each of the symbols mean. For easier understanding, I made a much simpler map that contains only empty ground and starting position.&lt;/p&gt;</description></item><item><title>🎄 Advent of Code Day 09</title><link>https://maymeow.blog/programming/advent-of-code-day-09/</link><pubDate>Sat, 09 Dec 2023 22:02:04 +0100</pubDate><guid>https://maymeow.blog/programming/advent-of-code-day-09/</guid><description>&lt;p&gt;Today&amp;rsquo;s problem contains a prediction of the next values for the Oasis and Sand instability sensors. You are looking at the report that contains the history. This report looks like this and you need to predict next values.&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-text" data-lang="text"&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;1&lt;/span&gt;&lt;span class="cl"&gt;0 3 6 9 12 15
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;2&lt;/span&gt;&lt;span class="cl"&gt;1 3 6 10 15 21
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;3&lt;/span&gt;&lt;span class="cl"&gt;10 13 16 21 30 45
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;To do this, you must create a new sequence by doing the difference at each step of your history. If the new sequence is not all zeros, you have to repeat the process with the sequence you just created. At the end you will have a bunch of sequences that look like this.&lt;/p&gt;</description></item><item><title>65738938e130b</title><link>https://maymeow.blog/statuslog/65738938e130b/</link><pubDate>Fri, 08 Dec 2023 21:23:04 +0000</pubDate><guid>https://maymeow.blog/statuslog/65738938e130b/</guid><description>&lt;p&gt;Hilda season 3 is out&lt;/p&gt;</description></item><item><title>🎄 Advent of Code Day 08</title><link>https://maymeow.blog/programming/advent-of-code-day-08/</link><pubDate>Fri, 08 Dec 2023 19:01:22 +0100</pubDate><guid>https://maymeow.blog/programming/advent-of-code-day-08/</guid><description>&lt;p&gt;Today&amp;rsquo;s quest is called Haunted Wasteland. You are riding a camel across a desert island. You find a map in one of the camel&amp;rsquo;s bags. The map contains instructions on how to navigate through the desert and a bunch of knots. It looks like this&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-text" data-lang="text"&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;1&lt;/span&gt;&lt;span class="cl"&gt;RL
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;2&lt;/span&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;3&lt;/span&gt;&lt;span class="cl"&gt;AAA = (BBB, CCC)
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;4&lt;/span&gt;&lt;span class="cl"&gt;BBB = (DDD, EEE)
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;5&lt;/span&gt;&lt;span class="cl"&gt;CCC = (ZZZ, GGG)
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;6&lt;/span&gt;&lt;span class="cl"&gt;DDD = (DDD, DDD)
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;7&lt;/span&gt;&lt;span class="cl"&gt;EEE = (EEE, EEE)
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;8&lt;/span&gt;&lt;span class="cl"&gt;GGG = (GGG, GGG)
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;9&lt;/span&gt;&lt;span class="cl"&gt;ZZZ = (ZZZ, ZZZ)
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;You start at node &lt;code&gt;AAA&lt;/code&gt; and need to get to node &lt;code&gt;ZZZZ&lt;/code&gt;. And you need to know how many steps it takes to get to node &lt;code&gt;ZZZ&lt;/code&gt;.&lt;/p&gt;</description></item><item><title>6572356209197</title><link>https://maymeow.blog/statuslog/6572356209197/</link><pubDate>Thu, 07 Dec 2023 21:13:06 +0000</pubDate><guid>https://maymeow.blog/statuslog/6572356209197/</guid><description>&lt;p&gt;Advent of Code is a nice project but quite challenging for me, I still learn new things by looking at how others solve challenges.&lt;/p&gt;</description></item><item><title>656c8da395aee</title><link>https://maymeow.blog/statuslog/656c8da395aee/</link><pubDate>Sun, 03 Dec 2023 14:16:03 +0000</pubDate><guid>https://maymeow.blog/statuslog/656c8da395aee/</guid><description>&lt;p&gt;Trying to organize my computer folders&lt;/p&gt;</description></item><item><title>6568ff69bc10b</title><link>https://maymeow.blog/statuslog/6568ff69bc10b/</link><pubDate>Thu, 30 Nov 2023 21:32:25 +0000</pubDate><guid>https://maymeow.blog/statuslog/6568ff69bc10b/</guid><description>&lt;p&gt;My OMG.publish plugin is now on obsidian market&lt;/p&gt;</description></item><item><title>656782a50a58c</title><link>https://maymeow.blog/statuslog/656782a50a58c/</link><pubDate>Wed, 29 Nov 2023 18:27:49 +0000</pubDate><guid>https://maymeow.blog/statuslog/656782a50a58c/</guid><description>&lt;p&gt;Spotify wrapped is now active&lt;/p&gt;</description></item><item><title>6562370426a79</title><link>https://maymeow.blog/statuslog/6562370426a79/</link><pubDate>Sat, 25 Nov 2023 18:03:48 +0000</pubDate><guid>https://maymeow.blog/statuslog/6562370426a79/</guid><description>&lt;p&gt;Super Mario Bros Wonder&lt;/p&gt;</description></item><item><title>65621eacb920e</title><link>https://maymeow.blog/statuslog/65621eacb920e/</link><pubDate>Sat, 25 Nov 2023 16:19:56 +0000</pubDate><guid>https://maymeow.blog/statuslog/65621eacb920e/</guid><description>&lt;p&gt;It&amp;rsquo;s working &amp;hellip;&lt;/p&gt;</description></item><item><title>65621dbd448fb</title><link>https://maymeow.blog/statuslog/65621dbd448fb/</link><pubDate>Sat, 25 Nov 2023 16:15:57 +0000</pubDate><guid>https://maymeow.blog/statuslog/65621dbd448fb/</guid><description>&lt;p&gt;test &amp;hellip;&lt;/p&gt;</description></item><item><title>65621cc6baba4</title><link>https://maymeow.blog/statuslog/65621cc6baba4/</link><pubDate>Sat, 25 Nov 2023 16:11:50 +0000</pubDate><guid>https://maymeow.blog/statuslog/65621cc6baba4/</guid><description>&lt;p&gt;Rewriting some code in plugin&amp;hellip;&lt;/p&gt;</description></item><item><title>65605129adf98</title><link>https://maymeow.blog/statuslog/65605129adf98/</link><pubDate>Fri, 24 Nov 2023 07:30:49 +0000</pubDate><guid>https://maymeow.blog/statuslog/65605129adf98/</guid><description>&lt;p&gt;PHP 8.3 Released!&lt;/p&gt;</description></item><item><title>655e848e699a5</title><link>https://maymeow.blog/statuslog/655e848e699a5/</link><pubDate>Wed, 22 Nov 2023 22:45:34 +0000</pubDate><guid>https://maymeow.blog/statuslog/655e848e699a5/</guid><description>&lt;p&gt;The Simpsons&lt;/p&gt;</description></item><item><title>655dc7fdedf4f</title><link>https://maymeow.blog/statuslog/655dc7fdedf4f/</link><pubDate>Wed, 22 Nov 2023 09:21:01 +0000</pubDate><guid>https://maymeow.blog/statuslog/655dc7fdedf4f/</guid><description>&lt;p&gt;I saw post from kev and few others and here are few more BlueSky codes:bsky-social-mclqm-qqkm7bsky-social-peiyq-d5mq2bsky-social-sztsh-mx6asbsky-social-mj7wi-7ir2r&lt;/p&gt;</description></item><item><title>655d195d8b6a2</title><link>https://maymeow.blog/statuslog/655d195d8b6a2/</link><pubDate>Tue, 21 Nov 2023 20:55:57 +0000</pubDate><guid>https://maymeow.blog/statuslog/655d195d8b6a2/</guid><description>&lt;p&gt;Added proven verification badge on my blog homepage&lt;/p&gt;</description></item><item><title>655bf72bcf984</title><link>https://maymeow.blog/statuslog/655bf72bcf984/</link><pubDate>Tue, 21 Nov 2023 00:17:47 +0000</pubDate><guid>https://maymeow.blog/statuslog/655bf72bcf984/</guid><description>&lt;p&gt;Ok, Good night&lt;/p&gt;</description></item><item><title>655beb46d02d6</title><link>https://maymeow.blog/statuslog/655beb46d02d6/</link><pubDate>Mon, 20 Nov 2023 23:27:02 +0000</pubDate><guid>https://maymeow.blog/statuslog/655beb46d02d6/</guid><description>&lt;p&gt;One more switch configuration for client and I can go to sleep…&lt;/p&gt;</description></item><item><title>655bb0b67fb1e</title><link>https://maymeow.blog/statuslog/655bb0b67fb1e/</link><pubDate>Mon, 20 Nov 2023 19:17:10 +0000</pubDate><guid>https://maymeow.blog/statuslog/655bb0b67fb1e/</guid><description>&lt;p&gt;Loki&lt;/p&gt;</description></item><item><title>6553e446700e4</title><link>https://maymeow.blog/statuslog/6553e446700e4/</link><pubDate>Tue, 14 Nov 2023 21:19:02 +0000</pubDate><guid>https://maymeow.blog/statuslog/6553e446700e4/</guid><description>&lt;p&gt;Final fantasy XIV&lt;/p&gt;</description></item><item><title>6551eaf43d769</title><link>https://maymeow.blog/statuslog/6551eaf43d769/</link><pubDate>Mon, 13 Nov 2023 09:23:00 +0000</pubDate><guid>https://maymeow.blog/statuslog/6551eaf43d769/</guid><description>&lt;p&gt;‍♀️ It&amp;rsquo;s 2023 and I&amp;rsquo;m trying to fix Windows XP, I didn&amp;rsquo;t see it coming.&lt;/p&gt;</description></item><item><title>654d508db6395</title><link>https://maymeow.blog/statuslog/654d508db6395/</link><pubDate>Thu, 09 Nov 2023 21:35:09 +0000</pubDate><guid>https://maymeow.blog/statuslog/654d508db6395/</guid><description>&lt;p&gt;From android&lt;/p&gt;</description></item><item><title>654d49026a073</title><link>https://maymeow.blog/statuslog/654d49026a073/</link><pubDate>Thu, 09 Nov 2023 21:02:58 +0000</pubDate><guid>https://maymeow.blog/statuslog/654d49026a073/</guid><description>&lt;p&gt;Done :)&lt;/p&gt;</description></item><item><title>654d477440f4a</title><link>https://maymeow.blog/statuslog/654d477440f4a/</link><pubDate>Thu, 09 Nov 2023 20:56:20 +0000</pubDate><guid>https://maymeow.blog/statuslog/654d477440f4a/</guid><description>&lt;p&gt;So&amp;hellip; I removed ribbon and changed the command to check if text is selected before it is allowed to execution. I also removed &amp;ldquo;whole document posting&amp;rdquo;, It was duplicated - you can select all text if you want to post it all.&lt;/p&gt;</description></item><item><title>654d46b21194e</title><link>https://maymeow.blog/statuslog/654d46b21194e/</link><pubDate>Thu, 09 Nov 2023 20:53:06 +0000</pubDate><guid>https://maymeow.blog/statuslog/654d46b21194e/</guid><description>&lt;p&gt;One more test&lt;/p&gt;</description></item><item><title>654d42f0a5f6c</title><link>https://maymeow.blog/statuslog/654d42f0a5f6c/</link><pubDate>Thu, 09 Nov 2023 20:37:04 +0000</pubDate><guid>https://maymeow.blog/statuslog/654d42f0a5f6c/</guid><description>&lt;p&gt;Test &amp;hellip;&lt;/p&gt;</description></item><item><title>654d40c7b4c0a</title><link>https://maymeow.blog/statuslog/654d40c7b4c0a/</link><pubDate>Thu, 09 Nov 2023 20:27:51 +0000</pubDate><guid>https://maymeow.blog/statuslog/654d40c7b4c0a/</guid><description>&lt;p&gt;Test &amp;hellip;&lt;/p&gt;</description></item><item><title>654d3e63c349a</title><link>https://maymeow.blog/statuslog/654d3e63c349a/</link><pubDate>Thu, 09 Nov 2023 20:17:39 +0000</pubDate><guid>https://maymeow.blog/statuslog/654d3e63c349a/</guid><description>&lt;p&gt;I accidentally posted my note to status lol but deleted it immediately. I need to disable/remove the option to post the whole document.&lt;/p&gt;</description></item><item><title>6549684c4d7cd</title><link>https://maymeow.blog/statuslog/6549684c4d7cd/</link><pubDate>Mon, 06 Nov 2023 22:27:24 +0000</pubDate><guid>https://maymeow.blog/statuslog/6549684c4d7cd/</guid><description>&lt;p&gt;Good night&lt;/p&gt;</description></item><item><title>6549442cdac15</title><link>https://maymeow.blog/statuslog/6549442cdac15/</link><pubDate>Mon, 06 Nov 2023 19:53:16 +0000</pubDate><guid>https://maymeow.blog/statuslog/6549442cdac15/</guid><description>&lt;p&gt;Published and now waiting for review&lt;/p&gt;</description></item><item><title>65490d876b321</title><link>https://maymeow.blog/statuslog/65490d876b321/</link><pubDate>Mon, 06 Nov 2023 16:00:07 +0000</pubDate><guid>https://maymeow.blog/statuslog/65490d876b321/</guid><description>&lt;p&gt;Post without emoji on start&lt;/p&gt;</description></item><item><title>65490c60960ad</title><link>https://maymeow.blog/statuslog/65490c60960ad/</link><pubDate>Mon, 06 Nov 2023 15:55:12 +0000</pubDate><guid>https://maymeow.blog/statuslog/65490c60960ad/</guid><description>&lt;p&gt;Commuting home&lt;/p&gt;</description></item><item><title>65490c4867a67</title><link>https://maymeow.blog/statuslog/65490c4867a67/</link><pubDate>Mon, 06 Nov 2023 15:54:48 +0000</pubDate><guid>https://maymeow.blog/statuslog/65490c4867a67/</guid><description>&lt;p&gt;Will not be sent to mastodon 🦣&lt;/p&gt;</description></item><item><title>6549000962de4</title><link>https://maymeow.blog/statuslog/6549000962de4/</link><pubDate>Mon, 06 Nov 2023 15:02:33 +0000</pubDate><guid>https://maymeow.blog/statuslog/6549000962de4/</guid><description>&lt;p&gt;Boo&amp;hellip;&lt;/p&gt;</description></item><item><title>6548f9b93832f</title><link>https://maymeow.blog/statuslog/6548f9b93832f/</link><pubDate>Mon, 06 Nov 2023 14:35:37 +0000</pubDate><guid>https://maymeow.blog/statuslog/6548f9b93832f/</guid><description>&lt;p&gt;finally can post from my Android phone&lt;/p&gt;</description></item><item><title>6548f058d9aba</title><link>https://maymeow.blog/statuslog/6548f058d9aba/</link><pubDate>Mon, 06 Nov 2023 13:55:36 +0000</pubDate><guid>https://maymeow.blog/statuslog/6548f058d9aba/</guid><description>&lt;p&gt;Super Mario Bros Wonder&lt;/p&gt;</description></item><item><title>6548daeaab032</title><link>https://maymeow.blog/statuslog/6548daeaab032/</link><pubDate>Mon, 06 Nov 2023 12:24:10 +0000</pubDate><guid>https://maymeow.blog/statuslog/6548daeaab032/</guid><description>&lt;p&gt;And test (FIXED) - updated how the note about where text was posted looks like.&lt;/p&gt;</description></item><item><title>6548da8d1f60a</title><link>https://maymeow.blog/statuslog/6548da8d1f60a/</link><pubDate>Mon, 06 Nov 2023 12:22:37 +0000</pubDate><guid>https://maymeow.blog/statuslog/6548da8d1f60a/</guid><description>&lt;p&gt;And test - updated how the note about where text was posted looks like.&lt;/p&gt;</description></item><item><title>6548da5a15ade</title><link>https://maymeow.blog/statuslog/6548da5a15ade/</link><pubDate>Mon, 06 Nov 2023 12:21:46 +0000</pubDate><guid>https://maymeow.blog/statuslog/6548da5a15ade/</guid><description>&lt;p&gt;And test - updated how the note about where text was posted looks like.&lt;/p&gt;</description></item><item><title>6548d9f8ce6d2</title><link>https://maymeow.blog/statuslog/6548d9f8ce6d2/</link><pubDate>Mon, 06 Nov 2023 12:20:08 +0000</pubDate><guid>https://maymeow.blog/statuslog/6548d9f8ce6d2/</guid><description>&lt;p&gt;‍♀️OK, back to work&amp;hellip;&lt;/p&gt;</description></item><item><title>6548d3ce16c4f</title><link>https://maymeow.blog/statuslog/6548d3ce16c4f/</link><pubDate>Mon, 06 Nov 2023 11:53:50 +0000</pubDate><guid>https://maymeow.blog/statuslog/6548d3ce16c4f/</guid><description>&lt;p&gt;Lunch&lt;/p&gt;</description></item><item><title>6548c69759095</title><link>https://maymeow.blog/statuslog/6548c69759095/</link><pubDate>Mon, 06 Nov 2023 10:57:27 +0000</pubDate><guid>https://maymeow.blog/statuslog/6548c69759095/</guid><description>&lt;p&gt;Small update: If text contains an emoji anywhere in the text, that emoji will be used for the status emoji. If there are multiple emoticons, the first one is used.&lt;/p&gt;</description></item><item><title>6548b90938691</title><link>https://maymeow.blog/statuslog/6548b90938691/</link><pubDate>Mon, 06 Nov 2023 09:59:37 +0000</pubDate><guid>https://maymeow.blog/statuslog/6548b90938691/</guid><description>&lt;p&gt;😁 Test from obsidian - this is last one i promise 🤞 (for now)&amp;hellip;&lt;/p&gt;</description></item><item><title>6548b7686ded9</title><link>https://maymeow.blog/statuslog/6548b7686ded9/</link><pubDate>Mon, 06 Nov 2023 09:52:40 +0000</pubDate><guid>https://maymeow.blog/statuslog/6548b7686ded9/</guid><description>&lt;p&gt;😁 Test from obsidian&lt;/p&gt;</description></item><item><title>6548b6d554f06</title><link>https://maymeow.blog/statuslog/6548b6d554f06/</link><pubDate>Mon, 06 Nov 2023 09:50:13 +0000</pubDate><guid>https://maymeow.blog/statuslog/6548b6d554f06/</guid><description>&lt;p&gt;😁 Test from obsidian&lt;/p&gt;</description></item><item><title>6548b622d8324</title><link>https://maymeow.blog/statuslog/6548b622d8324/</link><pubDate>Mon, 06 Nov 2023 09:47:14 +0000</pubDate><guid>https://maymeow.blog/statuslog/6548b622d8324/</guid><description>&lt;p&gt;😁 (Test) Sorry for spamming&lt;/p&gt;</description></item><item><title>654811460ec9b</title><link>https://maymeow.blog/statuslog/654811460ec9b/</link><pubDate>Sun, 05 Nov 2023 22:03:50 +0000</pubDate><guid>https://maymeow.blog/statuslog/654811460ec9b/</guid><description>&lt;p&gt;If I have rss-to-email on the bottom and if I don&amp;rsquo;t select a tag for it, it will send the newsletter to all of them (tagged and untagged subscribers).&lt;/p&gt;</description></item><item><title>654797e56a0d3</title><link>https://maymeow.blog/statuslog/654797e56a0d3/</link><pubDate>Sun, 05 Nov 2023 13:25:57 +0000</pubDate><guid>https://maymeow.blog/statuslog/654797e56a0d3/</guid><description>&lt;p&gt;test (single line posting) 2&lt;/p&gt;</description></item><item><title>6547978b532d9</title><link>https://maymeow.blog/statuslog/6547978b532d9/</link><pubDate>Sun, 05 Nov 2023 13:24:27 +0000</pubDate><guid>https://maymeow.blog/statuslog/6547978b532d9/</guid><description>&lt;p&gt;test (single line posting)&lt;/p&gt;</description></item><item><title>654689cf0436d</title><link>https://maymeow.blog/statuslog/654689cf0436d/</link><pubDate>Sat, 04 Nov 2023 18:13:35 +0000</pubDate><guid>https://maymeow.blog/statuslog/654689cf0436d/</guid><description>&lt;p&gt;HomeUp not working (again)…&lt;/p&gt;</description></item><item><title>6544083b77774</title><link>https://maymeow.blog/statuslog/6544083b77774/</link><pubDate>Thu, 02 Nov 2023 20:36:11 +0000</pubDate><guid>https://maymeow.blog/statuslog/6544083b77774/</guid><description>&lt;p&gt;Thinking about moving my domain and mail off from Microsoft 365. Hover i still think it is one of best subscriptions out of there…&lt;/p&gt;</description></item><item><title>653b78d4e142c</title><link>https://maymeow.blog/statuslog/653b78d4e142c/</link><pubDate>Fri, 27 Oct 2023 08:46:12 +0000</pubDate><guid>https://maymeow.blog/statuslog/653b78d4e142c/</guid><description>&lt;p&gt;iOS 17.2 beta&lt;/p&gt;</description></item><item><title>65396ced728eb</title><link>https://maymeow.blog/statuslog/65396ced728eb/</link><pubDate>Wed, 25 Oct 2023 19:30:53 +0000</pubDate><guid>https://maymeow.blog/statuslog/65396ced728eb/</guid><description>&lt;p&gt;Updating my iPads now…&lt;/p&gt;</description></item><item><title>653968882a4fb</title><link>https://maymeow.blog/statuslog/653968882a4fb/</link><pubDate>Wed, 25 Oct 2023 19:12:08 +0000</pubDate><guid>https://maymeow.blog/statuslog/653968882a4fb/</guid><description>&lt;p&gt;Is it just me or is iOS 17.1 really a lot smoother?&lt;/p&gt;</description></item><item><title>65357e1906934</title><link>https://maymeow.blog/statuslog/65357e1906934/</link><pubDate>Sun, 22 Oct 2023 19:55:05 +0000</pubDate><guid>https://maymeow.blog/statuslog/65357e1906934/</guid><description>&lt;p&gt;Watching Loki&lt;/p&gt;</description></item><item><title>65341358b02fc</title><link>https://maymeow.blog/statuslog/65341358b02fc/</link><pubDate>Sat, 21 Oct 2023 18:07:20 +0000</pubDate><guid>https://maymeow.blog/statuslog/65341358b02fc/</guid><description>&lt;p&gt;I got myself an Logitech MX mechanical keyboard
Mini and Mx master 3S mouse&lt;/p&gt;</description></item><item><title>🤔 Privacy Matter but What About Security?</title><link>https://maymeow.blog/posts/privacy-matter-but-what-about-security/</link><pubDate>Tue, 10 Oct 2023 15:20:38 +0200</pubDate><guid>https://maymeow.blog/posts/privacy-matter-but-what-about-security/</guid><description>&lt;p&gt;I don&amp;rsquo;t know. After the last few weeks, I still feel that a lot of people don&amp;rsquo;t care about cybersecurity. Most people are more concerned about privacy, but security is the 2nd rail.&lt;/p&gt;
&lt;p&gt;Companies trying to look perfect, having the latest furniture, new buildings, but still using a lot of old hardware that is no longer maintained and no longer secure.&lt;/p&gt;
&lt;p&gt;People buying expensive things, everyone talking about privacy. A lot of people moving away from big companies and wanting to give their personal data to someone who is privacy friendly, even if those providers are often individuals who have their servers in the basement.&lt;/p&gt;</description></item><item><title>65245d5a1138b</title><link>https://maymeow.blog/statuslog/65245d5a1138b/</link><pubDate>Mon, 09 Oct 2023 20:06:50 +0000</pubDate><guid>https://maymeow.blog/statuslog/65245d5a1138b/</guid><description>&lt;p&gt;American dad…&lt;/p&gt;</description></item><item><title>6524512038134</title><link>https://maymeow.blog/statuslog/6524512038134/</link><pubDate>Mon, 09 Oct 2023 19:14:40 +0000</pubDate><guid>https://maymeow.blog/statuslog/6524512038134/</guid><description>&lt;p&gt;We had earthquake and this is first time that phone showed alert. We are all safe…&lt;/p&gt;</description></item><item><title>📯 Setting Up Reposting</title><link>https://maymeow.blog/posts/setting-up-reposting/</link><pubDate>Sun, 08 Oct 2023 20:57:53 +0200</pubDate><guid>https://maymeow.blog/posts/setting-up-reposting/</guid><description>&lt;p&gt;Hello everyone!&lt;/p&gt;
&lt;p&gt;This is just a quick post to test reposting posts from my blog to other social networks like mastodon or bluesky. Until now, my &amp;ldquo;reposting&amp;rdquo; was based on my action (and if I forgot, no new post information was on my mastodon).&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;ve just read that you can use your rss and Micro.blog to repost what&amp;rsquo;s on your rss to other supported sites. This isn&amp;rsquo;t new to me, but after I tried it and it didn&amp;rsquo;t work I left it as is with the thought that I&amp;rsquo;ll look at it later. And now is the time I think.&lt;/p&gt;</description></item><item><title>6522e5ec3b14f</title><link>https://maymeow.blog/statuslog/6522e5ec3b14f/</link><pubDate>Sun, 08 Oct 2023 17:25:00 +0000</pubDate><guid>https://maymeow.blog/statuslog/6522e5ec3b14f/</guid><description>&lt;p&gt;One bug fixed - another came out&lt;/p&gt;</description></item><item><title>652068513902a</title><link>https://maymeow.blog/statuslog/652068513902a/</link><pubDate>Fri, 06 Oct 2023 20:04:33 +0000</pubDate><guid>https://maymeow.blog/statuslog/652068513902a/</guid><description>&lt;p&gt;Are you taking part in Hacktoberfest?&lt;/p&gt;</description></item><item><title>650e86d8e3f84</title><link>https://maymeow.blog/statuslog/650e86d8e3f84/</link><pubDate>Sat, 23 Sep 2023 06:34:00 +0000</pubDate><guid>https://maymeow.blog/statuslog/650e86d8e3f84/</guid><description>&lt;p&gt;I have preordered my iPhone 15 in natural titanium because I like that color, but now, after people posting photos of their phones, I don’t know, it looks different - it’s just gray… and clay silicon case… same, it looks to me as different shade… anyone has this combination here?&lt;/p&gt;</description></item><item><title>6508a07572d82</title><link>https://maymeow.blog/statuslog/6508a07572d82/</link><pubDate>Mon, 18 Sep 2023 19:09:41 +0000</pubDate><guid>https://maymeow.blog/statuslog/6508a07572d82/</guid><description>&lt;p&gt;1Password passkeys now working on iPhone and iPad&lt;/p&gt;</description></item><item><title>6500c1d54306f</title><link>https://maymeow.blog/statuslog/6500c1d54306f/</link><pubDate>Tue, 12 Sep 2023 19:53:57 +0000</pubDate><guid>https://maymeow.blog/statuslog/6500c1d54306f/</guid><description>&lt;p&gt;I was tempted to get iPhone 14 because it was purple. This years PRO’s colors are boring but I quiet like natural titanium. Also PROs prices are lower comparing last year’s pro. Pro Max has staring price same as last las year Pro max but twice as storage…&lt;/p&gt;</description></item><item><title>64f4a1027fb5e</title><link>https://maymeow.blog/statuslog/64f4a1027fb5e/</link><pubDate>Sun, 03 Sep 2023 15:06:42 +0000</pubDate><guid>https://maymeow.blog/statuslog/64f4a1027fb5e/</guid><description>&lt;p&gt;Going back into Final Fantasy 14…&lt;/p&gt;</description></item><item><title>64e76f9e40d48</title><link>https://maymeow.blog/statuslog/64e76f9e40d48/</link><pubDate>Thu, 24 Aug 2023 14:56:30 +0000</pubDate><guid>https://maymeow.blog/statuslog/64e76f9e40d48/</guid><description>&lt;p&gt;Ooo, that’s why Eset agents won’t showed up in the console…&lt;/p&gt;</description></item><item><title>64e2fecf68d41</title><link>https://maymeow.blog/statuslog/64e2fecf68d41/</link><pubDate>Mon, 21 Aug 2023 06:06:07 +0000</pubDate><guid>https://maymeow.blog/statuslog/64e2fecf68d41/</guid><description>&lt;p&gt;Working…&lt;/p&gt;</description></item><item><title>64e1dbbc66c0e</title><link>https://maymeow.blog/statuslog/64e1dbbc66c0e/</link><pubDate>Sun, 20 Aug 2023 09:24:12 +0000</pubDate><guid>https://maymeow.blog/statuslog/64e1dbbc66c0e/</guid><description>&lt;p&gt;I want more fruit trees in animal crossings…&lt;/p&gt;</description></item><item><title>64d925985594c</title><link>https://maymeow.blog/statuslog/64d925985594c/</link><pubDate>Sun, 13 Aug 2023 18:48:56 +0000</pubDate><guid>https://maymeow.blog/statuslog/64d925985594c/</guid><description>&lt;p&gt;I hope somebody will fix Apple iOS wallpapers…&lt;/p&gt;</description></item><item><title>🐧 Securing Ssh for Linux</title><link>https://maymeow.blog/posts/securing-ssh-for-linux/</link><pubDate>Wed, 09 Aug 2023 15:05:13 +0200</pubDate><guid>https://maymeow.blog/posts/securing-ssh-for-linux/</guid><description>&lt;p&gt;all following changes was made in &lt;code&gt;sshd_config&lt;/code&gt; and you need root permission to do this. Open file with &lt;code&gt;sudo nano /etc/ssh/sshd_config&lt;/code&gt; or any other editor.&lt;/p&gt;
&lt;h2 id="disable-root-access"&gt;Disable root access&lt;/h2&gt;
&lt;p&gt;Before you do this step, make sure you have another user that is in &lt;code&gt;sudo&lt;/code&gt; gorup. Check &lt;a href="https://maymeow.blog/posts/2020/07/initial-server-setup-on-cloud-services/"&gt;Initial Server Setup on Cloud Services&lt;/a&gt; post if you need help with that.&lt;/p&gt;
&lt;p&gt;Now open &lt;code&gt;sshd_config&lt;/code&gt; file and find and uncomment following line&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;1&lt;/span&gt;&lt;span class="cl"&gt;&lt;span class="c1"&gt;# ...&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;2&lt;/span&gt;&lt;span class="cl"&gt;PermitRootLogin no
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;3&lt;/span&gt;&lt;span class="cl"&gt;&lt;span class="c1"&gt;# ...&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Save this file and restart ssh server&lt;/p&gt;</description></item><item><title>64c984f8a8bc9</title><link>https://maymeow.blog/statuslog/64c984f8a8bc9/</link><pubDate>Tue, 01 Aug 2023 22:19:36 +0000</pubDate><guid>https://maymeow.blog/statuslog/64c984f8a8bc9/</guid><description>&lt;p&gt;Animal crossing&lt;/p&gt;</description></item><item><title>64c75c9fa4877</title><link>https://maymeow.blog/statuslog/64c75c9fa4877/</link><pubDate>Mon, 31 Jul 2023 07:02:55 +0000</pubDate><guid>https://maymeow.blog/statuslog/64c75c9fa4877/</guid><description>&lt;p&gt;My watches are not even scratched and new OS will become available to them in coming months, so no new watches for me, but i bought more watch straps (black and blue one) and I will buy another when lavender become available.&lt;/p&gt;</description></item><item><title>64c512cedf294</title><link>https://maymeow.blog/statuslog/64c512cedf294/</link><pubDate>Sat, 29 Jul 2023 13:23:26 +0000</pubDate><guid>https://maymeow.blog/statuslog/64c512cedf294/</guid><description>&lt;p&gt;New Galaxy watches…&lt;/p&gt;</description></item><item><title>64be2b10da887</title><link>https://maymeow.blog/statuslog/64be2b10da887/</link><pubDate>Mon, 24 Jul 2023 07:41:04 +0000</pubDate><guid>https://maymeow.blog/statuslog/64be2b10da887/</guid><description>&lt;p&gt;I haven&amp;rsquo;t bought a game in the last few years, and now that I&amp;rsquo;ve bought a Nintendo Switch I&amp;rsquo;d like to buy almost every 2nd&amp;hellip; I have to resist.&lt;/p&gt;</description></item><item><title>64ba59d270b52</title><link>https://maymeow.blog/statuslog/64ba59d270b52/</link><pubDate>Fri, 21 Jul 2023 10:11:30 +0000</pubDate><guid>https://maymeow.blog/statuslog/64ba59d270b52/</guid><description>&lt;p&gt;Lunch&lt;/p&gt;</description></item><item><title>64b176560a8ac</title><link>https://maymeow.blog/statuslog/64b176560a8ac/</link><pubDate>Fri, 14 Jul 2023 16:22:46 +0000</pubDate><guid>https://maymeow.blog/statuslog/64b176560a8ac/</guid><description>&lt;p&gt;What is SurfShark’s alternative ID? Do anyone here tried it?&lt;/p&gt;</description></item><item><title>64b10130c8180</title><link>https://maymeow.blog/statuslog/64b10130c8180/</link><pubDate>Fri, 14 Jul 2023 08:02:56 +0000</pubDate><guid>https://maymeow.blog/statuslog/64b10130c8180/</guid><description>&lt;p&gt;iOS public beta available now&lt;/p&gt;</description></item><item><title>64b074a399d6e</title><link>https://maymeow.blog/statuslog/64b074a399d6e/</link><pubDate>Thu, 13 Jul 2023 22:03:15 +0000</pubDate><guid>https://maymeow.blog/statuslog/64b074a399d6e/</guid><description>&lt;p&gt;ProtonDrive now has Windows desktop application&lt;/p&gt;</description></item><item><title>64aad8a281c7e</title><link>https://maymeow.blog/statuslog/64aad8a281c7e/</link><pubDate>Sun, 09 Jul 2023 15:56:18 +0000</pubDate><guid>https://maymeow.blog/statuslog/64aad8a281c7e/</guid><description>&lt;p&gt;Splatoon 3&lt;/p&gt;</description></item><item><title>64a7fe03a7819</title><link>https://maymeow.blog/statuslog/64a7fe03a7819/</link><pubDate>Fri, 07 Jul 2023 11:58:59 +0000</pubDate><guid>https://maymeow.blog/statuslog/64a7fe03a7819/</guid><description>&lt;p&gt;Thanks for suggestions I was able to &amp;ldquo;solve&amp;rdquo; my problem with payment by buying nintendo&amp;rsquo;s prepaid card&amp;hellip;&lt;/p&gt;</description></item><item><title>64a7c52e4a525</title><link>https://maymeow.blog/statuslog/64a7c52e4a525/</link><pubDate>Fri, 07 Jul 2023 07:56:30 +0000</pubDate><guid>https://maymeow.blog/statuslog/64a7c52e4a525/</guid><description>&lt;p&gt;I got 2 games on my Switch and from this point u was unable to buy anything (games, subscription for online gaming) so I contacted support and it turned out that nintendo somehow blocked my payments (paypal / CC) and they don&amp;rsquo;t know why. And that it shouldn&amp;rsquo;t take more than 30 days (without guarantee), so I should wait. I&amp;rsquo;m thinking of returning it.&lt;/p&gt;</description></item><item><title>64a724ae12924</title><link>https://maymeow.blog/statuslog/64a724ae12924/</link><pubDate>Thu, 06 Jul 2023 20:31:42 +0000</pubDate><guid>https://maymeow.blog/statuslog/64a724ae12924/</guid><description>&lt;p&gt;I renewed my Surfshark subscription for another two years. I have been using Surfshark for 2years and have had no problems with it. The speed is better than other VPNs I have tried.&lt;/p&gt;</description></item><item><title>64a5d0a0f1612</title><link>https://maymeow.blog/statuslog/64a5d0a0f1612/</link><pubDate>Wed, 05 Jul 2023 20:20:48 +0000</pubDate><guid>https://maymeow.blog/statuslog/64a5d0a0f1612/</guid><description>&lt;p&gt;I get myself Nintendo switch. Any recommended games?&lt;/p&gt;</description></item><item><title>64a5d042b509b</title><link>https://maymeow.blog/statuslog/64a5d042b509b/</link><pubDate>Wed, 05 Jul 2023 20:19:14 +0000</pubDate><guid>https://maymeow.blog/statuslog/64a5d042b509b/</guid><description>&lt;p&gt;New status.log for iOS update …&lt;/p&gt;</description></item><item><title>🔧 About Wireguard and MikroTik</title><link>https://maymeow.blog/posts/wireguard-and-mikrotik/</link><pubDate>Mon, 03 Jul 2023 12:58:20 +0200</pubDate><guid>https://maymeow.blog/posts/wireguard-and-mikrotik/</guid><description>&lt;p&gt;Wireguard network: &lt;code&gt;10.11.18.0/30&lt;/code&gt; allow to set exactly two IP addresses, if you have more routers you will need a larger range.&lt;/p&gt;
&lt;table&gt;
	&lt;thead&gt;
			&lt;tr&gt;
					&lt;th&gt;&lt;/th&gt;
					&lt;th&gt;Site 1 (Router 1)&lt;/th&gt;
					&lt;th&gt;Site 2 (Router 2)&lt;/th&gt;
			&lt;/tr&gt;
	&lt;/thead&gt;
	&lt;tbody&gt;
			&lt;tr&gt;
					&lt;td&gt;Wireguard IP&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;10.11.18.1/30&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;10.11.18.2/30&lt;/code&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Reouter IP&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;192.168.8.1/24&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;172.17.17.1/24&lt;/code&gt;&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Network&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;192.168.8.0/24&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;172.17.17.0/24&lt;/code&gt;&lt;/td&gt;
			&lt;/tr&gt;
	&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id="router-1-aka-server"&gt;Router 1 (a.k.a. Server)&lt;/h2&gt;
&lt;h3 id="addresses-configuration"&gt;Addresses configuration&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;IP Address: &lt;code&gt;192.168.8.1/24&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Network: &lt;code&gt;192.168.8.0/24&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;WG Address: &lt;code&gt;10.11.18.1/30&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;1&lt;/span&gt;&lt;span class="cl"&gt;/ip address
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;2&lt;/span&gt;&lt;span class="cl"&gt;add &lt;span class="nv"&gt;address&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;192.168.8.1/24 &lt;span class="nv"&gt;comment&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s2"&gt;&amp;#34;Router 1&amp;#39;s home network&amp;#34;&lt;/span&gt; &lt;span class="nv"&gt;interface&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="se"&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;3&lt;/span&gt;&lt;span class="cl"&gt;    bridge-local &lt;span class="nv"&gt;network&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;192.168.8.0
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;4&lt;/span&gt;&lt;span class="cl"&gt;add &lt;span class="nv"&gt;address&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;10.11.18.1/30 &lt;span class="nv"&gt;interface&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;WG01 &lt;span class="nv"&gt;network&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;10.11.18.0
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id="wireguard-interface"&gt;WireGuard interface&lt;/h3&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;1&lt;/span&gt;&lt;span class="cl"&gt;/interface wireguard
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;2&lt;/span&gt;&lt;span class="cl"&gt;add listen-port&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="m"&gt;13251&lt;/span&gt; &lt;span class="nv"&gt;mtu&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="m"&gt;1420&lt;/span&gt; &lt;span class="nv"&gt;name&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;WG01 private-key&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="se"&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;3&lt;/span&gt;&lt;span class="cl"&gt;    &lt;span class="s2"&gt;&amp;#34;&amp;lt;--private-key-is-generated-while-creating-interface--&amp;gt;&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id="wireguard-peer-configuration"&gt;Wireguard peer configuration&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;allowed-address&lt;/strong&gt;: put there addresses of networks/devices that should be accessed trough VPN tunnel&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;1&lt;/span&gt;&lt;span class="cl"&gt;/interface wireguard peers
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;2&lt;/span&gt;&lt;span class="cl"&gt;add allowed-address&lt;span class="o"&gt;=&lt;/span&gt;10.11.18.2/30,172.17.17.0/24 &lt;span class="nv"&gt;interface&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;WG01 public-key&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="se"&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;3&lt;/span&gt;&lt;span class="cl"&gt;    &lt;span class="s2"&gt;&amp;#34;&amp;lt;--put-here-public-key-from-Router-2&amp;#39;s-WG-interface--&amp;gt;&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id="routing"&gt;Routing&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Destination address: network behind router 2 &lt;code&gt;172.17.17.0/24&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Gateway: WireGuard IP address from router 2 &lt;code&gt;10.11.18.2&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;1&lt;/span&gt;&lt;span class="cl"&gt;/ip route
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;2&lt;/span&gt;&lt;span class="cl"&gt;add &lt;span class="nv"&gt;comment&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s2"&gt;&amp;#34;Routing to Router 2&amp;#39;s network&amp;#34;&lt;/span&gt; &lt;span class="nv"&gt;disabled&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;no &lt;span class="nv"&gt;distance&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="m"&gt;1&lt;/span&gt; dst-address&lt;span class="o"&gt;=&lt;/span&gt;172.17.17.0/24 &lt;span class="se"&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;3&lt;/span&gt;&lt;span class="cl"&gt;    &lt;span class="nv"&gt;gateway&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;10.11.18.2 pref-src&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s2"&gt;&amp;#34;&amp;#34;&lt;/span&gt; routing-table&lt;span class="o"&gt;=&lt;/span&gt;main &lt;span class="nv"&gt;scope&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="m"&gt;30&lt;/span&gt; &lt;span class="se"&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;4&lt;/span&gt;&lt;span class="cl"&gt;    suppress-hw-offload&lt;span class="o"&gt;=&lt;/span&gt;no target-scope&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="m"&gt;10&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id="router-2-aka-client"&gt;Router 2 (a.k.a. Client)&lt;/h2&gt;
&lt;h3 id="addresses-configuration-1"&gt;Addresses configuration&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;IP Address: &lt;code&gt;172.17.17.1/24&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Network: &lt;code&gt;172.17.17.0/24&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;WG Address: &lt;code&gt;10.11.18.2/30&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;1&lt;/span&gt;&lt;span class="cl"&gt;/ip address
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;2&lt;/span&gt;&lt;span class="cl"&gt;add &lt;span class="nv"&gt;address&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;172.17.17.1/24 &lt;span class="nv"&gt;comment&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s2"&gt;&amp;#34;Router 2&amp;#39;s home network&amp;#34;&lt;/span&gt; &lt;span class="nv"&gt;interface&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;br1 &lt;span class="nv"&gt;network&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="se"&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;3&lt;/span&gt;&lt;span class="cl"&gt;    172.17.17.0
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;4&lt;/span&gt;&lt;span class="cl"&gt;add &lt;span class="nv"&gt;address&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;10.11.18.2/30 &lt;span class="nv"&gt;interface&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;WG01 &lt;span class="nv"&gt;network&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;10.11.18.0
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id="wireguard-interface-1"&gt;WireGuard Interface&lt;/h3&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;1&lt;/span&gt;&lt;span class="cl"&gt;/interface wireguard
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;2&lt;/span&gt;&lt;span class="cl"&gt;add listen-port&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="m"&gt;13251&lt;/span&gt; &lt;span class="nv"&gt;mtu&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="m"&gt;1420&lt;/span&gt; &lt;span class="nv"&gt;name&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;WG01 private-key&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="se"&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;3&lt;/span&gt;&lt;span class="cl"&gt;    &lt;span class="s2"&gt;&amp;#34;&amp;lt;--private-key-is-generated-while-creating-interface--&amp;gt;&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id="wireguard-peer-configuration-1"&gt;WireGuard peer configuration&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;persistent-keepalive&lt;/strong&gt; : It must be set for at least 10 seconds, otherwise the router will not dial the connection.&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;1&lt;/span&gt;&lt;span class="cl"&gt;/interface wireguard peers
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;2&lt;/span&gt;&lt;span class="cl"&gt;add allowed-address&lt;span class="o"&gt;=&lt;/span&gt;192.168.8.0/24,10.11.18.0/30 endpoint-address&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="se"&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;3&lt;/span&gt;&lt;span class="cl"&gt;    mipapredajna.dyndns.org endpoint-port&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="m"&gt;13251&lt;/span&gt; &lt;span class="nv"&gt;interface&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;WG01 &lt;span class="se"&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;4&lt;/span&gt;&lt;span class="cl"&gt;    persistent-keepalive&lt;span class="o"&gt;=&lt;/span&gt;10s public-key&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="se"&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;5&lt;/span&gt;&lt;span class="cl"&gt;    &lt;span class="s2"&gt;&amp;#34;&amp;lt;--put-here-public-key-from-Router-1&amp;#39;s-WG-interface--&amp;gt;&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id="routing-1"&gt;Routing&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Destination address&lt;/strong&gt;: network behind router 1 &lt;code&gt;192.168.8.0/24&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Gateway&lt;/strong&gt;: WireGuard IP address from router 1 &lt;code&gt;10.11.18.1&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;1&lt;/span&gt;&lt;span class="cl"&gt;/ip route
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;2&lt;/span&gt;&lt;span class="cl"&gt;add &lt;span class="nv"&gt;comment&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s2"&gt;&amp;#34;Routing to Router 1&amp;#39;s network&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;3&lt;/span&gt;&lt;span class="cl"&gt; &lt;span class="nv"&gt;disabled&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;no &lt;span class="nv"&gt;distance&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="m"&gt;1&lt;/span&gt; dst-address&lt;span class="o"&gt;=&lt;/span&gt;192.168.8.0/24 &lt;span class="nv"&gt;gateway&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;10.11.18.1 &lt;span class="se"&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;4&lt;/span&gt;&lt;span class="cl"&gt;    pref-src&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s2"&gt;&amp;#34;&amp;#34;&lt;/span&gt; routing-table&lt;span class="o"&gt;=&lt;/span&gt;main &lt;span class="nv"&gt;scope&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="m"&gt;30&lt;/span&gt; suppress-hw-offload&lt;span class="o"&gt;=&lt;/span&gt;no &lt;span class="se"&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;5&lt;/span&gt;&lt;span class="cl"&gt;    target-scope&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="m"&gt;10&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id="summary"&gt;Summary&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;WG Interfaces generating their own keys while configuring interface&lt;/li&gt;
&lt;li&gt;Put public key of &lt;strong&gt;Router 1&amp;rsquo;s WG interface&lt;/strong&gt; to &lt;strong&gt;peer configuration on Router 2&lt;/strong&gt; and vice versa&lt;/li&gt;
&lt;li&gt;On &lt;strong&gt;Router 1&lt;/strong&gt; add router to &lt;strong&gt;Router 2&amp;rsquo;s network&lt;/strong&gt; and as gateway use &lt;strong&gt;Router 2&amp;rsquo;s WG IP address&lt;/strong&gt; and vice versa (on Router 2, Router 1&amp;rsquo;s network and as gateway use Router 1&amp;rsquo;s WG IP address)&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>64a1732dc3f87</title><link>https://maymeow.blog/statuslog/64a1732dc3f87/</link><pubDate>Sun, 02 Jul 2023 12:53:01 +0000</pubDate><guid>https://maymeow.blog/statuslog/64a1732dc3f87/</guid><description>&lt;p&gt;Im really tempted to buy Nintendo switch. I had it in my shopping cart many times but every time I removed it before I send order… but now new Zelda…. 🤔&lt;/p&gt;</description></item><item><title>64a08c68bb9f9</title><link>https://maymeow.blog/statuslog/64a08c68bb9f9/</link><pubDate>Sat, 01 Jul 2023 20:28:24 +0000</pubDate><guid>https://maymeow.blog/statuslog/64a08c68bb9f9/</guid><description>&lt;p&gt;So the blue-bird site cares about our health and implemented doomscrolling protection?&lt;/p&gt;</description></item><item><title>649fd25bbe55f</title><link>https://maymeow.blog/statuslog/649fd25bbe55f/</link><pubDate>Sat, 01 Jul 2023 07:14:35 +0000</pubDate><guid>https://maymeow.blog/statuslog/649fd25bbe55f/</guid><description>&lt;p&gt;Time to do something…&lt;/p&gt;</description></item><item><title>649f1469589a4</title><link>https://maymeow.blog/statuslog/649f1469589a4/</link><pubDate>Fri, 30 Jun 2023 17:44:09 +0000</pubDate><guid>https://maymeow.blog/statuslog/649f1469589a4/</guid><description>&lt;p&gt;Today we have end of school year and start of 2 months vacation 🥳&lt;/p&gt;</description></item><item><title>649c4f0e61688</title><link>https://maymeow.blog/statuslog/649c4f0e61688/</link><pubDate>Wed, 28 Jun 2023 15:17:34 +0000</pubDate><guid>https://maymeow.blog/statuslog/649c4f0e61688/</guid><description>&lt;p&gt;It’s raining (man)…&lt;/p&gt;</description></item><item><title>649b218feb6a9</title><link>https://maymeow.blog/statuslog/649b218feb6a9/</link><pubDate>Tue, 27 Jun 2023 17:51:11 +0000</pubDate><guid>https://maymeow.blog/statuslog/649b218feb6a9/</guid><description>&lt;p&gt;it seems to me like it&amp;rsquo;s Friday&lt;/p&gt;</description></item><item><title>649a90885a6a3</title><link>https://maymeow.blog/statuslog/649a90885a6a3/</link><pubDate>Tue, 27 Jun 2023 07:32:24 +0000</pubDate><guid>https://maymeow.blog/statuslog/649a90885a6a3/</guid><description>&lt;p&gt;Database repair almost finished&lt;/p&gt;</description></item><item><title>6499988b229eb</title><link>https://maymeow.blog/statuslog/6499988b229eb/</link><pubDate>Mon, 26 Jun 2023 13:54:19 +0000</pubDate><guid>https://maymeow.blog/statuslog/6499988b229eb/</guid><description>&lt;p&gt;Corss-posting test&amp;hellip;&lt;/p&gt;</description></item><item><title>6499887a02b66</title><link>https://maymeow.blog/statuslog/6499887a02b66/</link><pubDate>Mon, 26 Jun 2023 12:45:46 +0000</pubDate><guid>https://maymeow.blog/statuslog/6499887a02b66/</guid><description>&lt;p&gt;Attention, there is a fake Good Notes App on the Play store (Google) according to my opinion. It has a different icon, app id: is com.goodnotes2.notebook_notepad by M.R. Lee Software. App require email to work but confirmation email wont arrived.GoodNotes has actually released an android app (currently in beta) but it is only available for Samsung tablets with 8 inches or more. and at least 3GB ram&lt;/p&gt;</description></item><item><title>64989919a4db8</title><link>https://maymeow.blog/statuslog/64989919a4db8/</link><pubDate>Sun, 25 Jun 2023 19:44:25 +0000</pubDate><guid>https://maymeow.blog/statuslog/64989919a4db8/</guid><description>&lt;p&gt;Changed my microblog account username and new post are now showing only on my blog not the timeline&lt;/p&gt;</description></item><item><title>649880ba88bc0</title><link>https://maymeow.blog/statuslog/649880ba88bc0/</link><pubDate>Sun, 25 Jun 2023 18:00:26 +0000</pubDate><guid>https://maymeow.blog/statuslog/649880ba88bc0/</guid><description>&lt;p&gt;How long its taking corsspost from statuslog to microblog?&lt;/p&gt;</description></item><item><title>649856951f5d8</title><link>https://maymeow.blog/statuslog/649856951f5d8/</link><pubDate>Sun, 25 Jun 2023 15:00:37 +0000</pubDate><guid>https://maymeow.blog/statuslog/649856951f5d8/</guid><description>&lt;p&gt;Diablo IV try number 2 today…&lt;/p&gt;</description></item><item><title>64981070bf391</title><link>https://maymeow.blog/statuslog/64981070bf391/</link><pubDate>Sun, 25 Jun 2023 10:01:20 +0000</pubDate><guid>https://maymeow.blog/statuslog/64981070bf391/</guid><description>&lt;p&gt;Still waiting in Diablo IV queue….&lt;/p&gt;</description></item><item><title>6497716bd38f1</title><link>https://maymeow.blog/statuslog/6497716bd38f1/</link><pubDate>Sat, 24 Jun 2023 22:42:51 +0000</pubDate><guid>https://maymeow.blog/statuslog/6497716bd38f1/</guid><description>&lt;p&gt;Still Not sleeping&lt;/p&gt;</description></item><item><title>64935ef4e5444</title><link>https://maymeow.blog/statuslog/64935ef4e5444/</link><pubDate>Wed, 21 Jun 2023 20:35:00 +0000</pubDate><guid>https://maymeow.blog/statuslog/64935ef4e5444/</guid><description>&lt;p&gt;I found that I love mulberries&lt;/p&gt;</description></item><item><title>648c86d0544e0</title><link>https://maymeow.blog/statuslog/648c86d0544e0/</link><pubDate>Fri, 16 Jun 2023 15:59:12 +0000</pubDate><guid>https://maymeow.blog/statuslog/648c86d0544e0/</guid><description>&lt;p&gt;Are you a good driver? When do you know you&amp;rsquo;ve made a mistake or misjudged a situation (I don&amp;rsquo;t mean a crash)? When they honk at you? Or is it a gut feeling? What do you do in that case? Do you take a break from driving or do you nod your hand over it and move on?&lt;/p&gt;</description></item><item><title>648afcce7fca1</title><link>https://maymeow.blog/statuslog/648afcce7fca1/</link><pubDate>Thu, 15 Jun 2023 11:58:06 +0000</pubDate><guid>https://maymeow.blog/statuslog/648afcce7fca1/</guid><description>&lt;p&gt;Fastmail, Protonmail, OMG and many others ❤️1password passkeys and I&amp;rsquo;m impressed. What a cool and secure feature. (And you can freely combine with YubiKeys as a backup) 👋&lt;/p&gt;</description></item><item><title>648305d8d6f0e</title><link>https://maymeow.blog/statuslog/648305d8d6f0e/</link><pubDate>Fri, 09 Jun 2023 10:58:32 +0000</pubDate><guid>https://maymeow.blog/statuslog/648305d8d6f0e/</guid><description>&lt;p&gt;Okay, new Snoopy watch face is really cute&lt;/p&gt;</description></item><item><title>64823b9ccb9fc</title><link>https://maymeow.blog/statuslog/64823b9ccb9fc/</link><pubDate>Thu, 08 Jun 2023 20:35:40 +0000</pubDate><guid>https://maymeow.blog/statuslog/64823b9ccb9fc/</guid><description>&lt;p&gt;iOS 17 downloaded&lt;/p&gt;</description></item><item><title>647f486edbb85</title><link>https://maymeow.blog/statuslog/647f486edbb85/</link><pubDate>Tue, 06 Jun 2023 14:53:34 +0000</pubDate><guid>https://maymeow.blog/statuslog/647f486edbb85/</guid><description>&lt;p&gt;Anyone here on iO17 Developer beta?&lt;/p&gt;</description></item><item><title>647f132011657</title><link>https://maymeow.blog/statuslog/647f132011657/</link><pubDate>Tue, 06 Jun 2023 11:06:08 +0000</pubDate><guid>https://maymeow.blog/statuslog/647f132011657/</guid><description>&lt;p&gt;Have any of you already received a Bluesky invitation after registering for the waitlist? Or at least a confirmation email that you are on list?&lt;/p&gt;</description></item><item><title>647e5818378b7</title><link>https://maymeow.blog/statuslog/647e5818378b7/</link><pubDate>Mon, 05 Jun 2023 21:48:08 +0000</pubDate><guid>https://maymeow.blog/statuslog/647e5818378b7/</guid><description>&lt;p&gt;Can’t wait to try them (passkeys) with 1Password (any idea when they release this feature?)&lt;/p&gt;</description></item><item><title>647e53bb0d602</title><link>https://maymeow.blog/statuslog/647e53bb0d602/</link><pubDate>Mon, 05 Jun 2023 21:29:31 +0000</pubDate><guid>https://maymeow.blog/statuslog/647e53bb0d602/</guid><description>&lt;p&gt;Passkeys!&lt;/p&gt;</description></item><item><title>647b9cb96543f</title><link>https://maymeow.blog/statuslog/647b9cb96543f/</link><pubDate>Sat, 03 Jun 2023 20:04:09 +0000</pubDate><guid>https://maymeow.blog/statuslog/647b9cb96543f/</guid><description>&lt;p&gt;Diablo IV downloading&lt;/p&gt;</description></item><item><title>6477bf16c9a32</title><link>https://maymeow.blog/statuslog/6477bf16c9a32/</link><pubDate>Wed, 31 May 2023 21:41:42 +0000</pubDate><guid>https://maymeow.blog/statuslog/6477bf16c9a32/</guid><description>&lt;p&gt;From Hugo to Ghost and then to custom blogging app and now back to Hugo…&lt;/p&gt;</description></item><item><title>64749393d0db0</title><link>https://maymeow.blog/statuslog/64749393d0db0/</link><pubDate>Mon, 29 May 2023 11:59:15 +0000</pubDate><guid>https://maymeow.blog/statuslog/64749393d0db0/</guid><description>&lt;p&gt;Microsoft todo has now Apple Watch app&lt;/p&gt;</description></item><item><title>6473541c8aa93</title><link>https://maymeow.blog/statuslog/6473541c8aa93/</link><pubDate>Sun, 28 May 2023 13:16:12 +0000</pubDate><guid>https://maymeow.blog/statuslog/6473541c8aa93/</guid><description>&lt;p&gt;I canceled my subscription to micro.blog, I think my social media surfing is getting a bit busy so I&amp;rsquo;m going to thin it out a bit.&lt;/p&gt;</description></item><item><title>646e8af4b3753</title><link>https://maymeow.blog/statuslog/646e8af4b3753/</link><pubDate>Wed, 24 May 2023 22:08:52 +0000</pubDate><guid>https://maymeow.blog/statuslog/646e8af4b3753/</guid><description>&lt;p&gt;Quantumania&lt;/p&gt;</description></item><item><title>646e479f36c90</title><link>https://maymeow.blog/statuslog/646e479f36c90/</link><pubDate>Wed, 24 May 2023 17:21:35 +0000</pubDate><guid>https://maymeow.blog/statuslog/646e479f36c90/</guid><description>&lt;p&gt;Final fantasy XIV&lt;/p&gt;</description></item><item><title>646d13315b04a</title><link>https://maymeow.blog/statuslog/646d13315b04a/</link><pubDate>Tue, 23 May 2023 19:25:37 +0000</pubDate><guid>https://maymeow.blog/statuslog/646d13315b04a/</guid><description>&lt;p&gt;I travelled about 800km today in the passenger seat of the car and I&amp;rsquo;ve had enough. I admire people who can drive that distance.&lt;/p&gt;</description></item><item><title>646bc9bbeb3cd</title><link>https://maymeow.blog/statuslog/646bc9bbeb3cd/</link><pubDate>Mon, 22 May 2023 19:59:55 +0000</pubDate><guid>https://maymeow.blog/statuslog/646bc9bbeb3cd/</guid><description>&lt;p&gt;I’ve just upgraded my blog theme so that I can use it on Micro.blog as well.&lt;/p&gt;</description></item><item><title>646aa922eb4bd</title><link>https://maymeow.blog/statuslog/646aa922eb4bd/</link><pubDate>Sun, 21 May 2023 23:28:34 +0000</pubDate><guid>https://maymeow.blog/statuslog/646aa922eb4bd/</guid><description>&lt;p&gt;Ok. Cool, now I’m too excited for sleep&lt;/p&gt;</description></item><item><title>646a9a2d75774</title><link>https://maymeow.blog/statuslog/646a9a2d75774/</link><pubDate>Sun, 21 May 2023 22:24:45 +0000</pubDate><guid>https://maymeow.blog/statuslog/646a9a2d75774/</guid><description>&lt;p&gt;Found It! [Eurasian Scoop Owl](&lt;a href="https://youtu.be/"&gt;https://youtu.be/&lt;/a&gt; XC7of-0mWOI) I can go sleep now.&lt;/p&gt;</description></item><item><title>646a989821629</title><link>https://maymeow.blog/statuslog/646a989821629/</link><pubDate>Sun, 21 May 2023 22:18:00 +0000</pubDate><guid>https://maymeow.blog/statuslog/646a989821629/</guid><description>&lt;p&gt;What can make beeping sounds exactly like sonar? And why I heard one now?&lt;/p&gt;</description></item><item><title>646a3da13fc44</title><link>https://maymeow.blog/statuslog/646a3da13fc44/</link><pubDate>Sun, 21 May 2023 15:49:53 +0000</pubDate><guid>https://maymeow.blog/statuslog/646a3da13fc44/</guid><description>&lt;p&gt;Is there any library to use fluentUi emojis with my own website? I started to create one myself but it’s a lot of work to be done.&lt;/p&gt;</description></item><item><title>64686a0b7fff5</title><link>https://maymeow.blog/statuslog/64686a0b7fff5/</link><pubDate>Sat, 20 May 2023 06:34:51 +0000</pubDate><guid>https://maymeow.blog/statuslog/64686a0b7fff5/</guid><description>&lt;p&gt;Morning everyone&lt;/p&gt;</description></item><item><title>6467747b47f4d</title><link>https://maymeow.blog/statuslog/6467747b47f4d/</link><pubDate>Fri, 19 May 2023 13:07:07 +0000</pubDate><guid>https://maymeow.blog/statuslog/6467747b47f4d/</guid><description>&lt;p&gt;Sometimes I feel like an idiot to myself. I wonder what kind of stupid things people can do and sometimes I end up with doing them myself…&lt;/p&gt;</description></item><item><title>646683a0de422</title><link>https://maymeow.blog/statuslog/646683a0de422/</link><pubDate>Thu, 18 May 2023 19:59:28 +0000</pubDate><guid>https://maymeow.blog/statuslog/646683a0de422/</guid><description>&lt;p&gt;New iOS 16.5 wallpaper is really cool&lt;/p&gt;</description></item><item><title>6463d27aa3d4b</title><link>https://maymeow.blog/statuslog/6463d27aa3d4b/</link><pubDate>Tue, 16 May 2023 18:59:06 +0000</pubDate><guid>https://maymeow.blog/statuslog/6463d27aa3d4b/</guid><description>&lt;p&gt;Don’t know if I need pro max iPhone as my 2nd phone… for this price you can have base iPhone and pixel 7a (together) for example&lt;/p&gt;</description></item><item><title>64629d6a3313e</title><link>https://maymeow.blog/statuslog/64629d6a3313e/</link><pubDate>Mon, 15 May 2023 21:00:26 +0000</pubDate><guid>https://maymeow.blog/statuslog/64629d6a3313e/</guid><description>&lt;p&gt;I wanted to make some updates on my blog but I miss inspiration… maybe next time&lt;/p&gt;</description></item><item><title>6462723430da0</title><link>https://maymeow.blog/statuslog/6462723430da0/</link><pubDate>Mon, 15 May 2023 17:56:04 +0000</pubDate><guid>https://maymeow.blog/statuslog/6462723430da0/</guid><description>&lt;p&gt;How do you guys solve problems with spam calls?&lt;/p&gt;</description></item><item><title>6461643faa820</title><link>https://maymeow.blog/statuslog/6461643faa820/</link><pubDate>Sun, 14 May 2023 22:44:15 +0000</pubDate><guid>https://maymeow.blog/statuslog/6461643faa820/</guid><description>&lt;p&gt;It’s almost 1am and I’m still not sleeping&lt;/p&gt;</description></item><item><title>645fe0a9e2016</title><link>https://maymeow.blog/statuslog/645fe0a9e2016/</link><pubDate>Sat, 13 May 2023 19:10:33 +0000</pubDate><guid>https://maymeow.blog/statuslog/645fe0a9e2016/</guid><description>&lt;p&gt;Did you upgrade or do you upgrading your phones just because you like new colors?&lt;/p&gt;</description></item><item><title>645e7fac95c17</title><link>https://maymeow.blog/statuslog/645e7fac95c17/</link><pubDate>Fri, 12 May 2023 18:04:28 +0000</pubDate><guid>https://maymeow.blog/statuslog/645e7fac95c17/</guid><description>&lt;p&gt;Ivory has new cute icons&lt;/p&gt;</description></item><item><title>645aac7329948</title><link>https://maymeow.blog/statuslog/645aac7329948/</link><pubDate>Tue, 09 May 2023 20:26:27 +0000</pubDate><guid>https://maymeow.blog/statuslog/645aac7329948/</guid><description>&lt;p&gt;My copilot subscription expired yesterday and I’m already missing him 😊 so I think I’m going to resubscribe soon&lt;/p&gt;</description></item><item><title>6452b3892aa87</title><link>https://maymeow.blog/statuslog/6452b3892aa87/</link><pubDate>Wed, 03 May 2023 19:18:33 +0000</pubDate><guid>https://maymeow.blog/statuslog/6452b3892aa87/</guid><description>&lt;p&gt;Can I have search field on my weblog? If yes how?&lt;/p&gt;</description></item><item><title>644f58ca8e4ff</title><link>https://maymeow.blog/statuslog/644f58ca8e4ff/</link><pubDate>Mon, 01 May 2023 06:14:34 +0000</pubDate><guid>https://maymeow.blog/statuslog/644f58ca8e4ff/</guid><description>&lt;p&gt;Good morning!&lt;/p&gt;</description></item><item><title>📱 I Am Switching to Readwise Reader</title><link>https://maymeow.blog/posts/i-am-switching-to-readwise-reader/</link><pubDate>Sun, 30 Apr 2023 22:45:48 +0200</pubDate><guid>https://maymeow.blog/posts/i-am-switching-to-readwise-reader/</guid><description>&lt;p&gt;&lt;img src="https://cdn.maymeow.com/static/Reader-1280p.png"&gt;&lt;/p&gt;
&lt;p&gt;I decided to try a new &lt;a href="https://readwise.io/read"&gt;Readwise reader&lt;/a&gt; application. I already use their application for highlights from books I read so when I found that they have a read-it-later application I had to try it.&lt;/p&gt;
&lt;p&gt;The app is currently in beta and you can get a 30-day trial version regardless of whether you have used the Readwise app before. I posted screenshots from the iOS version but you can get the Android version as well.&lt;/p&gt;</description></item><item><title>644ec2c977a7c</title><link>https://maymeow.blog/statuslog/644ec2c977a7c/</link><pubDate>Sun, 30 Apr 2023 19:34:33 +0000</pubDate><guid>https://maymeow.blog/statuslog/644ec2c977a7c/</guid><description>&lt;p&gt;Your name.blog vs blog.yourname.com?&lt;/p&gt;</description></item><item><title>6447f6964fb19</title><link>https://maymeow.blog/statuslog/6447f6964fb19/</link><pubDate>Tue, 25 Apr 2023 15:49:42 +0000</pubDate><guid>https://maymeow.blog/statuslog/6447f6964fb19/</guid><description>&lt;p&gt;I don’t like it when people give way on roundabout by stoping in it even though they have proper signs where to stop…&lt;/p&gt;</description></item><item><title>6447eb608a99c</title><link>https://maymeow.blog/statuslog/6447eb608a99c/</link><pubDate>Tue, 25 Apr 2023 15:01:52 +0000</pubDate><guid>https://maymeow.blog/statuslog/6447eb608a99c/</guid><description>&lt;p&gt;To home…&lt;/p&gt;</description></item><item><title>644757ef28050</title><link>https://maymeow.blog/statuslog/644757ef28050/</link><pubDate>Tue, 25 Apr 2023 04:32:47 +0000</pubDate><guid>https://maymeow.blog/statuslog/644757ef28050/</guid><description>&lt;p&gt;Morning…&lt;/p&gt;</description></item><item><title>6446e68347bab</title><link>https://maymeow.blog/statuslog/6446e68347bab/</link><pubDate>Mon, 24 Apr 2023 20:28:51 +0000</pubDate><guid>https://maymeow.blog/statuslog/6446e68347bab/</guid><description>&lt;p&gt;Bob’s burger&lt;/p&gt;</description></item><item><title>6446d080e794b</title><link>https://maymeow.blog/statuslog/6446d080e794b/</link><pubDate>Mon, 24 Apr 2023 18:54:56 +0000</pubDate><guid>https://maymeow.blog/statuslog/6446d080e794b/</guid><description>&lt;p&gt;Waiting…&lt;/p&gt;</description></item><item><title>64466aaa4bfcc</title><link>https://maymeow.blog/statuslog/64466aaa4bfcc/</link><pubDate>Mon, 24 Apr 2023 11:40:26 +0000</pubDate><guid>https://maymeow.blog/statuslog/64466aaa4bfcc/</guid><description>&lt;p&gt;Has anyone ever tried bluesky?&lt;/p&gt;</description></item><item><title>6444d765723e6</title><link>https://maymeow.blog/statuslog/6444d765723e6/</link><pubDate>Sun, 23 Apr 2023 06:59:49 +0000</pubDate><guid>https://maymeow.blog/statuslog/6444d765723e6/</guid><description>&lt;p&gt;I will need another computer to install Linux…&lt;/p&gt;</description></item><item><title>643ef0b22bddd</title><link>https://maymeow.blog/statuslog/643ef0b22bddd/</link><pubDate>Tue, 18 Apr 2023 19:34:10 +0000</pubDate><guid>https://maymeow.blog/statuslog/643ef0b22bddd/</guid><description>&lt;p&gt;Fedora 38 released&lt;/p&gt;</description></item><item><title>643a45ade52e1</title><link>https://maymeow.blog/statuslog/643a45ade52e1/</link><pubDate>Sat, 15 Apr 2023 06:35:25 +0000</pubDate><guid>https://maymeow.blog/statuslog/643a45ade52e1/</guid><description>&lt;p&gt;Can someone explain me micro.blog purpose and why should I pay for it? Isn’t it similar to mastodon or Twitter? Or what are benefits to using it?&lt;/p&gt;</description></item><item><title>6435afa35cff5</title><link>https://maymeow.blog/statuslog/6435afa35cff5/</link><pubDate>Tue, 11 Apr 2023 19:06:11 +0000</pubDate><guid>https://maymeow.blog/statuslog/6435afa35cff5/</guid><description>&lt;p&gt;Test?&lt;/p&gt;</description></item><item><title>6435ae8f9e8a3</title><link>https://maymeow.blog/statuslog/6435ae8f9e8a3/</link><pubDate>Tue, 11 Apr 2023 19:01:35 +0000</pubDate><guid>https://maymeow.blog/statuslog/6435ae8f9e8a3/</guid><description>&lt;p&gt;Over time I&amp;rsquo;ve bought quite a few games but few-some I&amp;rsquo;ve even played. Just read this article from Jose &lt;a href="https://www.josemunozmatos.com/blog/apps-and-tech-im-using-to-help-me-finish-more-video-games"&gt;https://www.josemunozmatos.com/blog/apps-and-tech-im-using-to-help-me-finish-more-video-games&lt;/a&gt; about how he is tracking his games progress to finish them more. I think I give it try.&lt;/p&gt;</description></item><item><title>643327c2ae9d0</title><link>https://maymeow.blog/statuslog/643327c2ae9d0/</link><pubDate>Sun, 09 Apr 2023 21:01:54 +0000</pubDate><guid>https://maymeow.blog/statuslog/643327c2ae9d0/</guid><description>&lt;p&gt;Finished FFXIV Shadowbringers scenario&lt;/p&gt;</description></item><item><title>6426f5002b1ce</title><link>https://maymeow.blog/statuslog/6426f5002b1ce/</link><pubDate>Fri, 31 Mar 2023 14:58:08 +0000</pubDate><guid>https://maymeow.blog/statuslog/6426f5002b1ce/</guid><description>&lt;p&gt;Weekend…&lt;/p&gt;</description></item><item><title>641e03e65dfa7</title><link>https://maymeow.blog/statuslog/641e03e65dfa7/</link><pubDate>Fri, 24 Mar 2023 20:11:18 +0000</pubDate><guid>https://maymeow.blog/statuslog/641e03e65dfa7/</guid><description>&lt;p&gt;Microsoft Edge drop feature finally works (for me) &amp;hellip;&lt;/p&gt;</description></item><item><title>640e3794b2295</title><link>https://maymeow.blog/statuslog/640e3794b2295/</link><pubDate>Sun, 12 Mar 2023 20:35:32 +0000</pubDate><guid>https://maymeow.blog/statuslog/640e3794b2295/</guid><description>&lt;p&gt;FFXIV&lt;/p&gt;</description></item><item><title>640c85ff410df</title><link>https://maymeow.blog/statuslog/640c85ff410df/</link><pubDate>Sat, 11 Mar 2023 13:45:35 +0000</pubDate><guid>https://maymeow.blog/statuslog/640c85ff410df/</guid><description>&lt;p&gt;1899&lt;/p&gt;</description></item><item><title>640b451007e2c</title><link>https://maymeow.blog/statuslog/640b451007e2c/</link><pubDate>Fri, 10 Mar 2023 14:56:16 +0000</pubDate><guid>https://maymeow.blog/statuslog/640b451007e2c/</guid><description>&lt;p&gt;Weekend&lt;/p&gt;</description></item><item><title>64050c1725678</title><link>https://maymeow.blog/statuslog/64050c1725678/</link><pubDate>Sun, 05 Mar 2023 21:39:35 +0000</pubDate><guid>https://maymeow.blog/statuslog/64050c1725678/</guid><description>&lt;p&gt;The Dragoon prince&lt;/p&gt;</description></item><item><title>640034b39851b</title><link>https://maymeow.blog/statuslog/640034b39851b/</link><pubDate>Thu, 02 Mar 2023 05:31:31 +0000</pubDate><guid>https://maymeow.blog/statuslog/640034b39851b/</guid><description>&lt;p&gt;Good morning!&lt;/p&gt;</description></item><item><title>63ff9f5a7e9fe</title><link>https://maymeow.blog/statuslog/63ff9f5a7e9fe/</link><pubDate>Wed, 01 Mar 2023 18:54:18 +0000</pubDate><guid>https://maymeow.blog/statuslog/63ff9f5a7e9fe/</guid><description>&lt;p&gt;Back on Spotify… I like how currently playing song is synced trough all my devices and even to Discord&lt;/p&gt;</description></item><item><title>63ff41d9503a2</title><link>https://maymeow.blog/statuslog/63ff41d9503a2/</link><pubDate>Wed, 01 Mar 2023 12:15:21 +0000</pubDate><guid>https://maymeow.blog/statuslog/63ff41d9503a2/</guid><description>&lt;p&gt;Hate time limited (40 minutes) offers …&lt;/p&gt;</description></item><item><title>63fa7787b8b70</title><link>https://maymeow.blog/statuslog/63fa7787b8b70/</link><pubDate>Sat, 25 Feb 2023 21:03:03 +0000</pubDate><guid>https://maymeow.blog/statuslog/63fa7787b8b70/</guid><description>&lt;p&gt;Are custom MS365 policy rules require an E5 license or it is a pesky bug that prevents me from creating a policy?&lt;/p&gt;</description></item><item><title>63f66e2219b15</title><link>https://maymeow.blog/statuslog/63f66e2219b15/</link><pubDate>Wed, 22 Feb 2023 19:33:54 +0000</pubDate><guid>https://maymeow.blog/statuslog/63f66e2219b15/</guid><description>&lt;p&gt;GitHub finally allows us to edit code with their android app too (like on the iOS app)&lt;/p&gt;</description></item><item><title>63f28b907a9c0</title><link>https://maymeow.blog/statuslog/63f28b907a9c0/</link><pubDate>Sun, 19 Feb 2023 20:50:24 +0000</pubDate><guid>https://maymeow.blog/statuslog/63f28b907a9c0/</guid><description>&lt;p&gt;Watching Disney+&lt;/p&gt;</description></item><item><title>63efbbe71f6b8</title><link>https://maymeow.blog/statuslog/63efbbe71f6b8/</link><pubDate>Fri, 17 Feb 2023 17:39:51 +0000</pubDate><guid>https://maymeow.blog/statuslog/63efbbe71f6b8/</guid><description>&lt;p&gt;Configured safe links and safe attachments on my 365 account. What’s the next? MDM?&lt;/p&gt;</description></item><item><title>63e8c7324be13</title><link>https://maymeow.blog/statuslog/63e8c7324be13/</link><pubDate>Sun, 12 Feb 2023 11:02:10 +0000</pubDate><guid>https://maymeow.blog/statuslog/63e8c7324be13/</guid><description>&lt;p&gt;Frustrating part of using Microsoft services: difference of application functionality web/desktop and even mobile apps (iOS vs Android) are different&lt;/p&gt;</description></item><item><title>63e6837910a01</title><link>https://maymeow.blog/statuslog/63e6837910a01/</link><pubDate>Fri, 10 Feb 2023 17:48:41 +0000</pubDate><guid>https://maymeow.blog/statuslog/63e6837910a01/</guid><description>&lt;p&gt;Does anyone here use iOS focuses?&lt;/p&gt;</description></item><item><title>63e165ddebdb3</title><link>https://maymeow.blog/statuslog/63e165ddebdb3/</link><pubDate>Mon, 06 Feb 2023 20:41:01 +0000</pubDate><guid>https://maymeow.blog/statuslog/63e165ddebdb3/</guid><description>&lt;p&gt;New phone arrived 🥳&lt;/p&gt;</description></item><item><title>63de6f0487879</title><link>https://maymeow.blog/statuslog/63de6f0487879/</link><pubDate>Sat, 04 Feb 2023 14:43:16 +0000</pubDate><guid>https://maymeow.blog/statuslog/63de6f0487879/</guid><description>&lt;p&gt;I&amp;rsquo;m the queen of procrastination&amp;hellip; 😈&lt;/p&gt;</description></item><item><title>63dd816c71861</title><link>https://maymeow.blog/statuslog/63dd816c71861/</link><pubDate>Fri, 03 Feb 2023 21:49:32 +0000</pubDate><guid>https://maymeow.blog/statuslog/63dd816c71861/</guid><description>&lt;p&gt;After a long time, I updated my PHP hydration repository and added support for nested objects&lt;/p&gt;</description></item><item><title>63dc1b843cd2d</title><link>https://maymeow.blog/statuslog/63dc1b843cd2d/</link><pubDate>Thu, 02 Feb 2023 20:22:28 +0000</pubDate><guid>https://maymeow.blog/statuslog/63dc1b843cd2d/</guid><description>&lt;p&gt;Moved my Obsidian vaults to OneDrive, and now I have real-time sync between my computers.&lt;/p&gt;</description></item><item><title>63dbad7c775f5</title><link>https://maymeow.blog/statuslog/63dbad7c775f5/</link><pubDate>Thu, 02 Feb 2023 12:33:00 +0000</pubDate><guid>https://maymeow.blog/statuslog/63dbad7c775f5/</guid><description>&lt;p&gt;Back to work&lt;/p&gt;</description></item><item><title>63dae4326bc79</title><link>https://maymeow.blog/statuslog/63dae4326bc79/</link><pubDate>Wed, 01 Feb 2023 22:14:10 +0000</pubDate><guid>https://maymeow.blog/statuslog/63dae4326bc79/</guid><description>&lt;p&gt;Finally watched Miss Peregrine’s Home for peculiar children. I read the book first a few years ago&lt;/p&gt;</description></item><item><title>63dac017462b2</title><link>https://maymeow.blog/statuslog/63dac017462b2/</link><pubDate>Wed, 01 Feb 2023 19:40:07 +0000</pubDate><guid>https://maymeow.blog/statuslog/63dac017462b2/</guid><description>&lt;p&gt;So we have now new S23 officially revealed&lt;/p&gt;</description></item><item><title>63da25296eaab</title><link>https://maymeow.blog/statuslog/63da25296eaab/</link><pubDate>Wed, 01 Feb 2023 08:39:05 +0000</pubDate><guid>https://maymeow.blog/statuslog/63da25296eaab/</guid><description>&lt;p&gt;Nice&lt;/p&gt;</description></item><item><title>63d6182299138</title><link>https://maymeow.blog/statuslog/63d6182299138/</link><pubDate>Sun, 29 Jan 2023 06:54:26 +0000</pubDate><guid>https://maymeow.blog/statuslog/63d6182299138/</guid><description>&lt;p&gt;Just found that the 1Password secure notes can be formatted by markdown and I’m using it more than 2 years now 😂&lt;/p&gt;</description></item><item><title>63d0695cda68e</title><link>https://maymeow.blog/statuslog/63d0695cda68e/</link><pubDate>Tue, 24 Jan 2023 23:27:24 +0000</pubDate><guid>https://maymeow.blog/statuslog/63d0695cda68e/</guid><description>&lt;p&gt;Cool&amp;hellip; I have successfully misconfigured the build on my Drone-CI, now I can go to sleep (i fix it in the morning)&amp;hellip;&lt;/p&gt;</description></item><item><title>63d022d7e2eb4</title><link>https://maymeow.blog/statuslog/63d022d7e2eb4/</link><pubDate>Tue, 24 Jan 2023 18:26:31 +0000</pubDate><guid>https://maymeow.blog/statuslog/63d022d7e2eb4/</guid><description>&lt;p&gt;Ivory is here 🎉&lt;/p&gt;</description></item><item><title>63ceab4887d69</title><link>https://maymeow.blog/statuslog/63ceab4887d69/</link><pubDate>Mon, 23 Jan 2023 15:44:08 +0000</pubDate><guid>https://maymeow.blog/statuslog/63ceab4887d69/</guid><description>&lt;p&gt;Fun with AI…&lt;/p&gt;</description></item><item><title>63cda0fad9408</title><link>https://maymeow.blog/statuslog/63cda0fad9408/</link><pubDate>Sun, 22 Jan 2023 20:47:54 +0000</pubDate><guid>https://maymeow.blog/statuslog/63cda0fad9408/</guid><description>&lt;p&gt;added ability to show latest statuses to my CLI for omg.lol&lt;/p&gt;</description></item><item><title>63cd9947b7ef2</title><link>https://maymeow.blog/statuslog/63cd9947b7ef2/</link><pubDate>Sun, 22 Jan 2023 20:15:03 +0000</pubDate><guid>https://maymeow.blog/statuslog/63cd9947b7ef2/</guid><description>&lt;p&gt;Watching American dad &amp;hellip;&lt;/p&gt;</description></item><item><title>63cc75fc67d24</title><link>https://maymeow.blog/statuslog/63cc75fc67d24/</link><pubDate>Sat, 21 Jan 2023 23:32:12 +0000</pubDate><guid>https://maymeow.blog/statuslog/63cc75fc67d24/</guid><description>&lt;p&gt;Audiobook time &amp;amp; Good Night!&lt;/p&gt;</description></item><item><title>63cc1c87b9181</title><link>https://maymeow.blog/statuslog/63cc1c87b9181/</link><pubDate>Sat, 21 Jan 2023 17:10:31 +0000</pubDate><guid>https://maymeow.blog/statuslog/63cc1c87b9181/</guid><description>&lt;p&gt;Testing Ice Cubes mastodon client…&lt;/p&gt;</description></item><item><title>63c64d7657a84</title><link>https://maymeow.blog/statuslog/63c64d7657a84/</link><pubDate>Tue, 17 Jan 2023 07:25:42 +0000</pubDate><guid>https://maymeow.blog/statuslog/63c64d7657a84/</guid><description>&lt;p&gt;Now pages&amp;hellip;.&lt;/p&gt;</description></item><item><title>63c581e4c4ac8</title><link>https://maymeow.blog/statuslog/63c581e4c4ac8/</link><pubDate>Mon, 16 Jan 2023 16:57:08 +0000</pubDate><guid>https://maymeow.blog/statuslog/63c581e4c4ac8/</guid><description>&lt;p&gt;What is difference between Wordpress and Jetpack apps?&lt;/p&gt;</description></item><item><title>63c32709979d9</title><link>https://maymeow.blog/statuslog/63c32709979d9/</link><pubDate>Sat, 14 Jan 2023 22:04:57 +0000</pubDate><guid>https://maymeow.blog/statuslog/63c32709979d9/</guid><description>&lt;p&gt;Ok enough for today, going off PC&amp;hellip;&lt;/p&gt;</description></item><item><title>63c326d42dcbe</title><link>https://maymeow.blog/statuslog/63c326d42dcbe/</link><pubDate>Sat, 14 Jan 2023 22:04:04 +0000</pubDate><guid>https://maymeow.blog/statuslog/63c326d42dcbe/</guid><description>&lt;p&gt;️ Just example from CLI&lt;/p&gt;</description></item><item><title>63c322431711b</title><link>https://maymeow.blog/statuslog/63c322431711b/</link><pubDate>Sat, 14 Jan 2023 21:44:35 +0000</pubDate><guid>https://maymeow.blog/statuslog/63c322431711b/</guid><description>&lt;p&gt;Just example from CLI&lt;/p&gt;</description></item><item><title>63c321fb8392f</title><link>https://maymeow.blog/statuslog/63c321fb8392f/</link><pubDate>Sat, 14 Jan 2023 21:43:23 +0000</pubDate><guid>https://maymeow.blog/statuslog/63c321fb8392f/</guid><description>&lt;p&gt;Testing CLI no3&amp;hellip;&lt;/p&gt;</description></item><item><title>63c3213cb6f34</title><link>https://maymeow.blog/statuslog/63c3213cb6f34/</link><pubDate>Sat, 14 Jan 2023 21:40:12 +0000</pubDate><guid>https://maymeow.blog/statuslog/63c3213cb6f34/</guid><description>&lt;p&gt;Testing CLI no2&amp;hellip;&lt;/p&gt;</description></item><item><title>63c3210c8b270</title><link>https://maymeow.blog/statuslog/63c3210c8b270/</link><pubDate>Sat, 14 Jan 2023 21:39:24 +0000</pubDate><guid>https://maymeow.blog/statuslog/63c3210c8b270/</guid><description>&lt;p&gt;Testing CLI &amp;hellip;&lt;/p&gt;</description></item><item><title>63c24bc3de151</title><link>https://maymeow.blog/statuslog/63c24bc3de151/</link><pubDate>Sat, 14 Jan 2023 06:29:23 +0000</pubDate><guid>https://maymeow.blog/statuslog/63c24bc3de151/</guid><description>&lt;p&gt;If it&amp;rsquo;s true that the S23 ultra will look the same as its predecessor and still have curved screen edges&amp;hellip; Now I&amp;rsquo;m even more tempted to get ZFold 4 as I have a good deal for trade-in&lt;/p&gt;</description></item><item><title>63c24ab18011a</title><link>https://maymeow.blog/statuslog/63c24ab18011a/</link><pubDate>Sat, 14 Jan 2023 06:24:49 +0000</pubDate><guid>https://maymeow.blog/statuslog/63c24ab18011a/</guid><description>&lt;p&gt;TweetBot still not working&amp;hellip;&lt;/p&gt;</description></item><item><title>63bf197ec5cf0</title><link>https://maymeow.blog/statuslog/63bf197ec5cf0/</link><pubDate>Wed, 11 Jan 2023 20:18:06 +0000</pubDate><guid>https://maymeow.blog/statuslog/63bf197ec5cf0/</guid><description>&lt;p&gt;TweetBot gets new update&lt;/p&gt;</description></item><item><title>63bafa3c07fbe</title><link>https://maymeow.blog/statuslog/63bafa3c07fbe/</link><pubDate>Sun, 08 Jan 2023 17:15:40 +0000</pubDate><guid>https://maymeow.blog/statuslog/63bafa3c07fbe/</guid><description>&lt;p&gt;Today I moved with my side project again a little bit.&lt;/p&gt;</description></item><item><title>63baf542d0e6b</title><link>https://maymeow.blog/statuslog/63baf542d0e6b/</link><pubDate>Sun, 08 Jan 2023 16:54:26 +0000</pubDate><guid>https://maymeow.blog/statuslog/63baf542d0e6b/</guid><description>&lt;p&gt;I&amp;rsquo;m starting to love the new freeform app&lt;/p&gt;</description></item><item><title>63b754d393c95</title><link>https://maymeow.blog/statuslog/63b754d393c95/</link><pubDate>Thu, 05 Jan 2023 22:53:07 +0000</pubDate><guid>https://maymeow.blog/statuslog/63b754d393c95/</guid><description>&lt;p&gt;I just verified my own page with a blue checkmark, just because I can and it is funny.&lt;/p&gt;</description></item><item><title>63b71b6f28892</title><link>https://maymeow.blog/statuslog/63b71b6f28892/</link><pubDate>Thu, 05 Jan 2023 18:48:15 +0000</pubDate><guid>https://maymeow.blog/statuslog/63b71b6f28892/</guid><description>&lt;p&gt;Added shortcode to my page to show the last status from here&lt;/p&gt;</description></item><item><title>63b7135d0f95b</title><link>https://maymeow.blog/statuslog/63b7135d0f95b/</link><pubDate>Thu, 05 Jan 2023 18:13:49 +0000</pubDate><guid>https://maymeow.blog/statuslog/63b7135d0f95b/</guid><description>&lt;p&gt;I like Casper theme for Gost blog&amp;hellip;&lt;/p&gt;</description></item><item><title>63b0bef7e307b</title><link>https://maymeow.blog/statuslog/63b0bef7e307b/</link><pubDate>Sat, 31 Dec 2022 23:00:07 +0000</pubDate><guid>https://maymeow.blog/statuslog/63b0bef7e307b/</guid><description>&lt;p&gt;💜 Happy new Year!💜&lt;/p&gt;</description></item><item><title>63b04793b5139</title><link>https://maymeow.blog/statuslog/63b04793b5139/</link><pubDate>Sat, 31 Dec 2022 14:30:43 +0000</pubDate><guid>https://maymeow.blog/statuslog/63b04793b5139/</guid><description>&lt;p&gt;decided to add some time to my address&lt;/p&gt;</description></item><item><title>63af5e865c79f</title><link>https://maymeow.blog/statuslog/63af5e865c79f/</link><pubDate>Fri, 30 Dec 2022 21:56:22 +0000</pubDate><guid>https://maymeow.blog/statuslog/63af5e865c79f/</guid><description>&lt;p&gt;Where / How i can set the main weblog page?&lt;/p&gt;</description></item><item><title>63af58c1311a1</title><link>https://maymeow.blog/statuslog/63af58c1311a1/</link><pubDate>Fri, 30 Dec 2022 21:31:45 +0000</pubDate><guid>https://maymeow.blog/statuslog/63af58c1311a1/</guid><description>&lt;p&gt;found action with which you can update the status right from drafts on iOS&lt;/p&gt;</description></item><item><title>63af50e09857e</title><link>https://maymeow.blog/statuslog/63af50e09857e/</link><pubDate>Fri, 30 Dec 2022 20:58:08 +0000</pubDate><guid>https://maymeow.blog/statuslog/63af50e09857e/</guid><description>&lt;p&gt;Stack overflow Developer survey &lt;a href="https://survey.stackoverflow.co/2022/#technology"&gt;https://survey.stackoverflow.co/2022/#technology&lt;/a&gt;&lt;/p&gt;</description></item><item><title>63af4beca626e</title><link>https://maymeow.blog/statuslog/63af4beca626e/</link><pubDate>Fri, 30 Dec 2022 20:37:00 +0000</pubDate><guid>https://maymeow.blog/statuslog/63af4beca626e/</guid><description>&lt;p&gt;American dad 😁&lt;/p&gt;</description></item><item><title>63af156b54179</title><link>https://maymeow.blog/statuslog/63af156b54179/</link><pubDate>Fri, 30 Dec 2022 16:44:27 +0000</pubDate><guid>https://maymeow.blog/statuslog/63af156b54179/</guid><description>&lt;p&gt;Catchall email is not a good idea&amp;hellip;&lt;/p&gt;</description></item><item><title>63aee3931a8b8</title><link>https://maymeow.blog/statuslog/63aee3931a8b8/</link><pubDate>Fri, 30 Dec 2022 13:11:47 +0000</pubDate><guid>https://maymeow.blog/statuslog/63aee3931a8b8/</guid><description>&lt;p&gt;I got off work early today&lt;/p&gt;</description></item><item><title>63ae15758b84b</title><link>https://maymeow.blog/statuslog/63ae15758b84b/</link><pubDate>Thu, 29 Dec 2022 22:32:21 +0000</pubDate><guid>https://maymeow.blog/statuslog/63ae15758b84b/</guid><description>&lt;p&gt;Audiobook time&lt;/p&gt;</description></item><item><title>63ade59a84587</title><link>https://maymeow.blog/statuslog/63ade59a84587/</link><pubDate>Thu, 29 Dec 2022 19:08:10 +0000</pubDate><guid>https://maymeow.blog/statuslog/63ade59a84587/</guid><description>&lt;p&gt;I&amp;rsquo;m full&lt;/p&gt;</description></item><item><title>63ade10b6fafa</title><link>https://maymeow.blog/statuslog/63ade10b6fafa/</link><pubDate>Thu, 29 Dec 2022 18:48:43 +0000</pubDate><guid>https://maymeow.blog/statuslog/63ade10b6fafa/</guid><description>&lt;p&gt;new roadmap&amp;hellip;&lt;/p&gt;</description></item><item><title>63ac482e0e293</title><link>https://maymeow.blog/statuslog/63ac482e0e293/</link><pubDate>Wed, 28 Dec 2022 13:44:14 +0000</pubDate><guid>https://maymeow.blog/statuslog/63ac482e0e293/</guid><description>&lt;p&gt;Too much noise&amp;hellip;&lt;/p&gt;</description></item><item><title>63ab3d9ae1de8</title><link>https://maymeow.blog/statuslog/63ab3d9ae1de8/</link><pubDate>Tue, 27 Dec 2022 18:46:50 +0000</pubDate><guid>https://maymeow.blog/statuslog/63ab3d9ae1de8/</guid><description>&lt;p&gt;I get myself a binary watch face&lt;/p&gt;</description></item><item><title>63ab029c5d74c</title><link>https://maymeow.blog/statuslog/63ab029c5d74c/</link><pubDate>Tue, 27 Dec 2022 14:35:08 +0000</pubDate><guid>https://maymeow.blog/statuslog/63ab029c5d74c/</guid><description>&lt;p&gt;Playing around with &lt;a href="https://lando.dev"&gt;Lando&lt;/a&gt; &amp;hellip;&lt;/p&gt;</description></item><item><title>63aaac5d14b59</title><link>https://maymeow.blog/statuslog/63aaac5d14b59/</link><pubDate>Tue, 27 Dec 2022 08:27:09 +0000</pubDate><guid>https://maymeow.blog/statuslog/63aaac5d14b59/</guid><description>&lt;p&gt;off to work &amp;hellip;&lt;/p&gt;</description></item><item><title>63aa365f51f13</title><link>https://maymeow.blog/statuslog/63aa365f51f13/</link><pubDate>Tue, 27 Dec 2022 00:03:43 +0000</pubDate><guid>https://maymeow.blog/statuslog/63aa365f51f13/</guid><description>&lt;p&gt;Good night!&lt;/p&gt;</description></item><item><title>63a9ef4ff11f7</title><link>https://maymeow.blog/statuslog/63a9ef4ff11f7/</link><pubDate>Mon, 26 Dec 2022 19:00:31 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a9ef4ff11f7/</guid><description>&lt;p&gt;Movie time&lt;/p&gt;</description></item><item><title>63a9ce94933e4</title><link>https://maymeow.blog/statuslog/63a9ce94933e4/</link><pubDate>Mon, 26 Dec 2022 16:40:52 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a9ce94933e4/</guid><description>&lt;p&gt;Finally found how to use emojis with external keyboard on my iPad&lt;/p&gt;</description></item><item><title>63a9c8abe1acd</title><link>https://maymeow.blog/statuslog/63a9c8abe1acd/</link><pubDate>Mon, 26 Dec 2022 16:15:39 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a9c8abe1acd/</guid><description>&lt;p&gt;Enough coding for today&amp;hellip;&lt;/p&gt;</description></item><item><title>63a974766496e</title><link>https://maymeow.blog/statuslog/63a974766496e/</link><pubDate>Mon, 26 Dec 2022 10:16:22 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a974766496e/</guid><description>&lt;p&gt;Playing with the new translation feature on my mastodon instance.&lt;/p&gt;</description></item><item><title>63a8d0a0e703d</title><link>https://maymeow.blog/statuslog/63a8d0a0e703d/</link><pubDate>Sun, 25 Dec 2022 22:37:20 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a8d0a0e703d/</guid><description>&lt;p&gt;Safe mode&amp;hellip;&lt;/p&gt;</description></item><item><title>63a8bf0ec4caa</title><link>https://maymeow.blog/statuslog/63a8bf0ec4caa/</link><pubDate>Sun, 25 Dec 2022 21:22:22 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a8bf0ec4caa/</guid><description>&lt;p&gt;I like using Tweetbot but it looks like the company abandoned it.&lt;/p&gt;</description></item><item><title>63a852fc64155</title><link>https://maymeow.blog/statuslog/63a852fc64155/</link><pubDate>Sun, 25 Dec 2022 13:41:16 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a852fc64155/</guid><description>&lt;p&gt;Soul&lt;/p&gt;</description></item><item><title>63a7f90010040</title><link>https://maymeow.blog/statuslog/63a7f90010040/</link><pubDate>Sun, 25 Dec 2022 07:17:20 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a7f90010040/</guid><description>&lt;p&gt;What a foggy morning&amp;hellip;&lt;/p&gt;</description></item><item><title>63a7742ace930</title><link>https://maymeow.blog/statuslog/63a7742ace930/</link><pubDate>Sat, 24 Dec 2022 21:50:34 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a7742ace930/</guid><description>&lt;p&gt;I also shared iCloud link to my shortcut if you prefer this. You can get it free here: &lt;a href="https://ko-fi.com/s/8732fab7f4"&gt;https://ko-fi.com/s/8732fab7f4&lt;/a&gt; or you can simply download the shortcut file from the link before Enjoy!&lt;/p&gt;</description></item><item><title>63a6ebe39231d</title><link>https://maymeow.blog/statuslog/63a6ebe39231d/</link><pubDate>Sat, 24 Dec 2022 12:09:07 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a6ebe39231d/</guid><description>&lt;p&gt;Enjoy &lt;a href="https://maymeow.b-cdn.net/Status.lol.shortcut"&gt;https://maymeow.b-cdn.net/Status.lol.shortcut&lt;/a&gt;&lt;/p&gt;</description></item><item><title>63a6e47db841c</title><link>https://maymeow.blog/statuslog/63a6e47db841c/</link><pubDate>Sat, 24 Dec 2022 11:37:33 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a6e47db841c/</guid><description>&lt;p&gt;💕&lt;/p&gt;</description></item><item><title>63a6e36ad2e4f</title><link>https://maymeow.blog/statuslog/63a6e36ad2e4f/</link><pubDate>Sat, 24 Dec 2022 11:32:58 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a6e36ad2e4f/</guid><description>&lt;p&gt;Updated shortcut to load configuration from a file instead of hard typing variables&lt;/p&gt;</description></item><item><title>63a6e2f349af1</title><link>https://maymeow.blog/statuslog/63a6e2f349af1/</link><pubDate>Sat, 24 Dec 2022 11:30:59 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a6e2f349af1/</guid><description>&lt;p&gt;Hi&lt;/p&gt;</description></item><item><title>63a6d5f744237</title><link>https://maymeow.blog/statuslog/63a6d5f744237/</link><pubDate>Sat, 24 Dec 2022 10:35:35 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a6d5f744237/</guid><description>&lt;p&gt;Gifts wrapping&lt;/p&gt;</description></item><item><title>63a6a5ce6a818</title><link>https://maymeow.blog/statuslog/63a6a5ce6a818/</link><pubDate>Sat, 24 Dec 2022 07:10:06 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a6a5ce6a818/</guid><description>&lt;p&gt;Merry Christmas!&lt;/p&gt;</description></item><item><title>63a6258e95623</title><link>https://maymeow.blog/statuslog/63a6258e95623/</link><pubDate>Fri, 23 Dec 2022 22:02:54 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a6258e95623/</guid><description>&lt;p&gt;Time for Mistborn #audiobook&lt;/p&gt;</description></item><item><title>63a61d9b1a49f</title><link>https://maymeow.blog/statuslog/63a61d9b1a49f/</link><pubDate>Fri, 23 Dec 2022 21:28:59 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a61d9b1a49f/</guid><description>&lt;p&gt;I made a shortcut to update my status on omg.lol&lt;/p&gt;</description></item><item><title>63a61d3603f35</title><link>https://maymeow.blog/statuslog/63a61d3603f35/</link><pubDate>Fri, 23 Dec 2022 21:27:18 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a61d3603f35/</guid><description>&lt;p&gt;Another test&lt;/p&gt;</description></item><item><title>63a61cb447189</title><link>https://maymeow.blog/statuslog/63a61cb447189/</link><pubDate>Fri, 23 Dec 2022 21:25:08 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a61cb447189/</guid><description>&lt;p&gt;Test&lt;/p&gt;</description></item><item><title>63a61bfdc9436</title><link>https://maymeow.blog/statuslog/63a61bfdc9436/</link><pubDate>Fri, 23 Dec 2022 21:22:05 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a61bfdc9436/</guid><description>&lt;p&gt;It&amp;rsquo;s working on tablet&lt;/p&gt;</description></item><item><title>63a619af99cb5</title><link>https://maymeow.blog/statuslog/63a619af99cb5/</link><pubDate>Fri, 23 Dec 2022 21:12:15 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a619af99cb5/</guid><description>&lt;p&gt;Why I can&amp;rsquo;t show output from the contents of curl?&lt;/p&gt;</description></item><item><title>63a6162b0c425</title><link>https://maymeow.blog/statuslog/63a6162b0c425/</link><pubDate>Fri, 23 Dec 2022 20:57:15 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a6162b0c425/</guid><description>&lt;p&gt;Last one I promise&lt;/p&gt;</description></item><item><title>63a615f722c27</title><link>https://maymeow.blog/statuslog/63a615f722c27/</link><pubDate>Fri, 23 Dec 2022 20:56:23 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a615f722c27/</guid><description>&lt;p&gt;This is another one&lt;/p&gt;</description></item><item><title>63a614fcc42d4</title><link>https://maymeow.blog/statuslog/63a614fcc42d4/</link><pubDate>Fri, 23 Dec 2022 20:52:12 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a614fcc42d4/</guid><description>&lt;p&gt;Sent from Apple shortcuts&lt;/p&gt;</description></item><item><title>🔐 Using reCAPTCHA with JavaScript and PHP</title><link>https://maymeow.blog/posts/using-recaptcha-with-javascript-and-php/</link><pubDate>Fri, 23 Dec 2022 18:28:22 +0200</pubDate><guid>https://maymeow.blog/posts/using-recaptcha-with-javascript-and-php/</guid><description>&lt;p&gt;I had to update the page of one of my clients to use some verification before guests can submit the form because they receive many unwanted messages from there. One of the ways is using reCAPTCHA and making guests solve puzzles before they can submit the form.&lt;/p&gt;
&lt;h2 id="prepare"&gt;Prepare&lt;/h2&gt;
&lt;p&gt;To implement reCAPTCHA on your PHP page, you will first need to sign up for an API key pair on the &lt;a href="https://developers.google.com/recaptcha/"&gt;reCAPTCHA website&lt;/a&gt;. Once you have your API key pair, you can add the following code to your PHP page to display the reCAPTCHA widget:&lt;/p&gt;</description></item><item><title>63a5b376792e5</title><link>https://maymeow.blog/statuslog/63a5b376792e5/</link><pubDate>Fri, 23 Dec 2022 13:56:06 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a5b376792e5/</guid><description>&lt;p&gt;&amp;hellip; aaaand it&amp;rsquo;s finished.&lt;/p&gt;</description></item><item><title>63a583cb62e9f</title><link>https://maymeow.blog/statuslog/63a583cb62e9f/</link><pubDate>Fri, 23 Dec 2022 10:32:43 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a583cb62e9f/</guid><description>&lt;p&gt;Finishing project for one of my clients &amp;hellip;&lt;/p&gt;</description></item><item><title>63a5817d7cfbe</title><link>https://maymeow.blog/statuslog/63a5817d7cfbe/</link><pubDate>Fri, 23 Dec 2022 10:22:53 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a5817d7cfbe/</guid><description>&lt;p&gt;What do you guys posting on your statuslog page? 🤔&lt;/p&gt;</description></item><item><title>63a53d3b6f6d3</title><link>https://maymeow.blog/statuslog/63a53d3b6f6d3/</link><pubDate>Fri, 23 Dec 2022 05:31:39 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a53d3b6f6d3/</guid><description>&lt;p&gt;One blog I&amp;rsquo;m following in RSS just switched to status on omg.lol. And now my RSS reader seems to load the status of every person that uses it.&lt;/p&gt;</description></item><item><title>63a03f320b991</title><link>https://maymeow.blog/statuslog/63a03f320b991/</link><pubDate>Mon, 19 Dec 2022 10:38:42 +0000</pubDate><guid>https://maymeow.blog/statuslog/63a03f320b991/</guid><description>&lt;p&gt;Hello World!&lt;/p&gt;</description></item><item><title>👷 My Workflow</title><link>https://maymeow.blog/posts/my-workflow/</link><pubDate>Sun, 04 Dec 2022 16:14:21 +0100</pubDate><guid>https://maymeow.blog/posts/my-workflow/</guid><description>&lt;p&gt;Hey, guys! Today I will show you how my workflow looks like. This is the latest version, I changed it a few times before. If you read my blog, you know that before I hosted a &lt;a href="https://www.maymeow.com/series/selfhosted/"&gt;lot of things&lt;/a&gt; at my home on my server. Gradually I moved things to the cloud and now I&amp;rsquo;m trying to simplify my workflow. It&amp;rsquo;s nice to manage your stuff yourself, but it takes a lot of time. Let&amp;rsquo;s take a look at how I managed to do it.&lt;/p&gt;</description></item><item><title>⚙️ Manage multiple git accounts</title><link>https://maymeow.blog/posts/manage-multiple-git-accounts/</link><pubDate>Mon, 24 Oct 2022 21:17:40 +0200</pubDate><guid>https://maymeow.blog/posts/manage-multiple-git-accounts/</guid><description>&lt;p&gt;This is an instruction only for Linux, I use this procedure also on Windows but this one is not described yet. I plan to add it as soon as I write it.&lt;/p&gt;
&lt;p&gt;Hi! Do you have multiple git accounts or you just using one? I have multiple and everytime I reinstall my system I trying to find how I
configured it before&amp;hellip; (i finally wrote this together here).&lt;/p&gt;
&lt;p&gt;Im using multiple git config file rather than multiple host names (i don&amp;rsquo;t like to have somethink like &lt;code&gt;git@github-work&lt;/code&gt; or &lt;code&gt;git@github-personal&lt;/code&gt;).&lt;/p&gt;</description></item><item><title>⚙️ Sending Message to Mattermost With PHP and Github Actions</title><link>https://maymeow.blog/posts/sending-message-to-mattermost-with-php-and-github-actions/</link><pubDate>Thu, 04 Aug 2022 07:32:31 +0200</pubDate><guid>https://maymeow.blog/posts/sending-message-to-mattermost-with-php-and-github-actions/</guid><description>&lt;p&gt;Today I show you how you can send notifications to Mattermost with PHP and Github Actions. There are some implementations on Github Marketplace but nothing was made with PHP, there was Javascript, Go, or Python. But PHP can be used to create command-line utilities and it&amp;rsquo;s very easy. Don&amp;rsquo;t trust me? Come I&amp;rsquo;ll show you.&lt;/p&gt;
&lt;p&gt;Photo by &lt;!-- raw HTML omitted --&gt;Daria Nepriakhina 🇺🇦&lt;!-- raw HTML omitted --&gt; on &lt;!-- raw HTML omitted --&gt;Unsplash&lt;!-- raw HTML omitted --&gt;&lt;/p&gt;</description></item><item><title>🔢 Introduction to PHP Enums</title><link>https://maymeow.blog/posts/introduction-to-php-enums/</link><pubDate>Sun, 03 Jul 2022 18:14:46 +0900</pubDate><guid>https://maymeow.blog/posts/introduction-to-php-enums/</guid><description>&lt;p&gt;PHP &lt;code&gt;8.1&lt;/code&gt; finally brings enums which can be know from other programming languages like &lt;code&gt;C#&lt;/code&gt;. It is in my opinion one of best things which came with new php version.&lt;/p&gt;</description></item><item><title>🔐 Use 2FA Everywhere</title><link>https://maymeow.blog/posts/use-2fa-everywhere/</link><pubDate>Mon, 25 Apr 2022 09:39:40 +0200</pubDate><guid>https://maymeow.blog/posts/use-2fa-everywhere/</guid><description>&lt;p&gt;Yes! Use 2 factor authentication (2FA) everywhere and everytime it is possible. Novadays it is pretty common and almost all servicess to allow you to use some kind of 2FA.&lt;/p&gt;
&lt;h2 id="what-is-2fa"&gt;What is 2FA?&lt;/h2&gt;
&lt;p&gt;2FA gives you to your service identification (e.g. emal/username &amp;amp; password) another layer to verify your identity. After logging with your username and password site will ask you to enter one time passowrd or use hardware key (its based on type 2FA you using).&lt;/p&gt;</description></item><item><title>📦 Uploading Files With Cake Php and Fileupload Plugin</title><link>https://maymeow.blog/programming/uploading-files-with-cake-php-and-fileupload-plugin/</link><pubDate>Sun, 24 Oct 2021 09:09:36 +0200</pubDate><guid>https://maymeow.blog/programming/uploading-files-with-cake-php-and-fileupload-plugin/</guid><description>&lt;p&gt;I just release new version of my &lt;a href="https://github.com/MayMeow/cakephp-fileupload"&gt;FileUpload&lt;/a&gt; plugin for &lt;a href="https://cakephp.org/"&gt;CakePHP&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It will make uploading and downloading files really easi. Want to see? Continue reading.&lt;/p&gt;
&lt;h2 id="prerequisites"&gt;Prerequisites&lt;/h2&gt;
&lt;p&gt;If you have existing application you can skip right to &lt;strong&gt;Create fileupload app&lt;/strong&gt;.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;CakePHP 4&lt;/li&gt;
&lt;li&gt;Https server&lt;/li&gt;
&lt;li&gt;PHP 7.x or 8&lt;/li&gt;
&lt;li&gt;php extensions mgstring, intl, SimpleXML, PDO&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;For more informations check &lt;a href="https://book.cakephp.org/4/en/installation.html"&gt;CakePHP Installation&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;OR&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Docker&lt;/li&gt;
&lt;li&gt;Docker-compose&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Right, only those two. I will show you ho to do it in this tutorial.&lt;/p&gt;</description></item><item><title>Add VPN With Powershell</title><link>https://maymeow.blog/posts/add-vpn-with-powershell/</link><pubDate>Tue, 05 Oct 2021 14:07:42 +0200</pubDate><guid>https://maymeow.blog/posts/add-vpn-with-powershell/</guid><description>&lt;p&gt;Ok when you need to configure vpn on more PC is easier to do this with powershell than with mouse clicking &amp;hellip; Here it is example for L2TP oveer IPSec.&lt;/p&gt;</description></item><item><title>Sending Strings as Files with CakePHP server response</title><link>https://maymeow.blog/posts/sending-string-as-files-with-cakephp-server-response/</link><pubDate>Mon, 20 Sep 2021 14:55:39 +0200</pubDate><guid>https://maymeow.blog/posts/sending-string-as-files-with-cakephp-server-response/</guid><description>&lt;p&gt;With CakePHP it is quite easy to send any string as a subfile. As an example below is the creation of an ICS subfile (for a calendar invites)&lt;/p&gt;</description></item><item><title>My Selfhosting Workflow</title><link>https://maymeow.blog/posts/my-selfhosting-workflow/</link><pubDate>Mon, 13 Sep 2021 11:14:48 +0200</pubDate><guid>https://maymeow.blog/posts/my-selfhosting-workflow/</guid><description>&lt;p&gt;Hi there! I have here another update on selfhosting. I hosting all services with docker and using &lt;code&gt;docker-compose.yml&lt;/code&gt; file to deploy services. I wrote about it more in &lt;a href="https://www.maymeow.me/en/posts/2021/09/notes-on-selfhosted-services/"&gt;Notes on Selfhosted Services&lt;/a&gt;. Ok, now i have one repository for configuration and each application has it own repository where I have source codes and where i building image. All my sorce codes are stored on GitLab and all jobs runs on Gitlab ci after pushing to repository.&lt;/p&gt;</description></item><item><title>Notes on Selfhosted Services</title><link>https://maymeow.blog/posts/notes-on-selfhosted-services/</link><pubDate>Thu, 02 Sep 2021 22:33:12 +0200</pubDate><guid>https://maymeow.blog/posts/notes-on-selfhosted-services/</guid><description>&lt;p&gt;I started selfhosing with one service (Gitlab) 5 years ago, but now i have more services on totally 1 dedicated server and few VPSs in cloud.&lt;/p&gt;
&lt;h2 id="server-configuration-storage"&gt;Server configuration storage&lt;/h2&gt;
&lt;p&gt;First i had each service per git repository but was hard to manage if you have each service in different folder so i moved the to one big repository. My directory structure looks as follows&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-text" data-lang="text"&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;1&lt;/span&gt;&lt;span class="cl"&gt;application
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;2&lt;/span&gt;&lt;span class="cl"&gt;- application name
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;3&lt;/span&gt;&lt;span class="cl"&gt;-- service_vars
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;4&lt;/span&gt;&lt;span class="cl"&gt;-- service_config
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;5&lt;/span&gt;&lt;span class="cl"&gt;-- docker.compose.yml
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;6&lt;/span&gt;&lt;span class="cl"&gt;...
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;7&lt;/span&gt;&lt;span class="cl"&gt;global_vars
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;8&lt;/span&gt;&lt;span class="cl"&gt;scripts
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Each application has it&amp;rsquo;s own subfolder whe are stored it&amp;rsquo;s configuration files and environmental variables.&lt;/p&gt;</description></item><item><title>Installing Cloud Hosted Router on Cloud</title><link>https://maymeow.blog/posts/installing-cloud-hosted-router-on-cloud/</link><pubDate>Sun, 22 Aug 2021 22:13:44 +0200</pubDate><guid>https://maymeow.blog/posts/installing-cloud-hosted-router-on-cloud/</guid><description>&lt;p&gt;I have part of my self-hosted services on cloud and part at my home, ia have solved connection between them with OpenVPN sever installed on cloud machine and Raspbery Pi 2 as my client. If you are familiar with MikroTik, you can instal Cloud hosted router on your provider.&lt;/p&gt;
&lt;h2 id="installation"&gt;Installation&lt;/h2&gt;
&lt;p&gt;This first part can be different by cloud service provider. I&amp;rsquo;m installing this on Hetzner cloud.&lt;/p&gt;
&lt;p&gt;Create new cloud machine, go to settings and enable rescure system.&lt;/p&gt;</description></item><item><title>Contact</title><link>https://maymeow.blog/contact/</link><pubDate>Fri, 20 Aug 2021 13:11:42 +0000</pubDate><guid>https://maymeow.blog/contact/</guid><description>&lt;ul&gt;
&lt;li&gt;Mastodon &lt;a href="https://social.lol/@may"&gt;@may&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Bluesky &lt;a href="https://bsky.app/profile/maymeow.me"&gt;@maymeow.me&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Letterbird &lt;a href="https://letterbird.co/may"&gt;may&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>How to Install Virtualbox on Elementary OS Odin</title><link>https://maymeow.blog/posts/how-to-install-virtualbox-on-elementary-os-odin/</link><pubDate>Wed, 18 Aug 2021 22:13:38 +0000</pubDate><guid>https://maymeow.blog/posts/how-to-install-virtualbox-on-elementary-os-odin/</guid><description>&lt;p&gt;Is here is the guide.&lt;/p&gt;
&lt;p&gt;FIrst of all go to &lt;a href="https://virtualbox.org"&gt;Virtualbox&lt;/a&gt; site. Click downloads and download &lt;code&gt;.deb&lt;/code&gt;. (as you know Elementary OS is ubuntu based system).&lt;/p&gt;
&lt;p&gt;Next step is open terminal and install virtual box as follows&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;1&lt;/span&gt;&lt;span class="cl"&gt;&lt;span class="nb"&gt;cd&lt;/span&gt; Downloads
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;2&lt;/span&gt;&lt;span class="cl"&gt;sudo apt install ./virtualbox-6.1_6.1.26-145957&lt;span class="se"&gt;\~&lt;/span&gt;Ubuntu&lt;span class="se"&gt;\~&lt;/span&gt;eoan_amd64.deb &lt;span class="c1"&gt;# use filename of your downloaded deb file&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Done? No. I go into errors about that the my OS was not configured to build headers so i had to installed them manually:&lt;/p&gt;</description></item><item><title>Sending Exit Code Over Curl</title><link>https://maymeow.blog/posts/sending-exit-code-over-curl/</link><pubDate>Tue, 27 Jul 2021 10:56:16 +0000</pubDate><guid>https://maymeow.blog/posts/sending-exit-code-over-curl/</guid><description>&lt;p&gt;Hi everyone! I created few scripts to backum my server&amp;rsquo;s data to my S3 storage and wanted to be notified when backup fails. Until now I used Zabbix with zabix-sender but I found maybe better server monitoring for me: &lt;a href="https://www.netdata.cloud/"&gt;Netdata&lt;/a&gt;. So when I dont use zabbix anymore I needed another solution and found one. You can post status code with curl to any api (or you can create easy script for example in the GO to send data to the api, this is just easier and faster solution for me now.)&lt;/p&gt;</description></item><item><title>Docker Volume on NFS?</title><link>https://maymeow.blog/posts/docker-volume-on-nfs/</link><pubDate>Tue, 20 Jul 2021 13:09:45 +0000</pubDate><guid>https://maymeow.blog/posts/docker-volume-on-nfs/</guid><description>&lt;p&gt;No Problem. Did you know you can have your volumes on nfs server? Yes i know you can mount NFS folder on server and then on point docker volume to this folder, but i will show you
how to mount volume right with docker. Btw you can read more about docker storage on &lt;a href="https://docs.docker.com/storage/"&gt;official docker documentation&lt;/a&gt;. As prerequisity you will need to have installed NFS server.&lt;/p&gt;
&lt;p&gt;Now you can run docker image with volume pointed to your nfs server&lt;/p&gt;</description></item><item><title>Moving to Github</title><link>https://maymeow.blog/posts/moving-to-github/</link><pubDate>Thu, 24 Jun 2021 20:55:08 +0000</pubDate><guid>https://maymeow.blog/posts/moving-to-github/</guid><description>&lt;p&gt;Hi! Yes, ts true i started to slowly move my repositories to Github. I still selfhosting Gitlab but i thought about switching back if you want know more you can read &lt;a href="https://www.themaymeow.com/en/posts/2021/03/why-i-am-thinking-about-stop-selfhosting-gitlab/"&gt;Why I Am Thinking About Stop Selfhosting Gitlab&lt;/a&gt;. Ok i was skeptical when Microsoft aquired Github but now i thinks it was best thing that could happen to Github. They Adding new features like actions, codespaces, packages, docker image hosting. They made subscription cheaper, added private repositories for teams for free and many more.&lt;/p&gt;</description></item><item><title>How to Host Static Websites With Amazon S3 and Cloudflare</title><link>https://maymeow.blog/posts/how-to-host-static-websites-with-amazon-s3-and-cloudflare/</link><pubDate>Mon, 08 Mar 2021 19:55:37 +0100</pubDate><guid>https://maymeow.blog/posts/how-to-host-static-websites-with-amazon-s3-and-cloudflare/</guid><description>&lt;p&gt;Hi! I moved my website to s3 + cloudflare for SSL certificate. Do you want to know how? I will show you:&lt;/p&gt;
&lt;p&gt;First you will need to create new storage so Login to your AWS console as admin.&lt;/p&gt;
&lt;h2 id="create-bucket"&gt;Create Bucket&lt;/h2&gt;
&lt;p&gt;Click on services and then select &lt;strong&gt;S3&lt;/strong&gt; from storage section.&lt;/p&gt;
&lt;p&gt;&lt;img src="https://maymeow.blog/posts/how-to-host-static-websites-with-amazon-s3-and-cloudflare/2021-03-08-19-59-51_hu_f3d6b7d5c6ebbae9.webp"&gt;&lt;/p&gt;
&lt;p&gt;On page click on Create Bucket in right corner and:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Change Bucket name in my case &lt;code&gt;www.themaymeow.com&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Choose AWS Region&lt;/li&gt;
&lt;li&gt;Uncheck &lt;strong&gt;Block all public access&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;Keep other unchanged&lt;/li&gt;
&lt;li&gt;Click &lt;strong&gt;Create Bucket&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="update-bucket-properties"&gt;Update bucket properties&lt;/h2&gt;
&lt;p&gt;You will see bucket lists so select you bucket and from bucket page select &lt;strong&gt;Properties tab&lt;/strong&gt;&lt;/p&gt;</description></item><item><title>Blogroll</title><link>https://maymeow.blog/notes/blogroll/</link><pubDate>Sun, 07 Mar 2021 11:15:51 +0100</pubDate><guid>https://maymeow.blog/notes/blogroll/</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.garron.blog/posts/"&gt;Guillermo Garron&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://zerokspot.com/"&gt;Horst Gutmann&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://rusingh.com/"&gt;Ru Singh&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>🐋 How to Run Wordpress in Docker</title><link>https://maymeow.blog/posts/how-to-run-wordpress-in-docker/</link><pubDate>Mon, 01 Mar 2021 19:01:12 +0100</pubDate><guid>https://maymeow.blog/posts/how-to-run-wordpress-in-docker/</guid><description>&lt;p&gt;I&amp;rsquo;m not a very big fan of WordPress. In my honest opinion main problem (and benefit?) is that WordPress has many plugins.It is like two sided sword where on one side you have plugins for almost everything and on other side is quality of those plugins. Some plugin are good supported by their creators to ensure copatibility with latest version of Wordpress and sometimes just one plugin on your page blocking you from upgrade to a new version because the developer not updating it anymore.&lt;/p&gt;</description></item><item><title>How to Install and Configure Samba</title><link>https://maymeow.blog/posts/how-to-install-and-configure-samba/</link><pubDate>Wed, 24 Feb 2021 12:26:11 +0200</pubDate><guid>https://maymeow.blog/posts/how-to-install-and-configure-samba/</guid><description>&lt;p&gt;H1, let&amp;rsquo;s see what you need to do when you want share files between windows and linux. There are mroe ways how you can do it, and one is to install and configure samba service on your server. After successfull installink you can conect trough file explorer to &lt;code&gt;\\server-ip\path\to\folder&lt;/code&gt; or you can map this path to letter like disk for example &lt;code&gt;S:&lt;/code&gt;. So let&amp;rsquo;s start:&lt;/p&gt;
&lt;h2 id="install-samba"&gt;Install samba&lt;/h2&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;1&lt;/span&gt;&lt;span class="cl"&gt;sudo apt update
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;2&lt;/span&gt;&lt;span class="cl"&gt;sudo apt install samba
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;3&lt;/span&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;4&lt;/span&gt;&lt;span class="cl"&gt;&lt;span class="c1"&gt;# check status&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;5&lt;/span&gt;&lt;span class="cl"&gt;sudo systemctl status smbd
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id="configure-firewall-optional"&gt;Configure firewall (optional)&lt;/h2&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;1&lt;/span&gt;&lt;span class="cl"&gt;sudo ufw allow &lt;span class="s1"&gt;&amp;#39;Samba&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id="create-backup-of-configuration-files"&gt;Create Backup of configuration files&lt;/h2&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;1&lt;/span&gt;&lt;span class="cl"&gt;sudo cp /etc/samba/smb.conf&lt;span class="o"&gt;{&lt;/span&gt;,.backup&lt;span class="o"&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id="configuration"&gt;Configuration&lt;/h2&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;1&lt;/span&gt;&lt;span class="cl"&gt;sudo nano /etc/samba/smb.conf
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Defailt values&lt;/p&gt;</description></item><item><title>Xfce Terminal Color Emoji</title><link>https://maymeow.blog/posts/xfce-terminal-color-emoji/</link><pubDate>Sun, 21 Feb 2021 13:18:48 +0100</pubDate><guid>https://maymeow.blog/posts/xfce-terminal-color-emoji/</guid><description>&lt;p&gt;If you have missing emojis in XFCE as i had terminal following informations are for you. I found this on manjaro related forum but it worked for me in my Endeavour OS as well.&lt;/p&gt;</description></item><item><title>Get a Rating With Traefik SSL</title><link>https://maymeow.blog/posts/get-a-rating-with-traefik-ssl/</link><pubDate>Thu, 04 Feb 2021 14:08:41 +0100</pubDate><guid>https://maymeow.blog/posts/get-a-rating-with-traefik-ssl/</guid><description>&lt;p&gt;Traefik has enabled (I don&amp;rsquo;t know why) TLS &amp;lt; 1.2 by default.&lt;/p&gt;</description></item><item><title>Note on OpenVPN Routing</title><link>https://maymeow.blog/posts/note-on-openvpn-routing/</link><pubDate>Mon, 18 Jan 2021 10:43:08 +0100</pubDate><guid>https://maymeow.blog/posts/note-on-openvpn-routing/</guid><description>&lt;p&gt;Hi!. This one will be short. I should have created routing to my server from internet over OpenVPN. Problem was not with forwarding on itself, you can
find a lot of tutorials on internet and basicaly you just need to follow them. Problem for me was that i have my server in clients network.&lt;/p&gt;</description></item><item><title>Consume Api With GO</title><link>https://maymeow.blog/posts/consume-api-with-go/</link><pubDate>Wed, 09 Dec 2020 13:23:40 +0100</pubDate><guid>https://maymeow.blog/posts/consume-api-with-go/</guid><description>&lt;p&gt;A few days ago I have to look at consuming API with GO from Ghost so here is what I learnt.&lt;/p&gt;
&lt;p&gt;A very simple example of how to consume API and print it as text to console. It&amp;rsquo;s not much but it&amp;rsquo;s good to start.&lt;/p&gt;</description></item><item><title>🌈 Php Color Conversion From Hex to Rgb and Back</title><link>https://maymeow.blog/posts/php-color-conversion-from-hex-to-rgb-and-back/</link><pubDate>Tue, 01 Dec 2020 20:24:37 +0100</pubDate><guid>https://maymeow.blog/posts/php-color-conversion-from-hex-to-rgb-and-back/</guid><description>&lt;p&gt;Following Color class will allow you to convert colors from RGB to hex and back&lt;/p&gt;</description></item><item><title>Create API With CakePHP</title><link>https://maymeow.blog/posts/create-api-with-cakephp/</link><pubDate>Fri, 25 Sep 2020 10:02:54 +0200</pubDate><guid>https://maymeow.blog/posts/create-api-with-cakephp/</guid><description>&lt;p&gt;&lt;img alt="Alt Text" src="https://www.themaymeow.com/img/joey-kyber-45FJgZMXCK8-unsplash.jpg"&gt;&lt;/p&gt;
&lt;p&gt;Before created API with prefixes. So I had API in the controller folder with everything else but when you have many controllers it can be hard to navigate between them. So I decided to move all API controllers to a new plugin that I called Api (the similarity of the names is purely random). And the second good thing on this is that you can have easily versions of your API. So here I using prefixes for API versioning (V1, V2 &amp;hellip;).&lt;/p&gt;</description></item><item><title>Static Sites With Minio and S3www</title><link>https://maymeow.blog/posts/static-sites-with-minio-and-s3www/</link><pubDate>Wed, 19 Aug 2020 07:02:56 +0200</pubDate><guid>https://maymeow.blog/posts/static-sites-with-minio-and-s3www/</guid><description>&lt;p&gt;Hi! If you read my last post you know how to host your static pages on Azure. I know there are some of you who want opnsource solutions or want to host on your own server / vps by themself. There is a solution - did you heard about &lt;a href="https://min.io/"&gt;Minio&lt;/a&gt; and &lt;a href="https://github.com/harshavardhana/s3www"&gt;s3www&lt;/a&gt;? Minio is object storage compatibile with s3 and it&amp;rsquo;s 100% open source, s3www is opensouce software that can serve pages from compatibile s3 storage and it&amp;rsquo;s &amp;ldquo;Let&amp;rsquo;s Encrypt ready&amp;rdquo;. Anyway i dont use lets encrypt on s3www because both of them are don&amp;rsquo;t resource greedy so you can host more things on one server (i tried on $5 droplet gitea, s3, wikijs, drone, &amp;hellip;), so i using &lt;a href="https://docs.traefik.io/v2.2/"&gt;Traefik&lt;/a&gt; which can automatically create let&amp;rsquo;s encrypt certificates for all your services.&lt;/p&gt;</description></item><item><title>Quick Note on Minio Users</title><link>https://maymeow.blog/posts/quick-note-on-minio-users/</link><pubDate>Wed, 19 Aug 2020 06:12:30 +0200</pubDate><guid>https://maymeow.blog/posts/quick-note-on-minio-users/</guid><description>&lt;p&gt;Hi! I want to show you how you can add new user on your minio server and how you can assign him access rights to selected folders by creating policy.&lt;/p&gt;
&lt;p&gt;Create user&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;1&lt;/span&gt;&lt;span class="cl"&gt;mc admin user add mystorage &amp;lt;NEW-USER-ACCESS-KEY&amp;gt; &amp;lt;NEW-USER-SECRET-KEY&amp;gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;&lt;em&gt;New users dont have any access on server, You can just login so you will need to setup policy and assign it to newly created user&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Create Bucket&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;1&lt;/span&gt;&lt;span class="cl"&gt;mc mb mystorage/my-site
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Create policy.&lt;/p&gt;</description></item><item><title>Update User Guid to Match Existing User in Microsoft 365 Azure Ad</title><link>https://maymeow.blog/posts/update-user-guid-to-match-existing-user-in-microsoft-365-azure-ad/</link><pubDate>Sun, 16 Aug 2020 14:54:00 +0200</pubDate><guid>https://maymeow.blog/posts/update-user-guid-to-match-existing-user-in-microsoft-365-azure-ad/</guid><description>&lt;p&gt;Let&amp;rsquo;s see what to do when azure ADSync synchronize you on Premise AD user to azure to &lt;code&gt;@domain.onmicrosoft.com&lt;/code&gt;. In most cases it was done when i have already existing user &lt;code&gt;username@mydomain.tld&lt;/code&gt;. Fortunately this is fixable problem. So what to do?&lt;/p&gt;
&lt;p&gt;First of all you will need to find ObjectGUID of users which you want update. This can be retrieved form you local AD. But not that one you can find in MMC if you check users atribute. This format is not accepted with Azure AD, so there is another way to obtain it. We use tool called &lt;strong&gt;LDIFDE&lt;/strong&gt;.&lt;/p&gt;</description></item><item><title>Deploy Your Site to Azure with GitLab</title><link>https://maymeow.blog/posts/deploy-your-site-on-azure-with-gitlab/</link><pubDate>Thu, 13 Aug 2020 10:38:25 +0200</pubDate><guid>https://maymeow.blog/posts/deploy-your-site-on-azure-with-gitlab/</guid><description>&lt;p&gt;👋 Hi! I wanted to host this site on azure blob storage and I found this solution. It&amp;rsquo;s created with Hugo. I&amp;rsquo;m using Gitlab CI to deploy it to the server.&lt;/p&gt;
&lt;h2 id="-configure-static-site-hosting-on-azure"&gt;🌊 Configure static site hosting on azure&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;So First thing you need is to create an Azure account. When you are done then go to &lt;a href="https://portal.azure.com/"&gt;Azure Portal&lt;/a&gt;, and create the storage account&lt;/li&gt;
&lt;li&gt;Locate your storage account&lt;/li&gt;
&lt;li&gt;On the menu pane (left) find &amp;ldquo;Static website&amp;rdquo; and select &lt;strong&gt;Enabled&lt;/strong&gt; to enable it.&lt;/li&gt;
&lt;li&gt;Configure paths for &lt;strong&gt;Index document&lt;/strong&gt; for. example &lt;code&gt;index.html&lt;/code&gt; and for &lt;strong&gt;Error document&lt;/strong&gt; &lt;code&gt;404.html&lt;/code&gt;. Click &lt;strong&gt;Save&lt;/strong&gt;, that&amp;rsquo;s it, you have configured your Azure storage to server static websites.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id="-custom-website-address"&gt;🕸 Custom Website address&lt;/h2&gt;
&lt;p&gt;The next thing you will need is to configure CNAME records in case you want to use your domain. 💡 Azure will serve your page under HTTP, but I wanted to use HTTPS so I using Cloudflare DNS which proxying data to azure blob storage. In this case, you need to verify the domain indirectly (not proxied). So Let,s create 2 new CNAME records.&lt;/p&gt;</description></item><item><title>Settig Up SSH Keys for Ubuntu</title><link>https://maymeow.blog/posts/settig-up-ssh-keys-for-ubuntu/</link><pubDate>Fri, 31 Jul 2020 16:09:08 +0200</pubDate><guid>https://maymeow.blog/posts/settig-up-ssh-keys-for-ubuntu/</guid><description>&lt;p&gt;SSH is a protocol that users/admins can use to communicate with their Linux servers. In &lt;a href="https://maymeow.blog/posts/2020/07/initial-server-setup-on-cloud-services/"&gt;this post&lt;/a&gt; we created an initial setup for the server and you can try how to connect to the server over SSH. We have used a username and password. Now I show you how to connect to the server without a password&lt;/p&gt;
&lt;p&gt;Remember - the password you &lt;strong&gt;will need for running Sudo commands&lt;/strong&gt; if you are a regular user.&lt;/p&gt;</description></item><item><title>Initial Server Setup on Cloud Services</title><link>https://maymeow.blog/posts/initial-server-setup-foc-clouds/</link><pubDate>Fri, 31 Jul 2020 15:32:58 +0200</pubDate><guid>https://maymeow.blog/posts/initial-server-setup-foc-clouds/</guid><description>&lt;p&gt;When you installing linux server to you computer you will create new user trough instll wizard but most cloud (if not all) will create only root user which have all rights to everything on your server.&lt;/p&gt;</description></item><item><title>Hello World</title><link>https://maymeow.blog/posts/hello-world/</link><pubDate>Fri, 29 May 2020 16:03:51 +0200</pubDate><guid>https://maymeow.blog/posts/hello-world/</guid><description>&lt;p&gt;This si first post on page. This page is made by hugo with Gitlab-CI, ill wrtie more about it in future posts.&lt;/p&gt;</description></item><item><title>About Me</title><link>https://maymeow.blog/about/</link><pubDate>Fri, 29 May 2020 12:02:27 +0200</pubDate><guid>https://maymeow.blog/about/</guid><description>&lt;p&gt;ヽ｀、ヽ｀｀、ヽ｀ヽ｀、 、ヽ ｀ヽ 、ヽ｀🌙｀ヽヽ｀ヽ、ヽ｀ヽ｀、ヽ｀｀、ヽ 、｀｀、 ｀、ヽ｀ 、｀ ヽ｀ヽ、ヽ ｀、ヽ｀｀、ヽ、｀｀、｀、ヽ｀｀、 、ヽヽ、｀｀、｀｀、、ヽヽ、｀｀、 、 ヽ｀、 ヽ｀ヽ｀、 🚗ヽ｀ヽ｀、、ヽ ｀ヽ 、 ヽヽ 、ヽ ヽ 、ヽ ヽ • yunyun&lt;/p&gt;
&lt;h1 id="_-whoami"&gt;&lt;code&gt;&amp;gt;_ whoami&lt;/code&gt;&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;MayMeow&lt;/strong&gt; is my pseudonym&lt;sup id="fnref:1"&gt;&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref"&gt;1&lt;/a&gt;&lt;/sup&gt; for privacy reasons. Thank you for respecting this. ❤️&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;ℹ️ In short: When I&amp;rsquo;m not managing infrastructure or analyzing security incidents, I explore creative AI art and character design under that persona.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2 id="-name-origin"&gt;🌙 Name origin&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;May Meow&lt;/strong&gt;: My long-time in-game avatar. I’ve gone through multiple names, but I always find my way back to this one.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Amane Yuna&lt;/strong&gt;: The identity that gave &amp;ldquo;May Meow&amp;rdquo; a real name, evolving it from just a handle into a true persona. &lt;a href="https://maymeow.blog/character-profile/"&gt;Character profile&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Mio&lt;/strong&gt;: Inspired by Mio - a catgirl from &lt;a href="https://en.wikipedia.org/wiki/Xenoblade_Chronicles"&gt;Xenoblade Chronicles&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Luna&lt;/strong&gt; (ルナ, 루나): Inspired by Sailor Moon &lt;a href="https://sailormoon.fandom.com/wiki/Luna_(anime)"&gt;Luna&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="-contact"&gt;📫 Contact&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Mastodon &lt;a href="https://social.lol/@may"&gt;@may&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Bluesky &lt;a href="https://bsky.app/profile/maymeow.me"&gt;@maymeow.me&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Letterbird &lt;a href="https://letterbird.co/may"&gt;may&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="-devices"&gt;🖥️ Devices&lt;/h2&gt;
&lt;h3 id="smartphone"&gt;Smartphone&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Samsung S24 Ultra&lt;/li&gt;
&lt;li&gt;iPhone 16 Pro MAX&lt;/li&gt;
&lt;li&gt;iPhone 15&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="desktop"&gt;Desktop&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Apple Mac Mini 16G&lt;/li&gt;
&lt;li&gt;Windows PC, Ultra 7 265K, 64G&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="laptop"&gt;Laptop&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Lenovo 530S 14ARR&lt;/li&gt;
&lt;li&gt;Apple MacBook Neo&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="tablet"&gt;Tablet&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Apple iPad Pro 11&amp;quot; (2022)&lt;/li&gt;
&lt;li&gt;Apple iPad Mini (6th gen)&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="smartwatch"&gt;Smartwatch&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Apple Watch 10&lt;/li&gt;
&lt;li&gt;Samsung Galaxy Watch 7&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="gaming-console"&gt;Gaming Console&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Nintendo Switch OLED&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="keybaord"&gt;Keybaord&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Logitech MX keys mini mechanical&lt;/li&gt;
&lt;li&gt;Anne Pro 2&lt;/li&gt;
&lt;li&gt;Apple keyboard mini (white, without touchID)&lt;/li&gt;
&lt;li&gt;Logitech Keys-to-go 2&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="mouse--trackpad"&gt;Mouse &amp;amp; Trackpad&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Logitech MX Master 3S&lt;/li&gt;
&lt;li&gt;Apple Magic Mouse&lt;/li&gt;
&lt;li&gt;Apple Magic Trackpad&lt;/li&gt;
&lt;li&gt;Logitech Pebble Mouse 2&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="-tech-stack"&gt;⭐ Tech Stack&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Languages I know&lt;/strong&gt;(&lt;code&gt;?&lt;/code&gt; aware of, &lt;code&gt;~&lt;/code&gt; familiar, &lt;code&gt;+&lt;/code&gt; proficient, &lt;code&gt;++&lt;/code&gt; skilled, &lt;code&gt;*&lt;/code&gt; expert)&lt;/p&gt;</description></item></channel></rss>