Mindblown: a blog about philosophy.

  • db mysql youtube speed performance

    Paul Tuckfield of YouTube is giving a keynote. He has been sysadmin for 25 years, Oracle DBA for 15 years and MySQL DBA for 8 months. For them, MySQL is one (important) piece of scalability. Top reasons for YouTube Scalability includes drinking :). Top reasons for YouTUbe database scalability include Python, Memcache and MySQL replication.…

  • Installing intl extension in XAMPP Fix “icuuc46.dll” file missing error

    To install intl extension for php in XAMPP, Open [xampp_folder_path]/php/php.ini to edit. Search for ;extension=php_intl.dll and uncomment the line by removing semicolon. In [intl] section, uncomment and define default_local and error_level values. [intl] intl.default_locale = en_utf8 intl.error_level = E_WARNING Save and exit the editior. In XAMPP control panel, restart the apache. If you have the “icuuc46.dll” file missing error.…

  • ZF2 events

    Module Manager Zend\Module\Manager: loadModules.pre For every module: Zend\Module\Manager: loadModule.resolve Zend\Module\Manager: loadModule Zend\Module\Manager: loadModules.post Application Successful: Zend\Mvc\Application: bootstrap Zend\Mvc\Application: route Zend\Mvc\Application: dispatch Zend\Mvc\Controller\ActionController: dispatch (if controller extends this class) Zend\Mvc\Application: render Zend\View\View: renderer Zend\View\View: response Zend\Mvc\Application: finish On an error in route or dispatch: Zend\Mvc\Application: dispatch.error Zend\Mvc\Application: render Zend\View\View: renderer Zend\View\View: response Zend\Mvc\Application: finish Note that…

  • zf2 disable the view completely disable the layout within controller change view

    To disable the view completely, from within a controller action, you should return a Response object:  [php] < ?php namespace SomeModule\Controller; use Zend\Mvc\Controller\ActionController,     Zend\View\Model\ViewModel; class SomeController extends ActionController {     public function someAction()     {         $response = $this->getResponse();         $response->setStatusCode(200);        …

  • Free Fast Public DNS Servers List

    This is my list of better, fast public dns servers and free dns server (as compare to your ISP / DSL / ADSL / cable DNS service providers dns servers). These dns servers are free to all. I was able to improve my browsing speed with following DNS servers. Use any one of the following…

  • Make your life better in 30 steps

    Make your life better in 30 steps Don’t compare your life to others’. You have no idea what their journey is all about. Don’t have negative thoughts of things you cannot control. Instead invest your energy in the positive present moment Don’t overdo; keep your limits Don’t take yourself so seriously; no one else does…

  • HTTP Request GET, HEAD, POST, PUT, DELETE, OPTIONS, TRACE Methods

    An HTTP request is a class consisting of HTTP style requests, request lines, request methods, request URL, header fields, and body content. The most common methods that are used by a client in an HTTP request are as follows:- 1) GET:- Used when the client is requesting a resource on the Web server. 2) HEAD:-…

  • طريقة مضمونة ومأمونة ومجربة…لزيادة الدخل ورفع مستوى المعيشي

    طريقة مضمونة ومأمونة ومجربة…لزيادة الدخل ورفع مستوى المعيشي بسم الله الرحمن الرحيم ربما استغربتم من العنوان : أنا هنا سأتكلم عن حقيقة مجربة ، وثابتة … أن لن أتحدث بلغة الموظفين ذوي الدخل المحدود بل بلغة رجال الأعمال ، ولغة تجار السوق العالمية للاستثمار … ولكن من مدخل مختلف تماماً .. وأقوى من مدخل السوق…

  • What is the best way to generate a ‘fingerprint’ of user vistor unique ness in PHP?

    easiest and best way: use phps session-management – every client is given an id, stored in a cookie (if enabled) or given as a get-variable on every link and form. (alternatively you could set a cookie on your own). but: this only “fingerprints” the browser – if the user changes his browser, deletes his cookies…

  • Error 137 (net::ERR_NAME_RESOLUTION_FAILED): Unknown

    Error 137 (net::ERR_NAME_RESOLUTION_FAILED): Unknown The webpage at might be temporarily down or it may have moved permanently to a new web address. ( If this error is occurs then try this…. it will works) Open cmd And type Code: netsh winsock reset

Got any book recommendations?