Posts

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':         ...

Tomcat Debug Cannot Startup

Image
Today I download the Windows binary version of the Apache Tomcat , after I follow the guide to install the tomcat , when I using the command line startup.bat the tomcat, a command prompt out then close automatically. while the command prompt only show this. Another command prompt is come out but exit automatically and the Apache tomcat Server is not start which test it using the browser key in localhost:8080, but turns out is connection timeout. I look through the startup.bat and found that it call catalina.bat with no arguments. The catalina.bat is too long , very lazy to look at it. I try to google it the way to stop the pop up command prompt close. Ok , no more story straight to the solution: 1) Type in "catalina.bat run" at the bin directory of your apache tomcat folder.(or in baby step type in "C:\tomcat\bin\catalina.bat run" replace the tomcat with the name of your Apache directory) 2) Then it come out the logs cannot create logs  org.a...

Spanning Tree Protocol (STP)

Spanning tree protocol is a network protocol that is used to ensure a loop-free topology. The basic function of the STP is to select which port will be use if there are occurs in redundant link which act as backup if the active link fails.The inventor of the STP is called Radia Perman, which is a software designer and network engineer, How the STP works? Root Bridge(bridge and switch is same thing) --> switch with the lowest mac address become root bridge,if and only if the priority is same Elect Root Port (RP) --> root port is port on the non root bridge pointing back to root bridge depend on speed (higher speed == lower cost) and port id (lowest port id win) Elect Designated Port (DP) --> port at root bridge pointing toward non root bridge Elect Non-designated Port (NDP) --> port on non-root bridge pointing towards root bridge that is block automatic become standard port The switch will sent Bridge Protocol Data Units (BPDU) to nearby switch (default sent every...