Posts

IIS Setup let text file without extension

Enable go to the URL of the text file without extension Last week I was trying to install the SSL certificate using Let's Encrypt open source SSL. Using the ZeroSSL . Inside the progress, there is one part require the user to verify the website is own by the users. To get to verify, it needs the specific link with specific content. So in order to create the link follow the step below: 1) Create a virtual directory in IIS (Assume you know how to do it) =| 2) Setup the web config on the virtual directory by pasting the config into webconfig. <?xml version="1.0" encoding="UTF-8"?> <configuration>     <system.webServer>         <directoryBrowse enabled="true" />                                     <staticConte...

How to Write to NTFS Drives on a Mac for free

Free method but need Extra work 1) Download Osxfuse . (Better choose latest version and with dmg Eg, osxfuse-3.2.0.dmg  ) Install it. 2) Then Download  Homebrew . or copy the the highlighter link and  paste it at terminal /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 3)then paste  xcode-select –install   if pop up the itunes alert box then download it, else just continute next step. 4)   brew install homebrew/fuse/ntfs-3g    wait it download finish and installed. IMPORTANT 5)   Start from this step, you need to do it with care. First you need to reboot your mac and hold  Command+R  6) Then wait the loading bar to finish will bring you to another Mac utilities screen. Here you need to find the terminal on the top menu bar. Launch it. 7) type in csrutil disable   . (PS: this is to disable the configuration by the macbook to do modification on the system ...

Backup and restore activation for Windows Microsoft Office Pro Plus 2016

When the Microsoft introduce the product activation in Office , user are need to backup the activation so that you can restore it later. This is because you need to format your disk drive and reinstall windows and office again on the same machine/hardware. It is not easy to do the backup manually, moreover Microsoft add some security function to the licensing and activation technology recently to thwart piracy. So let us show you how to backup your office Activation. This is perfectly Legal as long as you have a valid activated license from me. Microsoft only allows online/internet-based activation of the office wihtin a certain time period. So you will have to backup your license key for future reinstallation purposes.  There is a free,third party app called OPA-Backup which lets you easily backup the activation of Microsoft Office and Windows 8 edition and restore it . It is legit and clean way to restore your acitvation. You can download it here. ===>OPA-Ba...

How to Check Licensing of Windows 7/8/8.1/10

How to check the licensing of Windows? This guide can be use for Windows 7, 8,8.2 and 10. Not sure about windows XP because I din't tried. After you tried maybe can leave comment to tell us whether it work or not. Basically , windows license got 3 type of licenses: Full Packaged Product (Retail) Reinstalled on PC (OEM) Volume Licensing There are available 1 more licensing for windows 10 , which are Windows 10 Pro upgrade licensing which allow to upgrade all the windows 7/8/8.1 to windows 10 Pro. Step To Check Licensing: Press Windows key + R. Then key in "slmgr.vbs /dlv" Then a dialog will show up to show you which kind of license you have. Retail/OEM / Volume Licensing.

Overclocking Non-K intel Skylake CPUs i3 6320

Image
The news that the overclocker called DHENJHEN discovered that Intel core I3-6320 could be overclock using H170 main board about 5Ghz. He found that overclocking limit was only caused by the BIOS itself. There was no special hardmod needed to overclock the core I3 6320 with base clock of 3.9 GHz. Below is the information for the Skylake architecture. K- CPUs can be overclocked using the multiplier , non-k CPUs have to be overclocked using the BLCK.  You can see the information at the http://hwbot.org/submission/3055320_.

[Laravel] Decode Html entites in blade laravel

Image
In Laravel 5 blade , I want the html link effect but the return result is in html entities format. I take lot of time to google the way to convert the html entites to normal html tags. like the picture above, the result would be like <a href="http://example.com/user/1">test</a> but not like test  . I try using php method which is  {{html_entites_decode(HTML::tolinkroute(xxxx,xxx))}} but it not working. Ok ,I lazy type so I just cut the crap . See example below to convert  the html entities to normal tags in html. from  {{"<a href=\"aaaaa\">testing</a>"}} to {!!"<a href=\"aaaaa\">testing</a>"!!} from         to {{}} -> {!! !!} By the way it was called displaying Unescaped data. May be got many Grammar error . =| Feel  free to comment my grammar so that I can correct it accordingly. If got others simple method to decode the html e...

Convert Roman Numeral to number in C#

Roman numeral to number in c# public static int pairConversion(int dec, int lastNum, int lastDec)         {             if (lastNum > dec)                 return lastDec - dec;             else return lastDec + dec;         }         public static int ConvertRomanNumtoInt(string strRomanValue)         {             var dec = 0;             var lastNum = 0;             foreach (var c in strRomanValue.Reverse())             {                 switch (c)                 {                     case 'I':         ...