Pular para o conteúdo principal

Postagens

Mostrando postagens de dezembro, 2015

C++ - Change all accented letters

The C++ code snippet shown below is a small piece of code that I created to convert accented characters (latin characters) in non-accented characters. This simple solution uses the utf8 library to convert characters into codes and vice-versa. Note: This information is now obsolete. Please use the following link to view this text in a friendlier way and download the code through Google Drive. New link to this article . ( Go to botton of page to download the code ).

A alegoria da Caverna

Platão, o discípulo de Sócrates, falava de uma caverna onde os homens viviam desde a infância, acorrentados, de modo que tudo que podiam ver era uma parede interna, Para eles, as sombras que se moviam nessa parede era a realidade. Mal sabiam que todas aquelas sombras eram criadas pelos guardas que os mantinham prisioneiros. Tampouco sabiam que estes estavam diante de uma fogueira, o que fazia suas sombras se projetarem nas paredes. Vendo as sombras todos os dias de suas vidas, os prisioneiros se acostumaram com elas e o chamavam de sabedoria. E eram recompensados pelos guardas por aquilo que aprendiam. Então, certo dia, um prisioneiro escapou. Com força e determinação, subiu rastejando pelo chão íngreme da caverna até a saída. Seus olhos, acostumados somente a escuridão e a fracos lampejos de claridade, se incomodaram com a luz forte. Mas ele se forçou a sair, a princípio voltando os olhos para o chão afim de evitar a claridade que o cegava. Olhou então para as sombras naturais, d

Ionize 1.0.7 - A fix for everyone who can't log into Admin Panel on Linux Server

If you find that you can't log in to Ionize 1.0.7 admin Panel right after you install it, the following troubleshooting solution below may fix it. Firstly, make sure you have the right credentials and are typing it correctly. Remember that user and password are case-sensitive! If you don't remember your user and password you will need to reset it. To start, take a look to the following files to fix two issues: 1 - Ionize/application/core/MY_Controller.php If you are getting the following error: "Non-static method Theme::output() should not be called statically, assuming $this from incompatible context" then, try to change the code into this file to this: public function output($view) {     if ($this->uri->uri_string() != '/admin')         $this->xhr_protect();     // Unique ID, useful for DOM Element displayed in windows.     $this->template['UNIQ'] = (uniqid());     $Theme = new Theme();     $Th