Posts

Showing posts from December, 2015

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 entities feel f