Postagens

Objetivo Vencer a Crise de Ansiedade

Eu sou um programador de software, há mais de 20 anos... e agora começando a lidar com crise de ansiedade. O que notei, e que encontrei em postagens na internet sobre crise de ansiedade, é que ela pode se iniciar por coisas simples, no meu caso é parecido com pánico e hoje aconteceu por causa de umas coisas bobas, mas na hora não percebi que era isso... Estava em uma aula de dança, fui sozinho, e começou a fazer bastante frio por conta do ar condicionado, o que me incomodou bastante, e na hora isso e estar sozinho, sem perceber começou a iniciar a crise, comecei a sentir dificuldade para respirar e passei a controlar a respiração lentamente mentalmente para ver se conseguia aliviar a tensao, quando começou a aula, sempre começa com o básico, e estar ali parado esperando realmente a ação de dançar, desencadeou mais panico, de estar exposto aguardando ter que realmente fazer os movimentos enquanto o professor pacientemente ensinava o que deveria ser feito, na hora nao percebi, mas agora

Suporte do App Me Ajude A Lembrar

 Qualquer dúvida, problema ou sugestão sobre o aplicativo você pode entrar em contato através do e-mail: klausmagalhaes@gmail.com

Terms & Conditions iOS app

  Terms & Conditions By downloading or using the app, these terms will automatically apply to you – you should make sure therefore that you read them carefully before using the app. You’re not allowed to copy or modify the app, any part of the app, or our trademarks in any way. You’re not allowed to attempt to extract the source code of the app, and you also shouldn’t try to translate the app into other languages or make derivative versions. The app itself, and all the trademarks, copyright, database rights, and other intellectual property rights related to it, still belong to Klaus Magalhães Balduino. Klaus Magalhães Balduino is committed to ensuring that the app is as useful and efficient as possible. For that reason, we reserve the right to make changes to the app or to charge for its services, at any time and for any reason. We will never charge you for the app or its services without making it very clear to you exactly what you’re paying for. The AjudeLembrar app stores and pr

Privacy Policy iOS app

  Privacy Policy Klaus Magalhães Balduino built the AjudeLembrar app as a Free app. This SERVICE is provided by Klaus Magalhães Balduino at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which are accessible at AjudeLembrar unless otherwise defined in this Privacy Policy. Information Collection and Use For a better experience, while using our Service, I may require you to provide us with certain personally identifiable information, including but n

Terms & Conditions

  Terms & Conditions By downloading or using the app, these terms will automatically apply to you – you should make sure therefore that you read them carefully before using the app. You’re not allowed to copy or modify the app, any part of the app, or our trademarks in any way. You’re not allowed to attempt to extract the source code of the app, and you also shouldn’t try to translate the app into other languages or make derivative versions. The app itself, and all the trademarks, copyright, database rights, and other intellectual property rights related to it, still belong to Klaus Magalhães Balduino. Klaus Magalhães Balduino is committed to ensuring that the app is as useful and efficient as possible. For that reason, we reserve the right to make changes to the app or to charge for its services, at any time and for any reason. We will never charge you for the app or its services without making it very clear to you exactly what you’re paying for. The Me ajude a lembrar app stores

Privacy Policy

  Privacy Policy Klaus Magalhães Balduino built the Me ajude a lembrar app as a Free app. This SERVICE is provided by Klaus Magalhães Balduino at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which are accessible at Me ajude a lembrar unless otherwise defined in this Privacy Policy. Information Collection and Use For a better experience, while using our Service, I may require you to provide us with certain personally identifiable information, inc

Having trouble with rails sunspot and tomcat solr using utf-8 searches?

If after setting tomcat Connector using URIEncoding="UTF-8" didn't work, try this in rails application: create a file like this name: config/initializers/monkey_patch_sunspot_solr.rb Put this code: module Sunspot module Search class AbstractSearch # Fix utf-8 trouble in search with solr, tomcat and sunspot_solr by Klaus Magalhaes def execute reset params = @query.to_params save_ferris = {:data => params, :headers => {'Content-Type' => 'application/x-www-form-urlencoded; charset=utf-8'}} @solr_result = @connection.post "#{request_handler}", save_ferris self end end end end restart the rails application and cross your fingers...