<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki2.sitebuilt.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=68.163.174.136</id>
	<title>Wiki2 - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki2.sitebuilt.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=68.163.174.136"/>
	<link rel="alternate" type="text/html" href="https://wiki2.sitebuilt.net/index.php?title=Special:Contributions/68.163.174.136"/>
	<updated>2026-05-06T14:00:05Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.37.0</generator>
	<entry>
		<id>https://wiki2.sitebuilt.net/index.php?title=Technology&amp;diff=2719</id>
		<title>Technology</title>
		<link rel="alternate" type="text/html" href="https://wiki2.sitebuilt.net/index.php?title=Technology&amp;diff=2719"/>
		<updated>2008-12-31T02:19:53Z</updated>

		<summary type="html">&lt;p&gt;68.163.174.136: /* pic */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==pic==&lt;br /&gt;
http://www.rentron.com/Myke3.htm&lt;br /&gt;
&lt;br /&gt;
http://www.play-hookey.com/digital/jk_nand_flip-flop.html&lt;br /&gt;
&lt;br /&gt;
http://www.digital-diy.net/16F%20Examples/LM35DZ.aspx&lt;br /&gt;
&lt;br /&gt;
[http://www.opencircuits.com/Main_Page open source circuits wiki]&lt;br /&gt;
&lt;br /&gt;
[http://www.sparkfun.com/commerce/tutorials.php sparkfun hobby shop]&lt;br /&gt;
&lt;br /&gt;
[http://www.batchpcb.com/index.php/Home batchpcb.com pcb fabrication]&lt;br /&gt;
&lt;br /&gt;
[http://www.avrfreaks.net/index.php?module=Freaks%20Devices&amp;amp;func=displayDev&amp;amp;objectid=78 AVR is alternative to PIC]&lt;br /&gt;
&lt;br /&gt;
[http://www.sparkfun.com/commerce/tutorial_info.php?tutorials_id=57 a good tutorial on embedded systems]&lt;br /&gt;
:Google any of these for more info. I have chosen the ATmega168 as the learning IC of choice. Why?&lt;br /&gt;
&lt;br /&gt;
* 20 MIPs (million instructions per second!) is powerful enough to do some really cool projects&lt;br /&gt;
* It's cheap! $2.13 currently&lt;br /&gt;
* It's got all the goodies under the hood (UART, SPI, I2C, ADC, internal osc, PWM, kitchen sink, etc)&lt;br /&gt;
* 16K of program memory is enough for almost any beginner project&lt;br /&gt;
* The tools are free! (C compilers for many of the other micros cost a lot of money)&lt;br /&gt;
* The programming and debugging tools are low cost ($20 will get you started)&lt;br /&gt;
&lt;br /&gt;
[http://www.evilmadscientist.com/article.php/avrtargetboards evil mad scientist on AVR programming]&lt;br /&gt;
&lt;br /&gt;
==isp==&lt;br /&gt;
host&lt;br /&gt;
206.71.150.94&lt;br /&gt;
&lt;br /&gt;
http://www.networksolutions.com/whois/index.jsp&lt;br /&gt;
&lt;br /&gt;
http://www.namecheap.com/myaccount/index.asp mckennatim nanj&lt;br /&gt;
&lt;br /&gt;
https://thenynocportal.com/clientarea.php&lt;br /&gt;
&lt;br /&gt;
==making transparent in gimp==&lt;br /&gt;
1. open image&lt;br /&gt;
&lt;br /&gt;
2. Right click the image and go to LAYERS then ADD ALPHA CHANNEL. You won't notice anything happening, but don't be concerned. It basically adds a transparent layer at the bottom of your image so when we erase the colors.....it's shows the transparent layer. Which of course would show whatever was under it on the screen.&lt;br /&gt;
&lt;br /&gt;
3. Right click on the image again and go to SELECT and then down to BY COLOR. A window that is all black opens up. Don't change any of the settings....just use the defaults for now.&lt;br /&gt;
&lt;br /&gt;
4. Now click on the color in the image you want to be transparent. These colors will now show up outlined.&lt;br /&gt;
&lt;br /&gt;
5. Right click on the image again and go to EDIT and then down to CLEAR. This should now erase the outlined color you just picked from the image and the &amp;quot;transparent gimp checkerbox&amp;quot; should show through. This is the Gimps way of showing you that section is now transparent.&lt;br /&gt;
&lt;br /&gt;
6. Right click on the image and choose SAVE AS and make sure to save as a GIF file if you want the transparency to work on the web.&lt;br /&gt;
&lt;br /&gt;
==embedding video==&lt;br /&gt;
   1. find the file Sanitizer.php in the folder /includes of your mediawiki installation&lt;br /&gt;
   2. find the function removeHTMLtags in that file. below that you’ll find a list of whitelisted HTML tags. add the tag embed to the list.&lt;br /&gt;
   3. find the function setupAttributeWhitelist in the same file. several lines below you will find HTML-attributes being whitelisted for each HTML tag. so you add a new line (maybe below the line that defines span):&lt;br /&gt;
      ‘embed’ =&amp;gt; array( ’style’, ‘id’, ‘type’, ’src’, ‘width’, ‘height’ ),&lt;br /&gt;
&lt;br /&gt;
take care to replace the typographic ‘-quotes by straight ones when doing copy&amp;amp;paste. (wordpress converts the quotes on this blog, so you need to convert them back.)&lt;br /&gt;
&lt;br /&gt;
you’re done. now you can copy the HTML-code provided by google or youtube into your wiki textbox and it’ll work. (make sure to make backups and document so you know what you’ve changed. when upgrading you’ll have to repeat the process. no warranties for possibile security leaks resulting from the hack.)&lt;br /&gt;
&lt;br /&gt;
update april 2007: i just tested, this hack also works with mediawiki 1.9.2, just that you need to add embed to $htmlpairs. (note: in case the embed-code you want to use has the format &amp;lt;embed /&amp;gt; you now have to convert it to &amp;lt;embed&amp;gt; &amp;lt;/embed&amp;gt; before posting it to your wiki.) i also would recommend to paste the last line of code near br instead of span (the file has got rearranged a bit).&lt;br /&gt;
==mediawiki memory problem==&lt;br /&gt;
php.ini is in public_html, it has to be copied into everywhere that uses php&lt;br /&gt;
left ini_set commented out in localsettins.php&lt;br /&gt;
.htaccess php_mem ... didn't work&lt;br /&gt;
==mediawiki upgrade==&lt;br /&gt;
http://www.g-loaded.eu/2006/09/05/mediawiki-upgrade-procedure/&lt;br /&gt;
easy way: &lt;br /&gt;
*goto maintainance directory and run php dumpBackup.php --current&amp;gt; dumfile.xml &lt;br /&gt;
*on new site install wiki, put dumpfile.xml on its maintenance dir run php importDump.php dumfile.xml&lt;br /&gt;
&lt;br /&gt;
==css==&lt;br /&gt;
*sitewide changes go in Mediawiki:Monobook.css&lt;br /&gt;
*user changes go in User:MrMcKenna/monobook.css&lt;br /&gt;
==lynx==&lt;br /&gt;
==[[Moving_from_shared_to_VPS]]==&lt;/div&gt;</summary>
		<author><name>68.163.174.136</name></author>
	</entry>
	<entry>
		<id>https://wiki2.sitebuilt.net/index.php?title=Lani&amp;diff=2710</id>
		<title>Lani</title>
		<link rel="alternate" type="text/html" href="https://wiki2.sitebuilt.net/index.php?title=Lani&amp;diff=2710"/>
		<updated>2008-12-31T00:26:57Z</updated>

		<summary type="html">&lt;p&gt;68.163.174.136: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;blockquote style=&amp;quot;border: 0px solid blue; padding: 2em;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;quot;Nearly 20% of women with metastatic breast cancer live five years or longer. The survival rate is 16%. This is based on statistics. Each woman is unique and her situation will also be unique.&amp;quot; - http://imaginis.com Women's Health Resource.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt; &lt;br /&gt;
=====stage IV breast cancer=====&lt;br /&gt;
The primary cancer has spread out of the breast to other parts of the body (metastasized) (to in this case, the liver).&lt;br /&gt;
;[http://www.webmd.com/breast-cancer/stage-4-treatment-options from WebMD]:&amp;quot;So far, treatment of stage IV breast cancer does not provide a cure for the disease. By shrinking the cancer, treatment can slow down the disease, make you feel better, and let you live longer. Although patients with stage IV breast cancer may live for years, it is usually life-threatening at some point.&amp;quot;&lt;br /&gt;
;[http://capitalgastro.com/ Capital Gastro forms]:&lt;br /&gt;
&lt;br /&gt;
====current treatment====&lt;br /&gt;
The current treatment includes chemotherapy(Taxotere) in conjunction with a designer drug(Herceptin) for cells whose Hercep Test shows 60% Her2 3+. Types: adino carcinoma(liver), infiltrating duct carcinoma(breast)&lt;br /&gt;
;[http://www.cancer.org/docroot/CRI/content/CRI_2_4_4X_Treatment_by_Stage_Breast_Cancer_5.asp?sitearea= cancer.org] - on trastuzumab (Herceptin):&amp;quot;Stage IV cancers have spread beyond the breast and lymph nodes to other parts of the body. While surgery and/or radiation may be useful in some situations (see below), they are very unlikely to cure these cancers, so systemic (non-targeted) therapy is the main treatment. Depending on many factors, this may consist of hormone therapy, chemotherapy, targeted therapies such as trastuzumab (Herceptin) or bevacizumab (Avastin), or some combination of these treatments.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;Trastuzumab may help women with HER2-positive cancers live longer if it is given with the first chemotherapy for stage IV disease. It is not yet known whether it also should be given at the same time as hormone therapy, or how long a woman should remain on therapy.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
In November 2006, the FDA approved Herceptin as part of a treatment regimen.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====how does herceptin work=====&lt;br /&gt;
http://www.gene.com/gene/products/information/oncology/herceptin/images/moa.jpg&lt;br /&gt;
&lt;br /&gt;
Herceptin seems to be one of those designer drugs that just happens to drift into and bond to a target cell. In this case the target cell is called Her2. &lt;br /&gt;
&lt;br /&gt;
The way Her2 wants to work is to pair up and go through the cell wall. In that orientation it provides some (mysterious) chemical signaling to the cells nucleus telling it it's time to divide and reproduce itself. Overexpression on Her2 (that there is too many of them) is what causes a healthy breast cell to go ballistic. &lt;br /&gt;
&lt;br /&gt;
The plan is to bind to her2 and prevent it from pairing up and signaling the nucleus. When the herceptin binds, it not only prevents pairing and signaling, it also causes the Her2 protein to want to withdraw into the cell. In addition, the herceptin bound cancer cell is seen by the immune system as a problem cell and the immune system goes after it. Not only can the Her2 protein not signal, the whole cancer cell gets attacked.  &lt;br /&gt;
&lt;br /&gt;
=====Common side effects of Herceptin include: (from [http://www.imaginis.com/breasthealth/herceptin.asp imaginis])=====&lt;br /&gt;
* Fever&lt;br /&gt;
* Chills&lt;br /&gt;
* Weakness&lt;br /&gt;
* Nausea (especially when given with chemotherapy)&lt;br /&gt;
* Diarrhea&lt;br /&gt;
* Increased cough&lt;br /&gt;
Less common side effects of Herceptin include:&lt;br /&gt;
* Heart problems (see explanation below)&lt;br /&gt;
* Loss of white blood cells (leukopenia)&lt;br /&gt;
* Fatigue or difficulty breathing due to a reduction of red blood cells (anemia)&lt;br /&gt;
=====[http://www.taxotere.com/oncology/about_Taxotere/mechanism_of_action.aspx chemo using Taxotere] =====&lt;br /&gt;
This is a cell showing microtubule structures as it is about to divide:&lt;br /&gt;
http://www.taxotere.com/images/clinical_pharmacology_dividing_cell_new.jpg&lt;br /&gt;
The antitumor activity of Taxotere® (docetaxel) is derived from its ability to disrupt the normal process of microtubule assembly and disassembly.*,1,2&lt;br /&gt;
&lt;br /&gt;
Microtubules are cylindrical structures that form the basis of the cellular skeleton and are essential to the reproduction, growth and spread of tumor cells.*,1  Normally, as a part of the mitotic process, microtubules are reorganized to form a spindle. Assembly of microtubules from tubulin requires the presence of guanosine triphosphate (GTP).*,1,2&lt;br /&gt;
&lt;br /&gt;
Taxotere® binds tubulin, promoting polymerization and preventing depolymerization of microtubules in the absence of GTP.*,2 It binds to the ß-subunit of the tubulin within the microtubule, promoting the formation of stable microtubules, which form abnormal bundles that do the following:&lt;br /&gt;
&lt;br /&gt;
* Resist physiologic disassembly&lt;br /&gt;
* Accumulate within tumor cells&lt;br /&gt;
* Inhibit cell proliferation leading to cell death&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://www.taxotere.com/images/mechanism_action_microtubule.jpg&lt;br /&gt;
&lt;br /&gt;
;[http://www.imaginis.com/breasthealth/bc_drugs4.asp#Taxotere chemo drug] Taxotere (docetaxel):Taxotere (generic name, docetaxel) is a cancer drug that resembles Taxol in chemical structure. Taxotere was FDA approved in 1996 to treat advanced breast cancer in patients who have not responded well to chemotherapy with the drug, doxorubicin. In 1998, Taxotere was also approved by the FDA to treat breast cancer that has spread into other areas of the breast or to other parts of the body after treatment with standard chemotherapy. Docetaxel inhibits the division of breast cancer cells by acting on the cell’s internal skeleton. The drug is usually given intravenously (through the vein) once every three weeks. Each treatment typically takes around one hour, though the dosage will vary depending on the patient’s medical situation.&lt;br /&gt;
&lt;br /&gt;
======Possible side effects of Taxotere include:======&lt;br /&gt;
* Decrease in white blood cells (leukopenia)&lt;br /&gt;
* Fever (often a warning sign of infection)&lt;br /&gt;
* Fluid retention&lt;br /&gt;
* Allergic reactions&lt;br /&gt;
* Hair loss&lt;br /&gt;
&lt;br /&gt;
=====CellSearch CTC -a new blood test=====&lt;br /&gt;
;[http://www.imaginis.com/breasthealth/metastatic2.asp (Metastatic) Breast Cancer] CTC test: &amp;quot;A new blood test, called CellSearch CTC, shows promise in helping to manage treatment of metastatic breast cancer. The test measures the number of tumor cells circulating in a sample of blood and can immediately inform physicians if a patient's treatment is working or needs modification. Research has shown that if a patient typically has more than five CTCs in a blood sample, survival may be shorter compared to patients with no CTCs. The CTC test can help physicians monitor whether a patient's treatment by determining whether the number of cancer cells is decreasing. This information can help determine whether changes are needed in a patient's treatment. While the test is used independently-typically before each chemotherapy treatment cycle-health experts do not recommend that it replace existing tests to monitor disease progression, such as the CAT scan or PET scan. Instead, it can be a useful supplement to those tests, which are often administrated every 12 to 24 weeks. Click here to learn more about the CTC test.&amp;quot;&lt;br /&gt;
=====palliative care (redefined)=====&lt;br /&gt;
;[http://www.cancer.gov/cancertopics/advancedcancer/ coping with advanced cancer pamphlet] - on comfort (palliative) care: &amp;quot;You have a right to comfort care both during and after treatment. This kind of care is often called palliative care. It includes treating or preventing cancer symptoms and the side effects caused by treatment. Comfort care can also mean getting help with emotional and spiritual problems during and after cancer treatment. Sometimes patients don't want to tell the doctor about their symptoms. They only want to focus on the cancer. Yet you can improve your quality of life with comfort care.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt; People once thought of palliative care as a way to comfort those dying of cancer. Doctors now offer this care to all cancer patients, beginning when the cancer is diagnosed. You should receive palliative care through treatment, survival, and advanced disease. Your oncologist may be able to help you. But a palliative care specialist may be the best person to treat some problems. Ask your doctor or nurse if there is a specialist you can go to.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Physicians at major academic medical centers  worldwide rely on UpToDate's complete and current medical information to answer their clinical questions&lt;br /&gt;
&lt;br /&gt;
====uptodate.com -providers site====&lt;br /&gt;
http://www.uptodate.com/patients/content/search.do?search=Breast+Cancer&amp;amp;source=USER_INPUT&amp;amp;searchOffset=&amp;amp;_NEXTITEM=&amp;amp;_EVENTNAME=Go&amp;amp;_EVENTARG=undefined&amp;amp;_POSTBACK=true&amp;amp;_DESTINATION=&amp;amp;_xCoordHolder=0&amp;amp;_yCoordHolder=70&lt;/div&gt;</summary>
		<author><name>68.163.174.136</name></author>
	</entry>
</feed>