Tagged Questions
The built-in tag has no wiki summary.
16
votes
4answers
282 views
How does --$| work in Perl?
Recently I came across this way to filter out every second value of a list:
perl -E 'say grep --$|, 1..10'
13579
How does it work?
13
votes
4answers
2k views
Python package without __init__
I pip install-ed the flufl.enum Python package and I noticed that it works despite missing a flufl/__init__.py module as regular Python packages. Even stranger is this:
>>> import flufl
...
10
votes
6answers
1k views
What Is the Purpose of the `:' (colon) GNU Bash Builtin?
The question says it: what would be the purpose of a command that does nothing, being little more than a comment leader, but actually a shell built-in in and of itself.
It's slower than inserting a ...
9
votes
8answers
1k views
Performance of built-in types : char vs short vs int vs. float vs. double
This may appear to be a bit stupid question but seeing Alexandre C's reply in the other topic, I'm curious to know that if there is any performance difference with the built-in types:
char vs ...
8
votes
2answers
95 views
User defined __mul__ method is not commutative
I wrote a class to represent vectors in Python (as an exercise) and I'm having problems with extending the built-in operators.
I defined a __mul__ method for the vector class. The problem is that in ...
7
votes
2answers
208 views
Ruby array each_slice_with_index?
If I have arr = [1, 2, 3, 4] I know I can do the following...
> arr.each_slice(2) { |a, b| puts "#{a}, #{b}" }
1, 2
3, 4
...And...
> arr.each_with_index { |x, i| puts "#{i} - #{x}" }
0 - 1
1 ...
7
votes
1answer
175 views
Built-in operator candidates
C++03 $13.6/1- "[...]If there is a
user-written candidate with the same
name and parameter types as a built-in
candidate operator function, the
built-in operator function is hidden
and is ...
6
votes
2answers
417 views
How to hint to GCC that a line should be unreachable?
It's common for compilers to provide a switch to warn when code is unreachable. I've also seen macros for some libraries, that provide assertions for unreachable code.
Is there a hint, such as ...
6
votes
4answers
331 views
What does “< <(cmd args)” mean in the shell?
When looping recursively through folders with files containing spaces the shell script I use is of this form, copied from the internet:
while IFS= read -r -d $'\0' file; do
dosomethingwith ...
5
votes
4answers
897 views
how to avoid sql injection in codeigniter
In CodeIgniter, how can I avoid sql injection? Is there any method to set in config file to avoid sql injection? I am using this code for selecting values:
$this->db->query("SELECT * FROM ...
5
votes
2answers
338 views
Why is 'dir()' named 'dir' in python?
In Python there is a built-in function called dir. This is used to get a list of all the attributes for an object.
I understand what it does, but I am confused about why it is called dir. How is ...
4
votes
2answers
174 views
When is our keyword necessary at all?
perl -e 'use strict;use warnings;$a=2;print $a'
It seems no warning is reported when I declare a global variable without our,so when is this keyword necessary?
4
votes
2answers
114 views
Exponent Function in C#
i've a string like1.00E+4
Is there any built in function to convert this string to 10000.(Integer convertion [1.00E+4=10000]).?
Now i'm using regular expression for this kind of strings
4
votes
4answers
2k views
Groovy built-in to split an array into equal sized subarrays?
If I have this:
def array = [1,2,3,4,5,6]
Is there some built-in which allows me to do this ( or something similar ):
array.split(2)
and get:
[[1,2],[3,4],[5,6]]
?
4
votes
2answers
414 views
Python del() built-in can't be used in assignment?
I noticed a problem when I was trying to use del in a lambda to thin out a list of threads to just those running:
map(lambda x: del(x) if not x.isAlive() else x, self.threads)
Ignore for a second ...
4
votes
3answers
202 views
Is it OK to raise a built-in exception, but with a different message, in Python?
Is it OK to raise a built-in exception with a custom text? or to raise a built-in warning also with custom text?
The documentation reads:
exception ValueError: Raised when a built-in operation ...
4
votes
1answer
330 views
Default list of Django built-in middleware
Django comes with a list of built-in middleware, but if one wants to use all (or most) of them, he has to work through tons of docs in order to get the right sorting in the settings.py file.
Is there ...
3
votes
2answers
88 views
List all built-in functions in javascript?
Is there a way in js to list all the builtin functions and some info on their parameterlists? I couldn't really find anything about reflection to do this sort of thing
edit:
The functions such as ...
3
votes
6answers
254 views
Can functions like sin() be redefined, in Fortran, C or Java?
Can a mathematical function like sin() be redefined, in Fortran, C or Java code, while preserving the default behavior of other mathematical functions like cos()? Or can another function named sin() ...
3
votes
3answers
118 views
What's the best way to get all Perl's builtin-functions as a list?
I'm trying to update a xml-file for syntax-highlighting and therefor I was wondering what's the simplest way to get a list of all Perl built-in-functions.
3
votes
1answer
155 views
Are the python built-in methods available in an alternative namespace anywhere?
Are the python built-in methods available to reference in a package somewhere?
Let me explain. In my early(ier) days of python I made a django model similar to this:
class MyModel(models.Model):
...
2
votes
1answer
109 views
How to sum a table of numbers in Lua?
Does Lua have a builtin sum() function? I can't seem to find one, and I've looked almost everywhere in the documentation. Maybe table.sum(), or something of the like, to follow the current ...
2
votes
7answers
60 views
Tools built into the shell
I was wondering about tools that are built into the bash shell. For example, type pwd tells me that pwd is built into the shell.
whereis pwd
/bin/pwd /usr/include/pwd.h /usr/share/man/man1/pwd.1.gz
...
2
votes
3answers
86 views
Size of built-in multidimensional array using variadic template function
In C++11 it is possible to create a function which returns the size (number of elements) of a built-in one dimensional array at compile time using constexpr. Example below:
template <typename T, ...
2
votes
2answers
37 views
Is there a built in .net string/double object for combo boxes?
When adding items to a ComboBox I know that I could simply define some object and modify .ToString()
Is there a built-in object that already does this on a double/string combination?
That is:
I ...
2
votes
3answers
124 views
how to “inject” built-in php functions
How can i modify returning value of built-in php function without creating new function with another name and renaming all of used functions with previous name to new one?
e.g.
function time() {
...
2
votes
3answers
146 views
Built-in way to determine whether a string is a Ruby reserved word?
Is there something built-in with Ruby to determine if a string is a reserved word? Something like "next".is_keyword??
2
votes
4answers
139 views
Getting interactive “help” on functions in Scheme
In Python's interactive shell you can get a list of built-in functions (if you know where to look) using the dir command.
>>> dir(__builtins__)
['ArithmeticError', 'AssertionError', ...
2
votes
2answers
127 views
In Python, what's difference between some_string.lower() and str.lower(some_string)
I am confused with built-in method in Python.
For instance, what is the some_string.lower() and str.lower(some_string)?
2
votes
2answers
143 views
Perl File Globbing Oddities
I'm writing a script that will loop through a range of numbers, build a glob pattern, and test if a file exists in a directory based on the glob.
The images are Nascar car number images, and follow ...
2
votes
1answer
200 views
Adding a datetime stamp to Python print
I am trying to debug the behaviour of a large library I depend on, which uses a scattering (no make that plethora) of debug print statements through its many source files. Trouble is, most if not all ...
2
votes
1answer
661 views
Does android have a built-in PDF viewer?
I heard something recently about it being included in Froyo and I was wondering if there was any truth to it. If there is, it would help me with an app idea greatly.
2
votes
6answers
497 views
Autocompletion in dynamic language IDEs, specifically Python in PyDev
I'm new to Python, with a background in statically typed languages including lots and lots of Java.
I decided on PyDev in eclipse as an IDE after checking features/popularity etc.
I was stunned that ...
2
votes
2answers
277 views
How to convert an existing assembly to a ms unit test assembly?
In Visual Studio 2010 Pro, how can I easily convert a classic assembly to a ms unit test assembly ?
It there a flag to activate in the .csproj file ?
2
votes
4answers
240 views
How can I extract parts of this filename in Perl?
In my Excel sheet with column Changeset I am getting the changeset like:
C:\ccviews\hgdasdff-9302\dfcsz\ahgrt\kjhssl\ASGHLS@@\main\ajsdkljlat\hahdasdhfk\1\test.txt\sub\hsdaklfl\3
I need to use ...
2
votes
1answer
352 views
why __builtins__ both module and dict
I am using built-in module to insert few instances , so they can be accessed globally for debugging purpose, but problem with __builtins__ module is that it is a module in main script and is a dict in ...
2
votes
1answer
286 views
cd doesn't work when redirecting output?
Here's a puzzler: can anyone explain why cd fails when the output is redirected to a pipe?
E.g.:
james@machine:~$ cd /tmp # fine, no problem
james@machine:~$ cd /tmp | grep ...
1
vote
3answers
25 views
how to overwrite a builtin method of javascript native objects
Lets say we have alert method of window object. I would like to enhance it with nice alertbox.
Also I want to save the existing alert method so that we can switch back once our application is over.
...
1
vote
1answer
57 views
Does anyone know the word that built-in function ord() abbreviate for?
python has a built-in function ord(), I think it must be a anbbreviation. Just like another built-in function chr(), which is an abbreviation of the word "character". Does anyone know the word that ...
1
vote
1answer
21 views
What's a platform safe way to use Bash Shell's Built-in command “read” with option -i (for preloading the edit bugger with a value)
Example usage that works on Ubuntu and other forms of Linux but not on Mac OS X.
while true; do
read -e -n 1 -p "Do you like Pie? > " -i y ANSWER
case $ANSWER in
[Nn]* ) exit;;
...
1
vote
1answer
43 views
Python- initialisation of built in variables/attributes
When and how are the builtin attributes initialized?
__doc__, __name__ (I guess I know about this one :) ), __class__, __setattr__ etc.
In my other question regarding docstrings, one of the answers ...
1
vote
1answer
67 views
How are methods, `classmethod`, and `staticmethod` implemented in Python?
At what point do methods in Python acquire a get property? —As soon as they're defined in the class? Why does Python let me define a method without any arguments (not even a first self argument)?
I ...
1
vote
2answers
182 views
Subclassing int and overriding the __init__ method - Python [closed]
Possible Duplicate:
inheritance from str or int
Hi folks,
I'm trying to subclass the int class without any success. Here is my attempt:
class SpecialInt(int):
def __init__(self, x, ...
1
vote
2answers
64 views
Reference for all of PHP's built-in Objects?
I have searched Stackoverflow and Google and can't seem to find a reference (exhaustive or otherwise) that lists all of PHP's built-in objects such as DateTime. Does anyone have any links to ...
1
vote
1answer
239 views
Is there a built-in function to test for alpha or numeric data in Informix 7.3?
I have been searching around for a SQL function that tests a value for being alpha or for being numeric. There doesn't seem to be any functions like this for Informix 7.3, but I might have missed ...
1
vote
1answer
117 views
Attribute error using __builtin__ functions inside class method
I installed rdiff-backup on my arch linux box only to end up with the attribute error:
AttributeError: 'module' object has no attribute 'reduce'
The error exists in one of rdiff_backup classes, but ...
1
vote
4answers
870 views
Does Java have mutable types for Integer, Float, Double, Long?
I am in a situation where I want to use mutable versions of things like Integer. Do I have to use these classes (below) or does Java have something built in?
...
1
vote
1answer
451 views
Is this webpage-logging-in Python script correct?
Is this Python script correct?
import urllib, urllib2, cookielib
username = 'myuser'
password = 'mypassword'
cj = cookielib.CookieJar()
opener = ...
1
vote
2answers
617 views
Overriding Built-in Classes (Python)
How can I view and override the full definition for built in classes? I have seen the library docs but am looking for something more.
For e.g. is it possible to override the Array Class such that the ...
1
vote
2answers
306 views