2020-05-27

zaharul si cancerul

https://drmirabela.blogspot.com/2019/06/celula-canceroasa.html

cu cât avem mai multă glucoză în sânge cu atât cancerul este mai agresiv.
STOP ZAHĂR ÎN CANCER! Nu ne răsplătim cu dulciuri că am rezistat chimioterapiei! STOP perfuziilor cu glucoză administrate cu atâta uşurinţă! Proteinele doar  în cantitate mică, dar suficiente pentru celulele normale

Dacă îi tăiem combustibilul principal:

  • celula canceroasă devine vulnerabilă, se înmulţeşte mai greu
  • nu avem produşi rezultanţi care să o protejeze şi este expusă atacului sistemului imunitar, stressului oxidativ, oxigenului hiperbar, tratamentului chimioterapic, radioterapiei
  • se micşorează suficient cu şanse mult mai mari de a fi scoasă integral chirurgical, fără risc de recidivă
  •  pe de altă parte, celulele normale întră într-un  mod de autoprotecţie în care nu se mai mutiplică, îşi iau energia din corpi cetonici şi aşa se protejază de efectele nocive ale chimioterapiei. Reacţiile adverse sunt mult mai bine suportate ( manifestările digestive, căderea părului, scăderea celulelor din sânge)
  • o problemă majoră o reprezintă sursa de acid glutamic ca sursă de energie a celulei canceroase. Dacă fără glucoză putem trăi, fără acid glutamic,nu. Este important pentru sistemul imunitar, cel care trebuie să lupte cu celule canceroase, dar nu numai, aproape toate celule organismului au nevoie de acid glutamic să funcţioneze bine. Drept urmare proteinele trebuie consumate în cantitate moderată. Cancere foarte agresive folosesc în general acidul glutamic, cum ar fi glioblastomul, o tumoare cerebrală foarte agresivă. Toate cancerele în stadiul metastazat sunt dependente de acid glutamic. 
Zahăr înseamnă: sucuri de orice fel, dulciuri, pâine, paste, foietaje, biscuiţi, orez, cartofi, prăjituri, îndulcitori, fructele foarte dulci. Cunoscând efectele benefice şi lipsa reacţiilor adverse nici un pacient nu ar trebui să înceapă tratamentul pentru cancer fără a începe mai întâi dieta bogată în grăsimi, proteine moderate (0.8-1 g/kg și pe masă musculară), foarte puţine glucide ( o dietă keto modificată)

2020-05-14

ORA-01425 when using 'like' or 'escape' on NVARCHAR2 column (Doc ID 1470516.1)

Symptoms

You are using using 'like' or 'escape' on NVARCHAR2 column and you get the following error:
ERROR at line 1:
ORA-01425: escape character must be character string of length 1
Here is an example of possible failing syntax:
SQL> select * from t1 where col2 like '%\$$%' escape '\';

Changes

 You may see this problem while setting Cursor_sharing=force.

Cause

The issue is caused by the NVARCHAR2 columns.

The same issue was investigated before in Bug 5726019: ORA-01424 WHEN QUERY USING LIKE WITH ESCAPE OPTION , which was closed as not a bug issue

Since the problematic column is NVARCHAR2, the following syntax should be used:

to_char

or

likec

Solution


Change the query on the NVARCHAR2 column to Use TO_CHAR or LIKEC

Please use any of the following solutions :

select * from t1 where to_char(col2) like '%\?“%' escape '\';

or


select * from t1 where col2 likec '%\?“%' escape '\';
 




an alternative (if you have .net application):
To mitigate this behavior, just use Trim() inside Contains() method against string argument:

https://stackoverflow.com/questions/51129119/ora-01425-escape-character-must-be-character-string-of-length-1

2020-04-26

diabetul si bacteriile

http://www.ziare.com/viata-sanatoasa/diabet/bacteriile-vinovate-de-instalarea-diabetului-de-tip-2-ce-au-descoperit-cercetatorii-1608000


Jumatate dintre participantii la studiu sufereau de diabetul de tip 2, in timp ce cea de a doua jumatate prezenta rezistenta la insulina, dar fara a avea boala.

"Descoperirile noastre sugereaza ca la persoanele care sufera de obezitate severa, bacteriile sau fragmentele de bacterii sunt asociate cu dezvoltarea diabetului de tip 2", a declarat Andre Marette, profesor al Universitatii Laval.

Se crede ca bacteriile vinovate de aparitia diabetului pleaca din intestine. "Ipoteza noastra este ca bacteriile vii si fragmentele bacteriene traverseaza aceasta bariera si pornesc un proces inflamator care, in cele din urma, impiedica insulina sa isi faca treaba, care este aceea de a regla nivelul glicemiei prin actionarea asupra tesuturilor metabolice", a mai spus omul de stiinta.

Acesta a declarant ca echipa din care face parte se va concentra, pe viitor, pe identificarea cu exactitate a bacteriilor care pot declansa diabetul de tipul 2.

2020-04-08

cine raspunde la telefon

https://www.printesaurbana.ro/2020/04/cine-raspunde-telefonul-persoanelor-care.html

Ivan a vrut să știe ce se întâmplă cu numărul de telefon al bunicului. I-am spus că fie o să fie preluată cartela lui de vreo rudă, fie va fi aruncată. A tăcut câteva secunde, apoi m-a întrebat:
– Dar dacă îl sunăm după o vreme, când ni se face dor de el, cine o să răspundă la telefon? Universul? Dumnezeu?
Aș fi vrut să-i spun că probabil nici unul, nici altul, dar nu i-am spus nimic. Înțeleg nevoia lui, care e aceeași, cred, pentru toți, să știm că mereu se va afla cineva la celălalt capăt al iubirii noastre. Că oamenii noștri dragi rămân undeva, pentru noi.

2020-04-01

configure sslservice in nifi

https://community.cloudera.com/t5/Support-Questions/Connecting-to-DataSift-HTTPS-API-using-NiFi-GetHTTP/m-p/102276


You will need to create and configure an SSLContextService for the processor to use so that it can establish trust with the certificate being presented by the DataSift service. curl works because it is tying into the default system truststore for you.
To provide a similar experience as curl on the command line, you will need to configure the truststore properties for your SSL Context Service instance with:
  • Truststore Filename: the cacerts file from your Java installation
    • If $JAVA_HOME Is set on your system, it should help point you in the right direction. If not, the location of cacerts varies depending on environment, but is approximately the following for their respective OS
      • OS X: /Library/Java/JavaVirtualMachines/jdk<version>.jdk/Contents/Home/jre/lib/security/cacerts
      • Windows: C:\Program Files\Java\jdk<version>\jre\lib\security\cacerts
      • Linux: /usr/lib/jvm/java-<version>/jre/lib/security/cacerts -- You can additionally use $(readlink -f $(which java))
  • Truststore Type: JKS
  • Truststore Password: The default password of "changeit" if you are using the default Java keystore
When this controller service is created and enabled, the associated GetHTTP will need to be updated to reference it.

2020-03-13

ORA-12840


Doc ID 2289797.1
parallel_max_servers=0
alter session disable parallel dml;
alter session disable parallel query;
alter session disable parallel ddl;
Session altered.

Although parallel_max_servers=0, there was an append hint used in an insert statement called from a trigger

SOLUTION

Remove  /*+ APPEND*/ in any insert statements in the package or any trigger that gets executed when the package / procedure gets called.

2020-02-23

mad world lyrics

All around me are familiar faces Worn out places, worn out faces Bright and early for the daily races Going nowhere, going nowhere Their tears are filling up their glasses No expression, no expression Hide my head I wanna drown my sorrow No tomorrow, no tomorrow And I find it kind of funny, I find it kind of sad The dreams in which I'm dying are the best I've ever had I find it hard to tell you, I find it hard to take When people run in circles its a very, very Mad world, mad world Children waiting for the day they feel good Happy birthday, happy birthday And I feel the way that every child should Sit and listen, sit and listen Went to school and I was very nervous No one knew me, no one knew me Hello teacher tell me, what's my lesson? Look right through me, look right through me And I find it kind of funny, I find it kind of sad The dreams in which I'm dying are the best I've ever had I find it hard to tell you, I find it hard to take When people run in circles its a very, very Mad world, mad world, enlarging your world Mad world