 |
 |
|
|
| |
| |
| |
|
|
| Articles about Function |
| What is the function of sleep? | | 2008-08-26 09:39:36 | | Is sleep essential? Ask that question to a sleep-deprived new parent or a student who has just pulled an "all-nighter," and the answer will be a grouchy, "Of course!" But to a sleep scientist, the question of what constitutes sleep is so complex that scientists are still trying to define the essential function of something we do every night. A study published this week in PLoS Biology by Chiara Cirelli and Giulio Tononi addresses this pressing question.
read more | | By: Machines Like Us - Science and Technology News | | |
| | Scientists correct decline in organ function associated with old age | | 2008-08-10 17:14:06 | | As people age, their cells become less efficient at getting rid of damaged protein -- resulting in a buildup of toxic material that is especially pronounced in Alzheimer's, Parkinson's disease, and other neurodegenerative disorders. Now, for the first time, scientists at the Albert Einstein College of Medicine of Yeshiva University have prevented this age-related decline in an entire organ -- the liver -- and shown that, as a result, the livers of older animals functioned as well as they did when the animals were much younger.
read more | | By: Machines Like Us - Science and Technology News | | |
| | Evaluating/Executing PHP Code at Run-Time Using eval() Function | | 2008-08-09 01:39:29 | | OK, so today we are going to discuss about one of the interesting functions
of PHP. The eval() function. It is interesting in that it can evaluate/execute
PHP code from inside scripts. This means, the eval() function can evaluate PHP
code at run-time. The code itself in turn may be generated at run-time hence
it could be used to execute code that may not initially be a part of the script.
Let’s see some examples:
eval("echo 'hello';");
Which is equivalent to:
echo 'hello';
One more example:
<?php
$n=10;
$code='';
for($i=0;$i<$n;$i++)
$code.="echo $i;";
eval($code);
?>
Here the code to be evaluated is generated at run-time too.
The code to be evaluated could be stored somewhere (like in a file or in database)
and later can be retrieved and evaluated.
As an example, below I’m providing the source code which would create
a page that could be used to run PHP code. It’d provide a H | | By: Learning Computer Programming | | |
|
|
|
| Cholesterol is fatty substance essential for the proper body function | | 2008-08-08 02:16:50 | | Cholesterol is neither a virus nor a bacterium. This is not a disease, quite the contrary. It is a fatty substance essential for the proper functioning of our body. Cholesterol plays an important role in building cell walls. It is also the raw material used for the production of certain hormones and bile acids (acids stored in the gallbladder) that allow the absorption of fat or fat.In fact, cholesterol metabolism, all chemical transformations related to its absorption by the body, is closely linked to that of lipids, or fats. In our body, cholesterol is synthesized in the liver at the start of dietary fats rich in saturated fatty acids. In essence, it is therefore our body which produces, in a balanced and sufficient, the cholesterol we need. Nevertheless, this balance can be disrupted and the body generate too much cholesterol. What may be the cause? Diseases such as diabetes or, more simply, a diet too rich in fat, saturated fat. It seems obvious that the more you absorb fat, the mo | | By: medical dictionary | | |
| | Thyroid And Depression - How Depression Medication Can Affect Thyroid Function | | 2008-08-01 12:05:37 | | If you are looking to information on the function of the thyroid and depression then it would be a good idea for you to read this article. In this article we will discuss the link between people with thyroid problems and depression, the symptoms of the most common type of depression in people with thyroid problems and, how medication can affect the function of the thyroid.Research suggests that there is a link between people with thyroid problems and certain types of depression. It has been noted that bipolar disorder (also known as manic depressive disorder) is more common in people who have thyroid disorders.Manic depression can be recognized by its symptoms which can be summed up as manic or hypomanic episodes. These periods can last anything from a few days up to several weeks, during these episodes a sufferer may experience various symptoms including how hyperactivity, extreme excitement, and euphoria, followed by periods of sleep problems, appetite problems, and fatigue as well a | | By: Health Articles - Information on Health, Health Ca | | |
| | PHP - Debug Trace function | | 2008-07-31 23:20:00 | | function ewTrace($msg) { $filename = "debug.txt"; if (!$handle = fopen($filename, 'a')) exit; if (is_writable($filename)) fwrite($handle, $msg . "\n"); fclose($handle);}Disclaimer: Any code or advice given is for instructional purposes only. We will not be responsible for any loss or damage caused by using this script. | | By: Smash Scripts | | |
|
|
|
| PHP - Trim function | | 2008-07-31 23:19:00 | | function ewTrim($str) { $temp = trim($str); if (strtolower($str) == "null") return ""; if (substr($temp, 0, 1) == "`" && substr($temp, -1, 1) == "`") { $temp = substr($temp, 1, -1); } elseif (substr($temp, 0, 1) == "'" && substr($temp, -1, 1) == "'") { $temp = substr($temp, 1, -1); $temp = (get_magic_quotes_gpc()) ? stripslashes($temp) : $temp; } return $temp;}Disclaimer: Any code or advice given is for instructional purposes only. We will not be responsible for any loss or damage caused by using this script. | | By: Smash Scripts | | |
| | PHP - Format Currency function | | 2008-07-31 23:14:00 | | function FormatCurrency($amount, $NumDigitsAfterDecimal, $IncludeLeadingDigit, $UseParensForNegativeNumbers, $GroupDigits){ // export the values returned by localeconv into the local scope if (function_exists("localeconv")) extract(localeconv()); // set defaults if locale is not set if (empty($currency_symbol)) $currency_symbol = DEFAULT_CURRENCY_SYMBOL; if (empty($mon_decimal_point)) $mon_decimal_point = DEFAULT_MON_DECIMAL_POINT; if (empty($mon_thousands_sep)) $mon_thousands_sep = DEFAULT_MON_THOUSANDS_SEP; if (empty($positive_sign)) $positive_sign = DEFAULT_POSITIVE_SIGN; if (empty($negative_sign)) $negative_sign = DEFAULT_NEGATIVE_SIGN; if (empty($frac_digits) || $frac_digits == CHAR_MAX) $frac_digits = DEFAULT_FRAC_DIGITS; if (empty($p_cs_precedes) || $p_cs_precedes == CHAR_MAX) $p_cs_precedes = DEFAULT_P_CS_PRECEDES; if (empty($p_sep_by_space) || $p_sep_by_space == CHAR_MAX) $p_sep_by_space = DEFAULT_P_SEP_BY_SPACE; if (empty($n_cs_precedes) || $n_cs_precedes == CHAR_MAX) $n_cs_p | | By: Smash Scripts | | |
| | PHP - Date difference function | | 2008-07-31 23:05:00 | | function DateDiff($interval, $date1, $date2) { // Function roughly equivalent to the ASP "DateDiff" function //convert the dates into timestamps $date1 = strtotime($date1); $date2 = strtotime($date2); $seconds = $date2 - $date1; //if $date1 > $date2 //change substraction order //convert the diff to +ve integer if ($seconds < tmp =" $date1;" date1 =" $date2;" date2 =" $tmp;" seconds =" 0-$seconds;" interval ="="'y'" interval="="'m')" date1 =" date(" date2=" date(" time1 =" (date('H',$date1)*3600)" time2 =" (date('H',$date2)*3600)" diff =" $year2"> $month2) { $diff -= 1; } elseif($month1 == $month2) { if($day1 > $day2) { $diff -= 1; } elseif($day1 == $day2) { if($time1 > $time2) { $diff -= 1; } } } break; case "m": list($year1, $month1, $day1) = split('-', $date1); list($year2, $month2, $day2) = split('-',$date2); $time1 = (date('H',$date1)*3600) + (date('i',$date1)*6 | | By: Smash Scripts | | |
| | Brushes: Function Grunge Brush Set | | 2008-07-31 05:36:44 | | Another freebies from WeFunction.com, as they have released their very first photoshop brush set to download just for you! These brushes are exclusively designed to create subtle grunge effects within your designs. Captured from various dirty textures, surfaces and fabrics images, these 33 brushes are categorized as medium size range at 204px to 496px.What makes [...] | | By: Sharebrain - the best links for Webworkers | | |
| | VB & VB.net : Error: MouseHook function | | 2008-07-19 05:12:26 | | Author: jituacSubject: Error: MouseHook functionPosted: 19 Jul 08 at 10:12amHi, I am using below code for disable the mouse events.It's working But sometmes throwing an error ERROR: When passing delegates to unmanaged code, they must be kept alive by the managed application until it is guaranteed that they will never be called How can i fix this? plz help me Private Const HC_ACTION As Integer = 0Private Const WH_MOUSE_LL As Integer = 14Private Const WM_MOUSEMOVE As Integer = &H200Private Const WM_LBUTTONDOWN As Integer = &H201Private Const WM_LBUTTONUP As Integer = &H202Private Const WM_LBUTTONDBLCLK As Integer = &H203Private Const WM_RBUTTONDOWN As Integer = &H204Private Const WM_RBUTTONUP As Integer = &H205Private Const WM_RBUTTONDBLCLK As Integer = &H206Private Const WM_MBUTTONDOWN As Integer = &H207Private Const WM_MBUTTONUP As Integer = &H208Private Const WM_MBUTTONDBLCLK As Integ | | By: Free IT Resources | | |
| | Creating a function Module in SAP ABAP | | 2008-07-17 18:22:14 | | Creating a Function Module in SAP ABAP. DownLoad PDFExecute transaction SE37 and create a function group as shown in the figure below. Give the desired function group name and a short text.Once the function group is created type the desired function module name as shown below.And click on create.Enter the function group name created earlier and the desired short text for function module.and click on save.Save the function module as a $tmp object.Now the following screen will be presented to you, here you need to enter theimport and export parameters. These are nothing but the variables that youwould be passing to the function module and the returned values from thefunction module.The following screen shot shows the returned values from the function module.Type the following code in the source code area.Active the function module and the related code.Call the above created function module from an ABAP Report. The following screen shotshows the details to insert the code.Type the code s | | By: Free Download SAP Sales And Distribution(SD) Books | | |
| | | | 128 iconos gratuitos, Function Icon Set | | 2008-07-03 13:51:18 | | Veo en WebResourcesDepot esta nueva colección de iconos que pueden ser de mucha utilidad para webmasters y bloggers.
Este set contiene 128 iconos, que se encuentran en 48×48 pixeles incluídos en el ZIP.
Para más información, una previsualización de los iconos y descargarlos haz clic aquí: http://wefunction.com/2008/07/function-free-icon-set
Artículos Relacionados:Nuevos iconos RSS (7 Abril 2008)
Iconos Rss (25 Agosto 2007)
750 [...] | | By: Trazos web | | |
| | | Priyanka Chopra : Photo Galleryopening function of a slimming center | | 2008-06-15 14:06:19 | | Priyanka Chopra : Photo Gallery @ opening function of a shop exclusive,Priyanka Chopra : Photo Gallery @ opening function of a shop gallery,Priyanka Chopra : Photo Gallery @ opening function of a shop pics,Priyanka Chopra : Photo Gallery @ opening function of a shop shots candid images pics wallpapers photos posters event celeb event function awards hot sexyMORE PICS OF PRIYANKA CHOPRA
| | By: CANDID CELEB PICS | | |
| | Function to rotate image in PHP | | 2008-06-05 01:13:40 | | GD library in PHP is very useful for image processing and you can do a lot image manipulation from it. In this post, I’ll show you a simple Image manipulation (image rotation)using the function provided below in PHP. You’ll see how easy it is to rotate an image using PHP.
Function to rotate image using GD [...] | | By: PHP And Ajax Related Useful Resources and Codes | | |
| | Shreya sexy photos from New lux launch function | | 2008-06-03 08:45:00 | | Indian masala actress Shreya sexy photos from New lux launch functionTamil,Telugu,actress Shreya sexy hot photos and wallpapersTags:Shreya sexy photos,New lux launch,Shreya hot photos,Shreya hot wallpapers,Shreya sexy hot photos,Tamil actress Shreya hot photos,telugu actress Shreya hot pictureswww.feeds.feedburner.com/ indianmasalaphotos | | By: Indian masala photos,Tamil actress photos,telugu a | | |
| | | | | Priyamani Panties visible hot photos in public function | | 2008-05-03 21:17:35 | | Priyamani Panties visible hot photos in public function,Priyamani hot photos,Priyamani sexy photos,Priyamani sexy hot panties visible very hot photos Tags:Priyamani Panties visible hot photos in public function,Priyamani hot photos,Priyamani sexy photos,Priyamani sexy hot panties visible very hot photos,tamil actress Priyamani,telugu actress Priyamani hot photos,Priyamani cleavage hot photos,Priyamani pantywww.feeds.feedburner.com/ indianmasalaphotos | | By: Indian masala photos,Tamil actress photos,telugu a | | |
| | | Andalong MP4 Watch (4GB) with Bluetooth Function! | | 2008-04-21 09:25:50 | | This is a stylish Andalong MP4 watch which boasts Bluetooth and enjoys the entire music without any boring cables. It is made of a leather band and made comfortable for wearing .The specifications are follows:
1.5 inch TFT display.
Digital watch.
Bluetooth function built in.
MP3 and MP4 playback.
U-disk.
High Fidelity Sound Recorder.
3-D Sound Effect Modes.
E-book Browser.
It comes with 1.5-inch [...] | | By: vhxn - Technology , Latest Technology, New Gadgets | | |
| | New chair company story (share of stock's function) - Part II | | 2008-04-17 08:55:19 | | The former part that I introduced Charlie faces a major problem:lack of money for his business.So he decides to find others, frequently called "venture capitalists," who might also see a potential for his idea and be willing to risk some capital to get the venture started. To interest others, Charlie must divide his new business into smaller pieces to give them some ownership. Charlie realizes,too, that by relinquishing some ownership, he would no longer be entitled to all the profits.However, he is willing to do this to secure the help of others.After exploring the advantages and disadvantages of the various legal forms of businesses, he decides to establish a "corporation." The principal reason for choosing a corporation rather than a partnership or any other form was financial liability. Charlie learn that no matter which legal structure is used, creditors always have first claim on the assets if the business fails. However, a corporation, as a legal entity, limits the financial ris | | By: Finance fantasy | | |
| | New chair company story (share of stock's function) - Part III | | 2008-04-17 08:53:57 | | The importance of profits Why would Charlie and his associates risk their personal savings to build a factory to manufacture the chairs? They could have deposited their money into a bank account rather than investing in the new enterprise. The money would have been safe and the bank would have paid them interest. Why would anybody be willing risk money - let alone $2 million - to start the New -Design Chair Company? The answer is simple:PROFITS.Charlie and his associates saw an opportunity to make a goood profit on each chair manufactured if the company met its business objectives. The stocjholders also saw the possibility of increasing their profits in later years if more chairs could be manufactured and sold. In short, Charlie and his associates figured they could achieve a much better on their money by investing in the new venture rather than receiving interest from the bank.Now time has passed, Charlie's projections were accurate, and the venture has been successful. According to t | | By: Finance fantasy | | |
| | New chair company story (share of stock's function) - Part I | | 2008-04-16 07:12:30 | | Every business day millions of shares of stock are bought and sold. How did these share originate and how are the prices determined? For share to be traded from one person to another, a company must be created. How does it begin? Where does the money come from?Charlie, a young inventor, has just built a new light weight, folding chair having a superior design. Encouraged by family and friends, he decides to turn his hobby of building chairs into a full-time business rather than sell his patents to a large furniture company.Although charlie has savings that could be put into the venture, the amount is far short of the total capital necessary. He estimates the total cost of the factory, machinery, and initial money needed for product inventory to be approximately $2 million.These "assets" (the factory, machinery, inventory, and remaining capital) would be used to produce the chairs and maintain the new business. The more chairs Charlie can produce using these assets, the more profitable | | By: Finance fantasy | | |
| | | | SAP ABAP SYNTAX FOR CALL FUNCTION part four | | 2008-04-14 11:04:00 | | Variant 3 CALL FUNCTION func IN UPDATE TASK. Additions
1. ... EXPORTING p1 = f1 ... pn = fn
2. ... TABLES p1 = itab1 ... pn = itabn Effect Flags the function module func for execution in...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. | | By: sap abap | | |
| | Selection Function SAP CRM Toolbars (GUI Status, Active Functions) | | 2008-04-11 13:54:21 | | Use In the CIC for the industry component mySAP Utilities, the business objects involved in a process can be placed in the object repository once the process is complete. You can use the selection function to determine which objects in the list (for example, business partner, contract account and so on) should be sorted in ascending order or selected automatically. This enables you to start an additional process for the object from the clipboard. This means you do have to re-enter data. The selection function is considered an invisible component as it does not require its own screen area. Activities You can create a profile for the BD_MARK selection function component in the IMG activity SAP Utilities ® Customer Service ® Customer Interaction Center ® Define Selection Function. In this activity, you define the relevant business object for display and sorting for each configuration (CIC profile). You must not change the entries supplied. You may use the following namespaces: 9*, X | | By: Free Download SAP CRM Books And Interview Question | | |
| | | Search Function Matchcode: SAP FI General Ledger Account Master Data | | 2008-04-08 23:09:40 | | If you want to change or display a G/L account master record, you must know the number of the master record. If you want to post to a G/L account, you must know the number of the G/L account.If you do not know the G/L account number (or have forgotten it), you can search for it using a matchcode. The system stores certain fields of a G/L account master record in the matchcode. You can search for the G/L account using these fields, the ‘matchcodes’.If you want to search for a number, you place the cursor on the field Account number. The Possible entries pushbutton (F4), provides an overview of the matchcodes available:Matchcodes for G/L accounts Matchcode searches for G/L accounts according to =K. Key words =N. G/L account number in the company code =S. G/L account name =C. G/L account number in the chart of accounts The following figure shows the objects which are needed for a matchcode. The matchcode object specifies the data base tables and, b | | By: Free Download SAP FICO Books And Interview Questio | | |
| | What is the STUFF function and how does it differ from the REPLACE function? | | 2008-04-08 22:16:24 | | STUFF function to overwrite existing characters. Using this syntax, STUFF(string_expression, start,length, replacement_characters), string_expression is the string that will have characters substituted,start is the starting position, length is the number of characters in the string that are substituted, andreplacement_characters are the new characters interjected into the string.REPLACE function to replace existing characters of all occurance. Using this syntaxREPLACE(string_expression, search_string, replacement_string), where every incidence ofsearch_string found in the string_expression will be replaced with replacement_string. | | By: Technical Interview Questions | | |
| | CALL FUNCTION SYNTAX FOR SAP ABAP part three | | 2008-04-08 05:14:00 | | Variant 2 CALL FUNCTION func ...STARTING NEW TASK Additions 1. ... DESTINATION dest
2. ... PERFORMING form ON END OF TASK
3. ... EXPORTING p1 = f1 ... pn = fn
4. ... TABLES p1 = itab1 ... pn =...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. | | By: sap abap | | |
| | CALL FUNCTION SYNTAX FOR SAP ABAP extended | | 2008-04-07 02:27:00 | | Variant 5 CALL FUNCTION func IN BACKGROUND TASK. Additions 1. ... DESTINATION dest
2. ... EXPORTING p1 = f1 ... pn = fn
3. ... TABLES p1 = itab1 ... pn = itabn Effect Flags the function module...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. | | By: sap abap | | |
| | What is the function of the transport system and sap abap workbench organiser? | | 2008-04-06 11:58:24 | | The function of the transport system and the Workbench Organizer is tomanage any changes made to objects of the ABAP/4 Development Workbenchand to transport these changes between different SAP systems.What functions does a SAP ABAP data dictionary per...What are the Data types of the SAP ABAP/4 layer?Which objects are independent SAP ABAP Data Dictio...What is a sap abap program Size Category?What is the function of the transport system and s...What are SAP ABAP Pooled Tables Data Dictionary?What is a SAP ABAP table cluster?Typical Structure of ABAP ProgramSystem fields used in SAP ABAP interactive Reporti... | | By: Free SAP,ABAP Books and Interview Questions | | |
| | CALL FUNCTION SYNTAX FOR SAP ABAP | | 2008-04-05 07:21:00 | | Variant 1
CALL FUNCTION func. Additions
1. ... EXPORTING p1 = f1 ... pn = fn
2. ... IMPORTING p1 = f1 ... pn = fn
3. ... TABLES p1 = itab1 ... pn = itabn
4. ... CHANGING p1 = f1 ... pn =...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. | | By: sap abap | | |
| | Difference between Function and Stored Procedure? | | 2008-04-04 11:18:32 | | UDF can be used in the SQL statements anywhere in the WHERE/HAVING/SELECT section where asStored procedures cannot be.UDFs that return tables can be treated as another rowset. This can be used in JOINs with other tables.Inline UDF's can be though of as views that take parameters and can be used in JOINs and otherRowset operations. | | By: Technical Interview Questions | | |
| | ABAP SYNTAX FOR CALL FUNCTION | | 2008-04-04 04:29:00 | | Variant 6 CALL CUSTOMER-FUNCTION func. Effect Calls the function module func . func must be a 3-character literal (e.g. '001')
In line with SAP's enhancement concept, function modules are...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. | | By: sap abap | | |
| | Free Online Translation Tool and Dictionary with Text-To-Speech (TTS) Function | | 2008-04-01 07:32:08 | | Free Online Translation and Dictionary with Text-To-Speech (TTS) Function
If you are unsatisfied with your current online translator, why not try out the following ones? They provide free online translations for Arabic, Chinese, English, Dutch, French, German, Greek, Italian, Japanese, Korean, Portuguese, Russian and Spanish. The translation sites below are almost the same in functionalities, [...] | | By: Eager Learner | Download Free Digital Ebooks & | | |
| | SAP ABAP ALV Function Module Frequently Used | | 2008-04-01 06:31:47 | | (1) REUSE_ALV_LIST_DISPLAYDisplay an ALV list as per parameters defined in the function call(2) REUSE_ALV_GRID_DISPLAYDisplay an ALV grid as per parameters defined in the function call(3) REUSE_ALV_COMMENTARY_WRITEList header information is output according to its type. The output information is put in an internal table. Output attributes are assigned to each line via the TYP field.This module outputs formatted simple header information at TOP-OF-PAGE.(4) REUSE_ALV_HIERSEQ_LIST_DISPLAYThis module outputs two internal tables as a formated hierarchical-sequential list.(5) REUSE_ALV_VARIANT_F4Display variant selection dialog box.(6) REUSE_ALV_VARIANT_EXISTENCEChecks whether a display variant exists. Download Advance SAP ABAP BSP programming Tutorial...SAP ABAP ALL IMPORTANT TCODESWhat is SAP ABAP BDC and How you use it?SAP ABAP Program to get the User exit for any Tran...COMPLETE SAP XI TRANSACTION CODES Frequently usedUnified Access to All SAP ABAP HR InfotypesSAP Quality Management(QM) | | By: Free SAP,ABAP Books and Interview Questions | | |
| | Web Dynpro ABAP Supply Function | | 2008-03-24 13:15:31 | | Each context node of a controller can be assigned a supply function. This supply function is called by the runtime when the data of the context node is used. This is the case when a UI element is to be displayed for the first time with the data of the corresponding context, for example. In general, the supply function is called when one or more elements of a context node are accessed and when ● the context node is not filled yet or is initial, or ● the context node has been invalidated in a previous step. Supply Functions of Singleton Nodes The supply function is especially useful in combination with singleton nodes: The values of subnode elements of the type Singleton depend on the element of the parent node to which the lead selection is currently assigned. If the lead selection is changed by the user, the supply function can access the new lead selection element and recalculate the values of the subnode elements accordingly. For more information on the concept of | | By: Free Download SAP Netweaver Books,Projects And Int | | |
| | Unexpected Nutrient Found Key to Ocean Function | | 2008-03-22 13:57:21 | | Researchers at Oregon State University have discovered what could be a new, limiting nutrient in the world’s oceans. According to their press release.In a publication today in the journal Nature, they report that chemically “reduced” sulfur is a nutrient requirement for SAR11, the smallest free-living cell known and probably the most abundant organism in the [...] | | By: Comprolive | | |
| | | Targeted gene removal can restore function in defective cells | | 2008-03-17 15:43:02 | | Gene therapy, in which a working gene is inserted into a cell to replace a faulty or absent gene, is a promising experimental technique for the prevention and treatment of disease. Now a research team led by a Northwestern University physicist reports that a counterintuitive approach also holds promise. The targeted removal of genes -- the exact opposite of what a gene therapist would do -- can restore cellular function in cells with genetic defects, such as mutations.
read more | | By: Machines Like Us - Science and Technology News | | |
| | | Style, form and function | | 2008-02-25 20:31:14 | | Furniture is one of those necessities that can also have a certain style. You can purchase furniture to match a theme, design or even a sport (like golf) if you really want to. My house is a little bit of a hodge podge probably because when I got married my wife brought her own stuff and it didn't really match with mine. So we are slowly getting rid of mine :-)Furniture from home is one of those stylish design furniture sites. They have some of the most exquisite furniture I have seen that is being sold online. They stock everything from oak captains bed to living room furniture. The site is well designed and is easy to navigate and you can shop by room, style and color. If you are looking for stylish furniture like a storage bed (or anything else) to suit any home or style I recommend taking a look at their website.
| | By: The Golf Blog | | |
| | Awaiting LiveView Function on DSLR from Sony | | 2008-02-23 03:52:23 | | I used to think that the Sony, even though a new player in the DSLR market, offers the best DSLR (Digital Single Lens Reflex) cameras & lenses. I still think that Sony offers the best semi professional DSLR camera.I was eyeing the Sony A700 12 megapixel, 5 frames per second, DSLR camera. Even without the [...] | | By: voyage echoes in the wind | | |
| | | High on StyleHigh on Function | | 2008-02-05 00:00:00 | |
Rounding up on values that go with indoor furniture tends to define modern lifestyle in metros. When every other piece of furniture is designed to serve on value-additions, how can we leave the bed out? Modern Storage Beds make the most sensible choice on functionality. The übercool elements with the statementmore in less room. I think it very much suits the lifestyle. For we need storage as always, but handy storage seems great, we need space, but uncluttered room is better
Looking up for some cool storage furniture for Leo, I found out a few great designs for beds. Perhaps the real factor that appealed is the considerate design that speaks volumes about the thought and meticulation that goes into crafting something as an advanced model that savesspace & money to begin with.. and goes with the open theme
Looks like a sophisticated design, the Oceano Queen with roomy storage. Guess the suite has a pair of sensual nightstands and a great great box bed design that loo | | By: SPACIFY – Modern Furniture | | |
| | Body Swell the Kidney do not Function | | 2008-02-03 01:10:00 | | Ask:At this opportunity, I wish consulted to hit the disease problems faced by my son. In this time its age enter 28 year. Like this package, three-month agosudden without clear cause [of] my child experience of the spastic later;then faint. Whole part of its body swell the seprti of berrys people, its bodytemperature is high.In hospital treatment, swelling which is in the form of the dilution have started normal return But condition lainya not yet baik. This time often gripqueasy, and vomit the, body and its head felt [is] heavy. Than medical inspection result at that time [in] knowing that my child the experience of thetrouble at its kidney function is which can menace its soul, one of its kidney do not function again, while the other one again its function omit about 30-40gratuity again.For the shake of continuity of life henceforth conducted action by a blood wash, what perhaps also to further we have to the money a lot of. For that we askthe clarification concerning natural pain m | | By: Health Consultancy | | |
| | RFC Remote Function Call | | 2008-01-30 10:33:00 | | A remote function call RFC enables a computer to execute a program an a different computer within the same LAN, WAN or Internet network. RFC is a common UNIX feature, which is found
also in other...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. | | By: sap abap | | |
| | | Developing an Outbound IDoc Function | | 2008-01-23 08:39:00 | | This is an individual coding part where you need to retrieve the information from the database and prepare it in the form the recipient of the IDoc will expect the data.
Read data to send :
The...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. | | By: sap abap | | |
| | | | | | "Dastan-e-Hind", APJ School's Annual Prize Distribution Function | | 2007-12-29 22:14:35 | | APeeJay School, Mahavir Marg organized it's 2007 Annual Prize Distribution today in the school auditorium.The invitation passAfter welcoming the chief guests, and the opening address, the prize winners were given their certificates, complimentary books etc.Besides prize giving, the main event was "Dastan-e-Hind", a showcase spanning a period from the First war of independence in 1857, covering various topics and ending with a portrayal of the new India, with a mock TV discussion having rocket scientists, technocrats, etc.A section on the history of the Bollywood with characters showcasing the different eras, ending with a dance on the song "Om Shanti Om" (2007), was also showcased.The program ended with the history and the vision of the APJ school, which was cleverly blended in the discussion mentioned earlier.Later, a dinner was organised, with the VIP crowd enjoying dinner in a separate court. The food was all vegetarian.Slideshow:Video Highlights:Related links:APJ School Jalandhar | | By: Gopal's Blog | | |
| | Nutritional support for joint structure and function | | 2007-12-22 04:00:00 | | The first health care claim of deer velvet antler to be substantiated by scientific evidence, in compliance with US Food and Drug Administration dietary supplement regulations, was announced by the North American Elk Breeders Association (NAEBA) recently. Executive Director Ben Coplan said the determination, made by two consulting firms hired by NAEBA, Nutrinfo of Watertown, Massachusetts and Tradeworks Group, Inc. of Brattleboro, Vermont, is a significant breakthrough for the nation's 1,400 breeders of farm-raised elk.According to Coplan, the Nutrinfo report states there is a reasonable basis to claim that velvet antler helps relieve the symptoms of arthritis. However, a disease claim may not be used for a dietary supplement in the US; therefore, the acceptable statement for product labels and advertisements of a dietary supplement would be "provides nutritional support for joint structure and function." "This determination, by two of the leading dietary supplement firms in the world, is "just what the doctor ordered" for the members of our growing agricultural industry," Coplan said.Many studies have shown most of the carbohydrate in antler is proteoglycan, which is a combination of protein and carbohydrate. The carbohydrate portion is primarily glycosaminoglycan, of which chondroitin sulfate is by far the predominant constituent. One study cited by the Nutrinfo report evaluated the clinical efficacy of chondroitin sulfate in knee osteoarthritis. Treatment with 3 X 400 mg doses per day for 90 days provided significant relief from symptoms as reported by patients. "We intend to research and substantiate other health benefit claims for velvet antler," Coplan said."We want to carefully research the potential benefits of velvet antler supplements for supporting the immune system, anti-aging, muscle strength and endurance, and sexual vitality."Deer velvet antler has been highly regarded in traditional oriental medicine for two thousand years. It is consumed regularly | | By: Natural Sexual Enhancement | | |
| | Supply is a Function of Demand in Real Estate | | 2007-12-08 15:05:14 | | Grand Lake in OK's supply of waterfront homes is shortGrand Lake waterfront homes and vacant waterfront lots in northeast Oklahoma are in short supply. Supply is always a part of the equation in what makes a real estate market soft or hot. The real estate market in Oklahoma never got red hot as the California, Nevada, and Florida markets did. This area has seen slower demand as the result of national media news on the slow real estate market in many areas of the nation.October, normally a brisk paced real estate month of 2007 was extremely slow with buyers afraid the sky was falling from all the national negative news. However beginning about Thanksgiving into the first third of the month of December, normally a slow time has seen the number of lookers pick up. There has also been several deals on waterfront properties.Interest rates are down again making now a great time to buy. With the short supply of waterfront homes available you will not see price declines here. If you wait, the selection may be less yet. The bottom line is, if you want a waterfront home or property on Grand Lake in northeast Oklahoma now is the time to begin your search.Go to the link below to find waterfront homes in the multi-list and search our featured homes section for top quality homes. Call Aaron at 918 801-5645 or Joe at 918 640-3300 for info or to schedule your showing. We are a part of the Grand Lake real estate leaders, RE/MAX Grand Lake in Grove, OK.See AlsoGrand Lake OK HomesSearch our mulit-list and featured homes on Grand Lake here | | By: Grand Lake OK Real Estate and News | | |
| | | Using the Record Function with trakAxPC | | 2007-10-10 21:21:00 | | If you want to record in narrations, voice-overs, videocast segments, raps, some singing - use the record function on trakAxPC to record in directly from your mic or web-cam.
This short video will quickly run through the various options available to you (boost volumes/ change video output etc.) and you should be up and running in no time. Anyway, enough talking - the video should show you all you need to know.
As always, if you have any questions, please visit the forums and we will make every effort to deal with your queries. | | By: TrakAx.com | | |
| | Pointers to Function | | 2007-07-13 07:50:00 | | Function Pointers is a rather confusing yet powerful feature of C++ programming
language. Even if you have programming for a while I bet you have seen nothing
like it, simply because they aren't’t needed in everyday programming.
Their most common use is in writing compilers and interpreters.
The main theory behind function pointers is, just like the contents of a variable
can be accessed by a pointer, much the same way functions can also be invoked
(called) by referencing it by a pointer to that function.
Although variables and functions are two separate identities, both of these
are stored at some memory address which can be pointed (and hence accessed)
by a pointer.
Going in detail of the working of function pointers will only confuse you so
we skip that for now and move on to a simple example program.
The function defined in the program is made as simple as possible to reduce
confusions. Please note that the program only illustrates how function pointe | | By: Learning Computer Programming | | |
| | Mustek 2MP Multi-Function Digital Camera | | 2007-06-25 03:10:00 | | Mustek brand has been globally well known for its excellent quality, professional support, and extensive service. Mustek has been recognized by many international magazines and professional organizations for its excellent innovation technology, production capability, and product quality.PRODUCT FEATURES:2.0 Megapixel hardware resolution;32MB internal flash memory;Audio/Video Out for TV;Easy-to-use Controls & Color TFT 1.5" LCD;SD & MMC Memory Card supported;Smallest, lightweight and compact design.More detail Mustek 2MP Multi-Function Digital Camera | | By: Digital Camera Phone | | |
| | Introduction to Function Overloading in C++ | | 2007-06-17 07:57:00 | | Let us start this with a question!
All of you know that we cannot have two variables of the same name, but can
we have two Functions having the same name.
The answer is YES, we can have two functions of the same name by a method known
as function overloading and the functions having the same name are known as
overloaded functions.
So, what’s the use of Function Overloading
Function overloading is one of the most powerful features of C++ programming
language. It forms the basis of polymorphism (compile-time polymorphism).
Most of the time you’ll be overloading the constructor function of a
class.
How function overloading is achieved
One thing that might be coming to your mind is, how will the compiler know
when to call which function, if there are more than one function of the same
name.
The answer is, you have to declare functions in such a way that they differ
either in terms of the number of parameters or in terms of the type of parameters
they take.
What that means is, nothing s | | By: Learning Computer Programming | | |
| | String Searching Function in C++ | | 2007-06-10 06:42:00 | | Nothing much to say, here I present you with a searching function. It takes
two-character string (array) as the argument and finds the position of the second
string in the first. For example, if the two arrays passed to the function have
the following values:String 1: ”I like C++”
String 2: “C++”then the function will return 7, because as an array, string 1 has the word
C++ starting from the index number 7.If the function cannot find the second string inside first then it will return
the value -1, indicating that the search was unsuccessful.The program below is easy to understand; therefore, I have left it up to you
to understand how it is working.
//C++ program which searches for a substring
//in the main string
#include<stdio.h>
int search(char *string, char *substring);
void main(void)
{
char s1[50], s2[30];
int n;
puts("Enter main string: ");
gets(s1);
puts("Enter substring: ");
gets(s2);
n=search(s1,s2);
if(n!=-1)
{
| | By: Learning Computer Programming | | |
| | Human Stem Cell Treatment Restores Motor Function in Paralyzed Rats | | 2007-06-04 13:45:00 | | Scientist hopes to move to human clinical trials next year as first published in SeniorJournal.ComThe possibility of a restoring motor function for people suffering paralysis may be more than just a dream. Researchers grafted human spinal stem cells into rats paralyzed by loss of blood flow to the spine and they returned to near normal function in six weeks. The lead scientist hopes to move to human clinical trials next year.“We demonstrated that when damage has occurred due to a loss of blood flow to the spine’s neural cells, by grafting human neural stem cells directly into the spinal cord we can achieve a progressive recovery of motor function,” said Martin Marsala, M.D., UC San Diego professor of anesthesiology and leader of the study.“This could some day prove to be an effective treatment for patients suffering from the same kind of ischemia-induced paralysis.”Marsala is currently testing the human stem cell therapy for safety and efficacy in other animal models, and hop | | By: Elder Abuse | | |
| | | RNA-binding proteins: modular design for efficient function | | 2007-05-28 02:04:09 | | Many RNA-binding proteins have modular structures and are composed of multiple repeats of just a few basic domains that are arranged in various ways to satisfy their diverse functional requirements. Recent studies have investigated how different modules
This Week in Science - Tuesday May 22, 2007 Broadcast Erecting Jet-Lag, Opinions Exposed, Watching Eyes, Speaking Whale, Exoplanet Madness, Mo Water On Mars,This Week in the End of the World, & Interview w/ Dr. Francis Everitt of Gravity Probe B >
Mars Rover Spirit Unearths Surprise Evidence of Wetter Past A patch of Martian soil analyzed by NASA's rover Spirit is so rich in silica that it may provide some of the strongest evidence yet that ancient Mars was much wetter than it is now. The processes that could have produced such a concentrated deposit of
Planetary Jewels - StarDate: May 25 Planetary jewels in the evening sky. (Note: Audio will be available tomorrow.)
Have You Inve | | By: Doktertomi.com | | |
| | Know how Search Engines Function | | 2007-05-20 03:36:00 | | Just because your site has been crawled, doesn't mean your site will be indexed by the search engines. Lets take a quick look at how search engines work. There are 3 stages - stage one is where search engine crawlers visit websites collecting the information on webpages and following links on those pages to other pages to collect the information on those pages and so on and so forth. On some websites the crawler may decide to only crawl a few pages if the site isn't considered too important (and we'll come back to this later, as that 'not so important' site may be yours!). After collecting all that information, usually hundreds of millions or even billions of pages, the search engine starts indexing those pages. The search engine analyses each and every page to see what the page is about and how it fits in the site and the overall world wide web. The search engine decides which search queries the page may be relevant to, and then ranks that page against all the other pages on the web which are about the same topic. A single web page may be relevant to few or even dozens of different search terms so these all have to be taken into account. Obviously this is quite a simplistic view of how this works but I just want to give you some idea of the enormity of this task.When a searcher types a search query into the search page, the search engine searches through it's index for what it thinks is the most relevant pages which will match the searchers request. This typically (and quite amazingly) only takes a fraction of a second, and the searcher is presented with a list of webpages that the search engine believes matches their request. For example, I just did a search for "home loans" and there were 34,000,000 results returned. Consider for a moment that you would like your webpage to rank in the top ten for the term "home loans", your page would have to better than 34,000,000 others! Of course, that is not impossible but unless you are a large national or multination | | By: Ask the Blogger - Adsense Tips and Tricks | | |
| | Meeting report: identifying T cell subset phenotype and function | | 2007-04-16 21:24:00 | | Dr. Catherine Derry introduced and chaired this meeting which was held at Hertfordshire Biopark. Its aim was to provide evolving knowledge facilitate their T cell subset characterisation. Professor Adrian Hayday (King’s College London, UK) identified critical roles for gamma-delta T cells in protection, regulation, pathogenesis and therapy. Immunoregulation mediated by CD4+CD25+Foxp3+ regulatory T cells (Treg) was the focus of Dr Jian-Guo Chai’s (Imperial College, UK) talk. He presented key findings on tracking the interplay between antigen-specific naïve and regulatory T cells in vivo. Exploitation of Treg-mediated immunosuppression to control organ rejection in transplantation was proposed by Dr Giovanni Lombardi (King’s College London, UK). She suggested the use of adoptive cell therapy with “customised” antigen-specific Treg to do this. A failure of immunoregulation in pre-eclampsia during pregnancy was discussed by Professor Ian Sargent (University of Oxford, UK) who ch | | By: Mums in Science | | |
| | | |
|
| |
 |
|
| |
| |
|
 |