active questions tagged functions - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T22:49:55Zhttp://stackoverflow.com/feeds/tag/functionshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1809899/how-can-i-assign-the-output-of-a-function-to-a-variable-using-bash0How can I assign the output of a function to a variable using bash?Brent2009-11-27T17:36:08Z2009-11-27T17:37:57Z
<p>I have a bash function that produces some output:</p>
<pre><code>function scan {
echo "output"
}
</code></pre>
<p><strong>How can I assign this output to a variable?</strong></p>
<p>ie. VAR=scan (of course this doesn't work - it makes VAR equal the string "scan")</p>
http://stackoverflow.com/questions/252782/strdup-what-does-it-do-in-c3strdup() - what does it do in C?Manoj Doubts2008-10-31T07:15:45Z2009-11-27T15:50:57Z
<p>What is the purpose of the strdup() function in C?</p>
http://stackoverflow.com/questions/1809168/how-do-i-use-externalinterface-to-allow-flash-to-call-javascript-to-update-a-valu0How do I use externalInterface to allow Flash to call javascript to update a value on the screen? undefined2009-11-27T14:44:29Z2009-11-27T15:19:31Z
<p>I have a Flash movie that is embeded in a PHP page. The PHP page displays a value to the user (the number of images they have uploaded). When the user uploads a new image I want the value on the PHP page to reflect the change without refreshing the page.</p>
<p>This value is retrieved from database using MySQL. So heres what Ive done so far -</p>
<p>On the PHP page where I want to show the value I have a div</p>
<pre><code><div id="content_info"><script type="text/javascript" src="getInfo.php?group= <?php echo($groupid); ?> "></script></div>
</code></pre>
<p>This calls an external PHP file that queries the database and outputs the result like this </p>
<pre><code>Header("content-type: application/x-javascript");
//do the query with PHP and get $number and then output
echo "document.write(\" (".$number.")\")";
</code></pre>
<p>When the page loads for the first time the correct number shows in the div and so all works fine. The next step is to call something to update the contents of this div when the value changes. So I will set up externalInterface in flash to call a javascript function to do this.</p>
<p>This is where Im stuck, I want to be able to do something like this - </p>
<pre><code>function ReplaceContentInContainer(id) {
var container = document.getElementById(id);
container.innerHTML = getInfo.php?type=new&group= <?php echo($groupid) ?>;
}
</code></pre>
<p>and call this by </p>
<pre><code>ReplaceContentInContainer(content_info)
</code></pre>
<p>I realise this isnt going to work but can anyone show me how to get this result? </p>
<p>many thanks</p>
http://stackoverflow.com/questions/1806847/write-a-html-script-inside-javascript-function0write a html script inside javascript functionAllen2009-11-27T05:02:49Z2009-11-27T05:28:14Z
<p>hi, i am newbie and want to render a page on click of a button
so i called a function on a onclick attribute of button calling <strong>'calltemp1'</strong> method</p>
<p>and in that js function i want it to write on page
" <strong><%Html.RenderPartial("/Views/Templates/Temp1.ascx");%></strong> "
this line of code.
when i used
document.write('<%Html.RenderPartial("/Views/Templates/Temp1.ascx");%>');</p>
<p>i didn't work
neither did this script</p>
<pre><code><script type="text/javascript">
function calltemp1() {
var rv ='<%Html.RenderPartial("/Views/Templates/Temp1.ascx");%>';
$("#rendereddiv").html(rv);
}
</script>
<div id="rendereddiv"></div>
</code></pre>
<p>pls help....</p>
http://stackoverflow.com/questions/1626597/best-practice-should-functions-return-null-or-an-empty-object30Best Practice: Should functions return null or an empty object?Roberto Sebestyen2009-10-26T18:44:05Z2009-11-26T07:08:12Z
<p>What is the best practice when returning data from functions. Is it better to return a Null or an empty object? And why should one do one over the other?</p>
<p>Consider this:</p>
<pre><code>public UserEntity GetUserById(Guid userId)
{
//Imagine some code here to access database.....
//Check if data was returned and return a null if none found
if (!DataExists)
return null;
//Should I be doing this here instead?
//return new UserEntity();
else
return existingUserEntity;
}
</code></pre>
<p>Lets pretend that there would be valid cases in this program that there would be no user information in the database with that GUID. I Would imagine that it would not be appropriate to throw an exception in this case?? Also I am under the impression that exception handling can hurt performance.</p>
http://stackoverflow.com/questions/1801558/php-exit-function-question0Php exit function questionOneNerd2009-11-26T04:40:32Z2009-11-26T04:42:57Z
<p>I have noticed a behavior in PHP that makes sense, but I am unsure how to get around it.</p>
<p>I have a long script, something like this</p>
<pre><code><?php
if ( file_exists("custom_version_of_this_file.php") ) {
require_once "custom_version_of_this_file.php";
exit;
}
// a bunch of code etc
function x () {
// does something
}
?>
</code></pre>
<p></p>
<p>Interestingly, the function x() will get registered with the script BEFORE the require_once() and exit are called, and therefore, firing the exit; statement does not prevent functions in the page from registering. Therefore, if I have a function x() in the require_once() file, the script will crash.</p>
<p>Because of the scenario I am attempting (which is, use the custom file if it exists instead of the original file, which will likely be nearly identical but slightly different), I would like to have the functions in the original (calling) file NOT get registered so that they may exist in the custom file.</p>
<p>Anyone know how to accomplish this?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1799337/prior-declarations-of-functions1prior declarations of functionszlack2009-11-25T19:18:47Z2009-11-25T20:04:00Z
<p>Why do functions need to be prior declared in C ?</p>
http://stackoverflow.com/questions/1797640/disadvantages-of-first-class-functions3Disadvantages of First-class functionsLearner2009-11-25T15:21:20Z2009-11-25T18:39:20Z
<p>Are there any disadvantages to having first class functions in a language? </p>
<p>I might be naïve here, but why don’t all languages support first class functions if there aren’t much issues </p>
http://stackoverflow.com/questions/1798543/from-a-usage-standpoint-whats-the-difference-between-a-private-and-protection-c2From a usage standpoint, what's the difference between a private and protection class function?Citizen2009-11-25T17:24:00Z2009-11-25T17:32:51Z
<p>I know the manual definition, but from a real life usage standpoint, what's the difference? When would you use one over the other?</p>
http://stackoverflow.com/questions/1793123/c-map-functions-of-a-class-while-declaring-the-functions0[C++] Map functions of a class while declaring the functionsJonathan2009-11-24T21:44:00Z2009-11-25T13:00:15Z
<p>Hi,</p>
<p>My previous question about this subject was answered and I got some tests working nice.
<a href="http://stackoverflow.com/questions/1786809/c-map-functions-of-a-class">http://stackoverflow.com/questions/1786809/c-map-functions-of-a-class</a></p>
<p>My question is now, if there is a way to while declaring the function, be able to register it in a map, like I realized in this question about namespaces and classes:
<a href="http://stackoverflow.com/questions/1691473/c-c-somehow-register-my-classes-in-a-list">http://stackoverflow.com/questions/1691473/c-c-somehow-register-my-classes-in-a-list</a></p>
<p>the namespaces and classes was fine to register in a map using the "static" keyword, with that, those static instances would be constructed before the main() be called.</p>
<p>Can I do that somehow with class functions?<br>
because when I use static keyword inside a class declaration, I can't initialize the member as I can outside the class declaration(as with namespaces and classes in the second url above) </p>
<p>I guess I could hardcode all members inside the constructor and register them in a map, but I would like to know if there is a way to do that while I declare the members, to make it easier in the future</p>
<p>Thank you,<br>
Joe</p>
http://stackoverflow.com/questions/1789322/why-does-my-yacc-program-not-recognize-function-declarations0Why does my yacc program not recognize function declarations?Phenom2009-11-24T10:58:08Z2009-11-25T09:24:55Z
<p>I think my program should be able to recognize the following as a function declaration</p>
<pre><code>int fn(int i) { int n; return; }
</code></pre>
<p>but it doesn't.</p>
<p>Here's the relevant part of my yacc file</p>
<pre><code>program : declaration_list ;
declaration_list : declaration_list declaration | declaration ;
declaration : var_declaration
| fun_declaration
| '$' { printTable();};
var_declaration : type_specifier ID ';' {$2->value = 0; $2->arraysize = 0;};
| type_specifier ID '[' NUM ']' ';' {$2->arraysize = $4;printf("Array size is %d", $2->arraysize);} ;
type_specifier : INT | VOID ;
fun_declaration : type_specifier ID '(' params ')' compound_stmt {printf("function declaration\n"); printf("Parameters: \n", $2->args); } ;
params : param_list | VOID ;
param_list : param_list ',' param
| param ;
param : type_specifier ID | type_specifier ID '[' ']' ;
compound_stmt : '{' local_declarations statement_list '}' {printf("exiting scope\n"); } ;
local_declarations : local_declarations var_declaration
| /* empty */ ;
statement_list : statement_list statement
| /* empty */ ;
statement : expression_stmt
| compound_stmt
| selection_stmt
| iteration_stmt
| return_stmt ;
expression_stmt : expression ';'
| ';' ;
selection_stmt : IF '(' expression ')' statement
| IF '(' expression ')' statement ELSE statement ;
iteration_stmt : WHILE '(' expression ')' statement ;
return_stmt : RETURN ';' | RETURN expression ';' ;
</code></pre>
<p>Why does it not recognize it?</p>
http://stackoverflow.com/questions/1790704/difference-between-square-brackets-and-asterisk5Difference between [square brackets] and *asteriskbobobobo2009-11-24T15:13:19Z2009-11-24T17:19:36Z
<p>If you write a C++ function like</p>
<pre>
void readEmStar( int *arrayOfInt )
{
}
</pre>
<p>vs a C++ function like:</p>
<pre>
void readEmSquare( int arrayOfInt[] )
{
}
</pre>
<p>What is the difference between using [square brackets] vs *asterisk, and does anyone have a style guide as to which is preferrable, assuming they are equivalent to the compiler?</p>
<p>For completeness, an example</p>
<pre><code>void readEmStar( int *arrayOfInt, int len )
{
for( int i = 0 ; i < len; i++ )
printf( "%d ", arrayOfInt[i] ) ;
puts("");
}
void readEmSquare( int arrayOfInt[], int len )
{
for( int i = 0 ; i < len; i++ )
printf( "%d ", arrayOfInt[i] ) ;
puts("");
}
int main()
{
int r[] = { 2, 5, 8, 0, 22, 5 } ;
readEmStar( r, 6 ) ;
readEmSquare( r, 6 ) ;
}
</code></pre>
http://stackoverflow.com/questions/1786399/multiple-function-calls-only-the-last-succeeds-why0Multiple function calls, only the last succeeds. Why?est2009-11-23T22:09:36Z2009-11-23T23:44:20Z
<p>I store an array of values in my cookie as a string (with ',' as separator). I update them using explode(), implode() and setcookie() methods in a custom function set_Cookie() <strong>and it works great</strong>.</p>
<pre><code>function set_Cookie($name, $position, $value) {
$cookie = ($_COOKIE[$name]);
$cookie_exp = explode(",", $cookie);
$cookie_exp[$position] = $value;
$cookie_imp = implode(",", $cookie_exp);
setcookie($name,$cookie_imp);
}
</code></pre>
<p><hr></p>
<p>The only problem I have is when I try to call the function multiple times - <strong>only the last call succeeds in updating the value</strong>. In other words: In the code below only 'position3' would get updated with 'value3' but other positions would not get updated at all:</p>
<pre><code>set_Cookie('cookie1','$position1','value1');
set_Cookie('cookie1','$position2','value2');
set_Cookie('cookie1','$position3','value3');
</code></pre>
<p><hr></p>
<p><strong>Initial cookie1 values:</strong> 0,0,0</p>
<p><strong>Result:</strong> 0,0,value3</p>
<p><hr></p>
<p>What am I missing? </p>
http://stackoverflow.com/questions/1785523/haskell-how-do-i-define-the-types-my-function-can-take-as-parameters-and-how-do0Haskell: How do I define the types my function can take as parameters? AND how do I access unnamed variables in a data structure?Thomas King2009-11-23T19:52:37Z2009-11-23T20:52:03Z
<p>1) Here is my code, the find function needs to take a (Node a) and a type (a) as parameters but my function definition doesn't seem to work, what am I doing wrong? Little info on the net that I can find, so thanks for any help!</p>
<p>2) When my find function is implemented I'll need to access a specific variable in a Node, how do I do this?!?</p>
<pre><code>-- int for comparisons
find :: (Node a) => Node a -> a -> Bool
find n s
| s == "asd" = True
| s /= "asd" = False
data Node a = Node a (Node a) (Node a)
| Empty
myTree = Node "parent" (Node "left" Empty Empty)
(Node "right" Empty Empty)
</code></pre>
<p>Here is the error message I get:</p>
<pre><code>Type constructor `Node' used as a class
In the type `(Node a) => Node a -> a -> Bool'
In the type signature for `find':
find :: (Node a) => Node a -> a -> Bool
Failed, modules loaded: none.
</code></pre>
<p>I'm obviously still learning this so an explanation of the solutions would also be appreciated, thankyou!</p>
http://stackoverflow.com/questions/1517460/zend-framework-a-common-file-to-put-functions-in-that-can-be-accessed-from-a-view1Zend Framework a common file to put functions in that can be accessed from a viewEricP2009-10-04T21:45:11Z2009-11-23T17:24:10Z
<p>I need to have a place to put some common functions that various view scripts will use such as creating some html by passing it a variable. I know about using helpers, but I want to be able to put many functions inside it not just one helper for each function.
Is it a plugin that I need to create?</p>
<p>thanks</p>
http://stackoverflow.com/questions/1782265/issue-with-scope-and-closures-in-javascript0Issue with scope and closures in JavaScriptAndreas Grech2009-11-23T10:29:21Z2009-11-23T12:54:09Z
<p>My question is really more about scope in JavaScript, rather then closures.</p>
<p>Let's take the following code:</p>
<pre><code>var f = function () {
var n = 0;
return function () {
return n++;
};
}();
console.log(f());
console.log(f());
</code></pre>
<p>The above code outputs:</p>
<pre><code>0
1
</code></pre>
<p>As you can see from the above code, <code>f</code> (self-invoked) returns a function, creating a closure of <code>n</code>.</p>
<p><hr></p>
<p>So, it works with an anonymous function; thus, I then tried it with a named function:</p>
<pre><code>var f2 = function () {
return n++;
};
var f = function () {
var n = 0;
return f2;
}();
console.log(f2()); // <= [n is not defined]
</code></pre>
<p>The above code doesn't work, with the error <code>n is not defined</code>. I assume that this is a scoping issue; but I cannot figure why exactly; </p>
<p>Why is it that the scope is the same with an anonymous, inner function but does not work with a named, outer function?</p>
<p>Also, in the second example, am I creating a closure?</p>
http://stackoverflow.com/questions/419240/how-to-get-javascript-function-data-into-php-variable1How to get javascript function data into Php variablevenkatachalam2009-01-07T05:02:20Z2009-11-23T12:11:52Z
<p>Dear all
I am using PHP and Javascript, My Javascript conatains function get_data()</p>
<pre><code> function get_Data(){
var name;
var job;
.....
return buffer;
}
</code></pre>
<blockquote>
<p>Now I have PHP with following</p>
</blockquote>
<pre><code> <?php
$i=0;
$buffer_data;
/*here I need to get the Value from Javascript get_data() of buffer;
and assign to variable $buffer_data*/
?>
</code></pre>
<blockquote>
<p>How to assign the javascript function
data into the PHP variable?</p>
</blockquote>
http://stackoverflow.com/questions/1776291/function-names-in-c-capitalize-or-not1Function names in C++: Capitalize or not?unknown (google)2009-11-21T18:24:27Z2009-11-22T02:54:33Z
<p>What's the convention for naming functions in C++?</p>
<p>I come from the java environment so I usually name something like:</p>
<pre><code>myFunction(...){
}
</code></pre>
<p>I've seen mixed code in C++, </p>
<pre><code>myFunction(....)
MyFunction(....)
Myfunction(....)
</code></pre>
<p>what's the correct way?</p>
<p>Also, is it the same for a class function and for a function that's not a class function?</p>
http://stackoverflow.com/questions/1763580/as3-accessing-custom-class-public-functions-from-a-movieclip-on-a-timeline1AS3: Accessing custom class public functions from a MovieClip on a timelinePJ Palomaki2009-11-19T14:16:16Z2009-11-22T00:10:12Z
<p>Hi,</p>
<p>I've got a AS3 program with a Main.as custom class.</p>
<p>In this class I load an instance of a 'menu' movieclip which has simpleButton instances inside... How do I access the Main class public functions by the menu movieclip buttons?</p>
<p>I.e. Menu button -> gotoPage(5); (which is a Main public function)</p>
<p>If I try to access the Main function with the above statement, it gives</p>
<p>"1180: Call to a possibly undefined method gotoPage.</p>
http://stackoverflow.com/questions/1774077/jquery-synchronous-functions0jquery synchronous functionsngreenwood62009-11-21T00:35:26Z2009-11-21T01:35:35Z
<p>Is there a way to run a function after another functions completes? For example:</p>
<pre><code>doSomething();
doSomethingElse();
</code></pre>
<p>i only want doSomethingElse() to run after doSomething completes. is this possible?</p>
http://stackoverflow.com/questions/1574004/accessing-function-from-multiple-forms-on-same-page0Accessing function from multiple forms on same page.Dave2009-10-15T17:49:15Z2009-11-20T00:00:04Z
<p>Hi,</p>
<p>I have the following function:</p>
<pre><code><script type="text/javascript">
$(function(){
// start a counter for new row IDs
// by setting it to the number
// of existing rows
var newRowNum = 2;
// bind a click event to the "Add" link
$('#addnew').click(function() {
// increment the counter
newRowNum += 1;
// get the entire "Add" row --
// "this" refers to the clicked element
// and "parent" moves the selection up
// to the parent node in the DOM
var addRow = $(this).parent().parent();
// copy the entire row from the DOM
// with "clone"
var newRow = addRow.clone();
// set the values of the inputs
// in the "Add" row to empty strings
//$('input', addRow).val('');
//$('name', addRow).val('os' + newRowNum);
// replace the HTML for the "Add" link
// with the new row number
$('td:first-child', newRow).html('<input type="hidden" name="on' + newRowNum + '" value="Email Address ' + (newRowNum - 1) + '">Recipient');
// insert a remove link in the last cell
$('td:last-child', newRow).html('<a href="" class="remove">Remove<\/a>');
// loop through the inputs in the new row
// and update the ID and name attributes
$('input:hidden', newRow).attr('id','on' + newRowNum ).attr('name','on' + newRowNum );
$('input:text', newRow).attr('id','os' + newRowNum ).attr('name','os' + newRowNum );
// insert the new row into the table
// "before" the Add row
addRow.before(newRow);
document.tp01.quantity.value = newRowNum-1;
// add the remove function to the new row
$('a.remove', newRow).click(function(){
$(this).parent().parent().remove();
return false;
});
// prevent the default click
return false;
});
});
</script>
</code></pre>
<p>This function is called by clicking on a link in a form (this function adds or removes rows from a table). The link looks like this:</p>
<pre><code><a id="addnew" href="">Add</a>
</code></pre>
<p>I need to put more forms on the same page accessed by a link in each of those forms that is, as far as the user is concerned, exactly the same as the one shown above. Can someone make suggestions as to how I can reuse the same function to accomplish this?</p>
<p>Thanks</p>
<p>Dave</p>
http://stackoverflow.com/questions/1723857/patterns-for-declaring-functions-for-grater-readability1Patterns for declaring functions for grater readabilitySmith3252009-11-12T17:14:17Z2009-11-19T16:36:40Z
<p>In C++ functions needed to be declared before they were called. This could be worked around with function signatures but for the most part this is no longer required in newer programming languages, C#, Python, ETC.</p>
<p>However, while reading other peoples, code and when having to structure functions in a class, I find that I miss the consistency that existed in C++.</p>
<p>What patterns exist to declare/order function while maintaining readability and understanding about the structure of your code?</p>
<p><strong>Edit 1</strong></p>
<p><hr></p>
<p>Here is an rough example.</p>
<pre><code>class A
{
private FunkB()
{
...
}
private FunkC()
{
...
}
public FunkA()
{
FunkB();
FunkC();
}
public FunkD()
{
FunkC();
...
}
}
</code></pre>
<p>v.s.</p>
<pre><code>class A
{
public FunkA()
{
FunkB();
FunkC();
}
private FunkB()
{
...
}
private FunkC()
{
...
}
public FunkD()
{
FunkC();
...
}
}
</code></pre>
<p><strong>Edit 2</strong></p>
<p><hr></p>
<p>This would be a guideline for writing code regardless of editors. Newer editors have excellent "go to definition" features and book marks help out with this too. However I'm interested in a <strong>editor independent</strong> pattern. </p>
http://stackoverflow.com/questions/1760945/extract-the-number-and-name-of-python-method-arguments0extract the number and name of python method argumentswroscoe2009-11-19T04:48:36Z2009-11-19T04:50:19Z
<p>How can I return the arguments of a function in a different module</p>
<pre><code>#Module: functionss.py
def simple(a, b, c):
print "does something"
#Module: extract.py
#load the called module and function
def get_args(module_name, function_name):
modFile, modPath, modDesc = imp.find_module(module_name)
mod = imp.load_module(module_name,modFile,modPath,modDesc)
attr = getattr(mod, function_name)
#this is the part I don't get - how do I read the arguments
return = attr.get_the_args()
if __name__ == "__main__":
print get_args("functions.py", "simple")
#this would ideally print [a, b, c]
</code></pre>
http://stackoverflow.com/questions/1755010/best-way-to-return-early-from-a-function-returning-a-reference6Best way to return early from a function returning a referenceWhyamistilltyping2009-11-18T10:22:44Z2009-11-19T03:15:01Z
<p>Let us say we have a function of the form:</p>
<pre><code>const SomeObject& SomeScope::ReturnOurObject()
{
if( ! SomeCondition )
{
// return early
return ;
}
return ourObject;
}
</code></pre>
<p>Clearly the code above has an issue, if the condition fails then we have a problem as to how to return from this function.
The crux of my question is what is the best way to handle such a situation?</p>
http://stackoverflow.com/questions/1760495/python-funcdict-used-to-memoize-other-useful-tricks0Python func_dict used to memoize; other useful tricks?behindthefall2009-11-19T02:18:27Z2009-11-19T03:12:41Z
<p>A Python function object has an attribute dictionary called <code>func_dict</code> which is visible from outside the function and is mutable, but which is not modified when the function is called. (I learned this from answers to a question I asked yesterday (#1753232): thanks!) I was reading code (at <a href="http://pythonprogramming.jottit.com/functional%5Fprogramming" rel="nofollow">http://pythonprogramming.jottit.com/functional%5Fprogramming</a>) which memoized the computation of Fibonacci numbers and thought, "Why not use the <code>func_dict</code> attribute for memoizing?" It worked (see below; the output's at the end of the code.). It's a little like having a class property available but having the initialization code outside the object (in this case, not a class but a function). </p>
<p>I wonder <strong>what similar (or dissimilar) tricks can be done using this attribute</strong>?</p>
<pre><code>def fib(n):
if n in fib.cache:
print "found fib.cache[%d] = %d: " %(n, fib.cache[n])
return fib.cache[n]
else:
print "fib.cache[%d] = fib(%d) + fib(%d)" % (n, n-1, n-2)
fib.cache[n] = fib(n-1) + fib(n-2)
print "modified fib.cache: ", fib.cache
return fib.cache[n]
fib.cache = {0:0, 1:1}
for x in range(7):
print "==================>", x
print fib( x)
"""
==================> 0
found fib.cache[0] = 0:
0
==================> 1
found fib.cache[1] = 1:
1
==================> 2
fib.cache[2] = fib(1) + fib(0)
found fib.cache[1] = 1:
found fib.cache[0] = 0:
modified fib.cache: {0: 0, 1: 1, 2: 1}
1
==================> 3
fib.cache[3] = fib(2) + fib(1)
found fib.cache[2] = 1:
found fib.cache[1] = 1:
modified fib.cache: {0: 0, 1: 1, 2: 1, 3: 2}
2
==================> 4
fib.cache[4] = fib(3) + fib(2)
found fib.cache[3] = 2:
found fib.cache[2] = 1:
modified fib.cache: {0: 0, 1: 1, 2: 1, 3: 2, 4: 3}
3
==================> 5
fib.cache[5] = fib(4) + fib(3)
found fib.cache[4] = 3:
found fib.cache[3] = 2:
modified fib.cache: {0: 0, 1: 1, 2: 1, 3: 2, 4: 3, 5: 5}
5
==================> 6
fib.cache[6] = fib(5) + fib(4)
found fib.cache[5] = 5:
found fib.cache[4] = 3:
modified fib.cache: {0: 0, 1: 1, 2: 1, 3: 2, 4: 3, 5: 5, 6: 8}
8
"""
</code></pre>
http://stackoverflow.com/questions/1746116/python-tabstop-aware-len-and-padding-functions2Python tabstop-aware len() and padding functionssmci2009-11-17T01:54:07Z2009-11-17T23:07:24Z
<p>Python's len() and padding functions like string.ljust() are not tabstop-aware, i.e. they treat '\t' like any other single-width character, and don't round len up to the nearest multiple of tabstop.
Example: </p>
<pre><code>len('Bear\tnecessities\t')
</code></pre>
<p>is 17 instead of 24 ( i.e. 4+(8-4)+11+(8-3) )</p>
<p>and say I also want a function <code>pad_with_tabs(s)</code> such that </p>
<pre><code>pad_with_tabs('Bear', 15) = 'Bear\t\t'
</code></pre>
<p>Looking for simple implementations of these - compactness and readability first, efficiency second.
This is a basic but irritating question.
@gnibbler - can you show a purely Pythonic solution, even if it's say 20x less efficient?</p>
<p>Sure you could convert back and forth using str.expandtabs(TABWIDTH), but that's clunky.
Importing math to get <code>TABWIDTH * int( math.ceil(len(s)*1.0/TABWIDTH) )</code> also seems like massive overkill.</p>
<p>I couldn't manage anything more elegant than the following:</p>
<pre><code>TABWIDTH = 8
def pad_with_tabs(s,maxlen):
s_len = len(s)
while s_len < maxlen:
s += '\t'
s_len += TABWIDTH - (s_len % TABWIDTH)
return s
</code></pre>
<p>and since Python strings are immutable and unless we want to monkey-patch our function into string module to add it as a method, we must also assign to the result of the function:</p>
<pre><code>s = pad_with_tabs(s, ...)
</code></pre>
<p>In particular I couldn't get clean approaches using list-comprehension or string.join(...)</p>
<pre><code>''.join([s, '\t' * ntabs])
</code></pre>
<p>without special-casing the cases where len(s) is < an integer multiple of TABWIDTH, or len(s)>=maxlen already.</p>
<p>Can anyone show better len() and pad_with_tabs() functions?</p>
http://stackoverflow.com/questions/1750480/use-random-functions-python2use random functions (python)n00bie2009-11-17T17:33:33Z2009-11-17T18:07:01Z
<p>Hi,</p>
<p>I wonder if we can do that in python, let's suppose we have 3 differents functions to processing datas
like this:</p>
<pre><code>def main():
def process(data):
.....
def process1(data):
.....
def process2(data):
.....
def run():
test = choice([process,process1,process2])
test(data)
run()
main()
</code></pre>
<p>Can we choice one random function to process the data ?
If yes, is this a good way to do so ?</p>
<p>Thanks !</p>
http://stackoverflow.com/questions/666534/calling-remote-php-functions-from-an-iphone-app1Calling remote php functions from an iPhone appJeff2009-03-20T15:03:05Z2009-11-16T21:11:08Z
<p>Anyone have any suggestions on how to set up both the php and the cocoa side of calling php functions? As a quick idea of what I want to do, I want to be able to to populate two tables with data and add/remove data from the db. So I want to set up a few functions in php that I can call from my iPhone code that will return values from my queries. I should note that my db is MySQL.</p>
<p>Mostly I'm interested in the syntax so if you have any code examples that I can play around with that would be super helpful. </p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1739025/why-i-cant-pass-two-chars-as-function-arguments-in-c0Why I can't pass two chars as function arguments in C?goe2009-11-15T22:08:55Z2009-11-15T22:29:42Z
<p>I have a function:</p>
<pre><code>int get_symbol(tab *tp, FILE *fp, char delim)
</code></pre>
<p>and I call it like this:</p>
<pre><code>get_symbol(tp, fp, ';')
</code></pre>
<p>I always have it declared in the header as:</p>
<pre><code>int get_symbol(tab *, FILE *, char);
</code></pre>
<p>No this all works fine, I can execute the code in the function and the delim is set.
But if I try to add one more char to the function's signature like:</p>
<pre><code>int get_symbol(tab *tp, FILE *fp, char delim1, char delim2)
</code></pre>
<p>The function stops executing. Why would that be? </p>
http://stackoverflow.com/questions/1737609/should-i-kill-a-function-running-as-a-thread-net1Should I kill a function running as a thread (.Net)MeLight2009-11-15T14:11:06Z2009-11-15T14:32:19Z
<p>Hi,
I've just started with C#. I'm running an object's function as a thread (new Thread(myFunc).Start()).</p>
<p>Does the thread kill itself when the function is finished or must I manually get rid of it? If I must, what is the best way to do it (I may not know when it finishes etc)?</p>
<p>Thanx!</p>