IUItachi Uchihainaligoren.hashnode.dev·Oct 19, 2020 · 1 min readI Released ShortAppHi everyone! I published an application called ShortApp. ShortApp is a web application that is used to redirect application URLs on various platforms through a single URL. You can also download a QR Code as PNG or SVG formats. Project Page: https://s...00
IUItachi Uchihainaligoren.hashnode.dev·Oct 10, 2020 · 1 min readRenaming File Names That Contains DateHi there. I have a lot of files contains date format in their name. I wanted to remove that dates from that files. I wrote this bash script. You can use this script. It works :) Btw, customize it for yourself. #!/bin/bash renamer.sh author: Ali GOREN...00
IUItachi Uchihainaligoren.hashnode.dev·Sep 30, 2020 · 4 min readAdım Adım Çevrimiçi Gizlilik ve GüvenlikAdım Adım Çevrimiçi Gizlilik ve Güvenlik Çevrimiçi gizli ve güvende olduğunuzu düşünüyor musunuz? Öyle düşünüyorsanız,yanılıyorsunuz. Çevrimiçi gizlilik ve güvenlik belirli önlemler alındığında elde edilebilir. Google sadece bir arama motoru değildir...00
IUItachi Uchihainaligoren.hashnode.dev·Sep 25, 2020 · 1 min readRemove Header Info from Response in Asp.NET Web API 2To solve this issue, there are few ways but I used these two; Global.asax.cs I added these lines to remove server and asp.net version in Application_EndRequest blocks. protected void Application_EndRequest() { Response.Headers.Remove("Server"...00
IUItachi Uchihainaligoren.hashnode.dev·Aug 9, 2020 · 8 min readStructuring Data Types in RustINFO This post needs refactoring to syntax-highlighting Hi everyone. Before that, I wrote a post called A Slice of Rust: Working with the Slice Type. Today I'll try to explain the structs in Rust Before starting, I’ll create a project with cargo; car...00