Built-in functions, modules and classes are standard parts of a programming language or framework.

learn more… | top users | synonyms

0
votes
1answer
30 views

WiX: Use [ComputerName] with property in Transforms.xml

I need to use the built-in variable [ComputerName] in a property in a Transforms.xml WiX file. What I'm doing: <Property Id="MYCOMPUTERNAME" VALUE="[ComputerName]" /> What shows up is: ...
2
votes
2answers
47 views

How to shadow python builtin pwd module

There is some python code that works under Linux. It uses the pwd module in a way like that: import pwd ... def func(): user=pwd.getpwnam(user)[2] Now we have a specific need to cover ...
1
vote
1answer
34 views

Can only see comments for built in MATLAB files

So, this has never happened before, but for some reason, I am unable to view a default MATLAB file. That is, a *.m file that comes with your MATLAB program, (for example 'fft', 'transpose', 'angle', ...
1
vote
6answers
112 views

python naming conflict with built-in function

I have made a mistake as below: >>> list = ['a', 'b', 'c'] But now I wanan use the built-in function list(). As you can see, that is naming conflict between listname list and built-in ...
0
votes
0answers
52 views

PHP Built-in web server, request uri length

I have a situation in the office. For development, i have been using the built-in web server that comes with PHP 5.4. My problem is, on my local machine, it works like a charm but on the staging ...
0
votes
0answers
34 views

Sending emails using javascript [duplicate]

I need to write a script to make a questionary and then email the answers to me. The first part of the script was easy just a couple of variables and prompt. But I got stuck in the emailing part. My ...
0
votes
1answer
33 views

Error: “httpd.conf: module auth_basic_module is built-in and can't be loaded” apache ubuntu on ec2 instance"

I have an ec2 instance with ubuntu 12.04 installed. I am trying to upload a running server application on this instance. The application requires JBoss 4.0.4 and apache 2.2.3 to run. The application ...
0
votes
1answer
26 views

Android Built-in Popoup Sender

I would like to know if there is already any built-in popup for android, giving some options to send file. Via Bluetooth/Email and maybe other options if they exist. Any default popup already done to ...
3
votes
2answers
73 views

Python, what is the object method of built-in id()?

In Python: len(a) can be replaced by a.__len__() str(a) or repr(a) can be replaced by a.__str__() or a.__repr__() == is __eq__, + is __add__, etc. Is there similar method to get the id(a) ? If ...
-6
votes
2answers
87 views

Built in function to compare strings in C++?

I need some built-in function to compare strings. For C-style strings I have strcmp(); But I need some function to deal with the string class. string name1; string name2;
0
votes
2answers
46 views

Why use builtin commands over external programs (in bash scripts)?

This question is concerned with the negative impacts of using external programs versus instead of builtin constructs -- specifically concerning sed, and external programs in general. Obviously, using ...
0
votes
0answers
10 views

More clarity about buit-in, basic and primitive data type?

I have seen some definitions about basic data type, primitive data type, and built-in data type. But I am not sure yet, how can I say a data type is basic or primitive or even primitive basic! Is ...
2
votes
4answers
83 views

C/C++: do built-in objects such as `int` `double` always stay in the exact place within memory in the duration of the program?

Do built-in types which are not defined dynamically, always stay in the same piece of memory during the duration of the program? If it's something I should understand how do I go about and check it? ...
1
vote
2answers
24 views

No documentation for built-in object type review (see video.rates action) or news.read ?

On the FB documentation (https://developers.facebook.com/docs/reference/opengraph/object-type), i can't see the built-in object "Review", but this object is used in the action 'video.rates' => ...
0
votes
3answers
96 views

pop() method in python lists doesn't work properly

When I execute the following code in Python 2.7.3: #!/usr/bin/env python # -*- coding: utf-8 -*- class A(object): def __init__(self): self.s = [] class B(object): def ...
0
votes
1answer
27 views

function similar to basename for getting the root url

Is there a built in function in php for getting just the root url of a url, similar to how basename gets the filename, but nothing else. ie. this pseudo code echo ...
3
votes
1answer
65 views

Python version of C++ all_of

Is there any better way (using built-in functions) to rewrite the following piece of code: def all_of(iterable, predicate): for elem in iterable: if not predicate(elem): ...
0
votes
1answer
21 views

Rename built-in functions w/o using 3rd party add-on?

I'd like to preface the built-in PHP functions in my code with "php_" to simply make it easier to identify them as such, and to do so without using a 3rd party add-on. So my first attempt at it was ...
-1
votes
1answer
84 views

c# built in methods performance [closed]

I am trying to write an encryption tool for any kind of data. Therefore I read out all bytes of a File. It seems to work properly, but when I try to read the bytes of a bigger file, it seems to be ...
3
votes
1answer
32 views

Python id(obj) changes ad-hoc [duplicate]

Here's an excerpt from Python's docs re id() build-in function: == id(object) == Return the “identity” of an object. This is an integer (or long integer) which is guaranteed to be unique and constant ...
3
votes
2answers
59 views

How to get the unique slices of a matrix?

In matlab, if you have a matrix A you can find the matrix B containing all of the unique rows of A as follows: B = unique(A,'rows'); What I have is a 3d matrix, with rows and columns as the first ...
1
vote
1answer
17 views

Aggregate query fails on log([data])

enter code hereI'm building an aggregate query in the design view. If I average the original data, everything works just fine. As soon as I try to average log([data]) I get an error: "Data type ...
2
votes
5answers
125 views

Java built-in class to interface

Can you create an interface that inherets all functions of an java built-in class? What I am trying to do: I have a lot of classes that extends Fragment, in the classes there are some attributes ...
1
vote
2answers
47 views

What is the most efficient way to concatenate files of different compression types in a bash script?

I have come across this need several times now and I am surprised how hard it has been for me to find a "best" method for concatenating files of different compression types. For instance, I have a ...
3
votes
2answers
137 views

How to override built-in PHP function(s)?

I would like to override, let's say mysql_num_rows with let's say following: $dataset = array(array('id' => 1, 'name' => 'Zlatan', 'onSOF' => 1), array('id' => 1, 'name' => 'Guest', ...
0
votes
0answers
70 views

VSTO Built-in buttons OnClick event

I have an Excel addin, and I'm trying to set some of the button images to be dependent on the Theme Color (colour) of the workbook. Is there a way to determine when the Theme Color has been changed, ...
-4
votes
4answers
257 views

php upper and lowercase without built in function [closed]

Hey guys i want to convert a string from lowercase to uppercase and vice versa without using any built in functions strtoupper or strtolower in php, can anyone help me please. edit: I can use some ...
2
votes
1answer
121 views

PHPUnit: Mocking __get() results in “__get() must take exactly 1 argument …”

I got a problem with mocking an overloaded __get($index) method. Code is as follows: public function __get($index) { if (isset($this->vars[$index])) { return ...
1
vote
3answers
185 views

Why python allows to overwrite builtin constants?

Although True, False are builtin constants, the following is allowed in Python. >>> True = False >>> a = True >>> b = False >>> print a,b False False Any ...
-1
votes
1answer
46 views

Finding the built-in modules/packages that comes with java [closed]

I am trying to find the below details on Linux How to find whether Java is installed or not What are the built-in modules or packages that Java comes by default After finding the built-in modules, ...
5
votes
2answers
117 views

bash built in function bash source code

How to find source of a built in bash function? I know that it is a function: $type -t MY_APP function I see it's code: type MY_APP code The questions are: Where is it stored? How can I ...
4
votes
2answers
159 views

Merge two objects in Python

Is there a good way to merge two objects in Python? Like a built-in method or fundamental library call? Right now I have this, but it seems like something that shouldn't have to be done manually: ...
-1
votes
2answers
110 views

Is there is a built-in method to sort a 2D array directly?

Is there is a built-in method in Java to sort a 2D array directly For example: if I have an array of first name & phone number, can I sort it according to the first name while each name will keep ...
3
votes
1answer
93 views

Is “[object Function]” uniquely for built-in functions?

I am trying to write a bookmarklet that only dumps non-built-in globals to the console. I found window.Audio and some other built-in functions to have toString() return "[object Function]". Is it ...
2
votes
5answers
201 views

Respect last line if it's not terminated with a new line char (\n) when using read

I have noticed for a while that read never actually reads the last line of a file if there is not, at the end of it, a "newline" character. This is understandable if one consider that, as long as ...
2
votes
2answers
115 views

Count the number of occurrences of a pattern in a string (with bash builtins only)

I have a string which looks like this: STRING="$PATTERN_some-stuff_$PATTERN_some-other_stuff" I would like to count the number of occurences of $PATTERN in it, only with Bash builtin commands. The ...
0
votes
2answers
42 views

Custom Python Sort: Double Precedence

I want to make a custom sort for my Python code that uses the built in sort() function, but can sort a list based on two values. The list I want sorted is structured as a list of tuples, which each ...
0
votes
2answers
109 views

I/O optimization for Python

I'm writing a program that takes in multiple lines of codes. At the moment, I am processing each one separately -> as each line comes in, I strip it, store it, etc., before asking for the next line ...
8
votes
1answer
192 views

Python coerce()

I am wondering about the common usage of coerce? I can see applying it if I do not know the type of a numeric value, as per the documentation, but do other common usages exist? I would guess that ...
1
vote
1answer
182 views

Built-in scripting language available on all major operating systems?

Does anyone know of a scripting language that's included with most platforms (say Mac/Windows/Linux)? I haven't been able to find one. So far javascript in web browsers or compiled java are about ...
0
votes
1answer
68 views

How can we upgrade old GCC 3.4 to GCC 4.1 on Fedora 3?

How can we upgrade the old GCC from version 3.4 to 4.1(that is from GCC 3.4 to GCC 4.1 or above) on Fedora 3 (version is 2.6.10)? More information: We are developing an application which will be ...
1
vote
2answers
337 views

PHP return if isset [duplicate]

Possible Duplicate: Any more concise way to set default values? Is there a built-in php function like the following: function isset_get($array, $key, $default = null) { return ...
5
votes
6answers
73 views

Use of PHP built-in ltrim() to remove a single character

Is there a simple way to use ltrim() to remove a single instance of a match instead of all matches? I'm looping through array of strings and I'd like to remove the first, and only first, match ...
0
votes
1answer
96 views

Globals.ReportName is truncated if Report Name includes a period: workaround?

In my reports I include a separate tablix at the end which contains data useful for troubleshooting. Typically I include the report name, the execution time, the userID and the parameters. My reports ...
0
votes
0answers
35 views

python elements in file in descending order without the use of built in functions? [duplicate]

Possible Duplicate: Putting elements from file in descending order without built in functions This is what I've written so far: def main(): try: file=open(input("Please enter ...
0
votes
0answers
27 views

Criteria for built-in watch-action

One of the criteria for using the built-in watch-action is Finally, provide users with the ability to remove any video stories that your app publishes to Open Graph Does this mean that I will ...
8
votes
3answers
323 views

Why are some Prelude functions defined in terms of foldl?

Generally, foldl is avoided in favor of foldl' or foldr. Quoting Real World Haskell: Due to the thunking behavior of foldl, it is wise to avoid this function in real programs: even if it doesn't ...
0
votes
1answer
343 views

Built-in functions in c++

I was browsing through some codes at the end of the contest and found out that many people were using functions like __gcd(int,int) . What are these functions ? Similar functions include ...
0
votes
1answer
198 views

How to leverage the clumsy pushd and popd with the awsome dirs built-in command of Bash

Isn't there a more intuitive way of dealing with the directory stack than what is possible with pushd and popd? I find the CLIs of the pushd and popd built-in commands presented to the user kind of ...
1
vote
1answer
385 views

Difference between glibC and bioniC

Hi i have some problems with optimization. I tried to compile one of gcc test with builtin functions: #include <stdio.h> #ifdef HAVE_C99_RUNTIME double test1 (double x) { return ...

1 2 3 4