Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
4answers
8k views

Quickest way to convert a base 10 number to any base in .NET?

I have and old(ish) C# method I wrote that takes a number and converts it to any base: string ConvertToBase(int number, char[] baseChars); It's not all that super speedy and neat. Is there a good, ...
13
votes
7answers
3k views

convert integer to a string in a given numeric base in python

Python allows easy creation of an integer from a string of a given base via int(str,base). I want to perform the inverse: creation of a string from an integer. i.e. I want some function ...
10
votes
6answers
456 views

PHP - What is a good way to produce an short alphanumeric string from a long md5 hash?

This is for the purpose of having a nice short URL which refers to an md5 hash in a database. I would like to convert something like this: a7d2cd9e0e09bebb6a520af48205ced1 into something like ...
9
votes
4answers
1k views

C# Hiding, overriding and calling function from base class

I'm learning C# and I encountered the following problem. I have two classes: base and derived: class MyBase { public void MyMethod() { Console.WriteLine("MyBase::MyMethod()"); } } ...
9
votes
3answers
8k views

Search in SVN repository for a file name

Issue:- Search in SVN epository for with file name. The Problem is:- We have a bulk repository for code contain thousands of folder and sub folder, i want to search under this repositor with file ...
8
votes
3answers
244 views

Make sure base method gets called in C#

Can I somehow force a derived class to always call the overridden methods base? public class BaseClass { public virtual void Update() { if(condition) { throw new ...
7
votes
2answers
258 views

Parsing integer strings in Java [closed]

Possible Duplicate: How to convert a hexadecimal string to long in java? I know that Java can't handle this: Integer.parseInt("0x64") Instead you have to do this: Integer.parseInt("64", ...
7
votes
6answers
1k views

What really is the purpose of “base” keyword in c#?

Thus for used base class for some commom reusable methods in every page of my application... public class BaseClass:System.Web.UI.Page { public string GetRandomPasswordUsingGUID(int length) { ...
7
votes
1answer
5k views

Xcode iPhone - Base SDK, Active SDK difference?

What's the difference between the "Base SDK for all configurations" and the "Active SDK" in Xcode?
6
votes
1answer
57 views

Haskell: Testing a package against multiple versions of base for Hackage

So I'm trying to upload my first package to Hackage (yay!), and I got this error: The dependency 'build-depends: base' does not specify an upper bound on the version number. Each major release of ...
6
votes
5answers
332 views

Binary String to Decimal String

Good afternoon, How would you go about converting to a decimal string a binary string with more characters than bits in a language's largest integer type? In other words, supposing that you have the ...
6
votes
7answers
2k views

Why is this not allowed in C++?

Here is my code - #include<iostream> using namespace std; class base { private: public: void sid() { cout<<"base"; } ...
5
votes
4answers
118 views

Large abstract base classes

I'm writing a large abstract base class with 30 something purely virtual methods*. Finding all the functions to implement in a base class in the implementation classes is a little tedious, mostly ...
5
votes
4answers
628 views

C++ base conversion

Hello I'm trying to port some code from Windows to Linux. I have this: itoa(word,aux,2); But GCC doesn't recognize itoa. How can I do this conversion to base 2 on a C++ way? Thanks ;)
5
votes
7answers
549 views

C# How can I return my base class in a webservice

I have a class Car and a derived SportsCar: Car Something like this: public class Car { public int TopSpeed{ get; set; } } public class SportsCar : Car { public string GirlFriend { get; ...
5
votes
6answers
281 views

C++ inherited class has member of same name

in c++ you can put a member in a base class and a member with the same name in the inherited class. how can i access a specific one in the inherited class? thanks!
5
votes
11answers
362 views

C# Class Inheritance

greetings. i have the following class: public class Ship { public enum ValidShips { Minesweeper, Cruiser, Destroyer, Submarine, AircraftCarrier } ...
5
votes
7answers
2k views

Fastest base conversion method?

Right now I'm working on a project which requires an integer to be converted to a base 62 string many times a second. The faster this conversion is completed, the better. The problem is that I'm ...
5
votes
6answers
575 views

Is there any built-in way to convert an integer to a string (of any base) in C#?

Convert.ToString() only allows base values of 2, 8, 10, and 16 for some odd reason; is there some obscure way of providing any base between 2 and 16?
4
votes
6answers
483 views

Fastest way to find the largest power of 10 smaller than x

Is there any fast way to find the largest power of 10 smaller than a given number? I'm using this algorithm, at the moment, but something inside myself dies anytime I see it: 10**( int( ...
4
votes
1answer
153 views

Template+Dependent Name

$14.6.2/3 - "In the definition of a class template or a member of a class template, if a base class of the class template depends on a template-parameter, the base class scope is not examined during ...
4
votes
6answers
5k views

Forward Declaration of a Base Class

I'm trying to create proper header files that don't include much other files. (To keep them clean, to speed up compiling time, ...) I encountered two problems while doing this: 1 - Forward ...
3
votes
1answer
70 views

Magento theme development base vs default

I'm using Magento 1.6. I've created my own theme (mytheme) under base. So my file structure is app/design/frontend/base/mytheme I could also develop my theme under ...
3
votes
2answers
95 views

In Ruby what does the line “class ClassName < Base” mean in this context

Given the code require 'gdata' class Contacts class Gmail < Base What does it mean when we say "< Base", does it mean inheriting from the Base class defined in the module gdata, in that ...
3
votes
2answers
48 views

number base conversion in .htaccess

I intend to do a url redirection of the form : from: domain.com/A into domain.com/someResourse/id/10 in this redirection the base of the id is changed from 16 to 10. I wonder if this is ...
3
votes
2answers
110 views

pragma base - warnings question

When I run this, why do I not get the Attempting to inherit from yourself generates a warning. (base#DIAGNOSTICS)? #!/usr/bin/env perl use warnings; use diagnostics; use 5.012; { package ...
3
votes
2answers
296 views

Django Model Field for Abstract Base Class

I've searched around stack overflow for an answer to this (probably simple) question, but most of the solutions I see seem overly complicated and hard to understand. I have a model "Post" which is an ...
3
votes
4answers
261 views

Base class vs Utility class

Which of the two should be preferred? There are some methods which are called by class A, B and C. Should those methods be encapsulated in a class D (base of A, B and C) ? OR Should those ...
3
votes
3answers
415 views

Calling base constructor in perl

What is the correct way to call the base constructor from the class constructor in Perl ? I have seen syntax like this: my $class = shift; my $a = shift; my $b = shift; my $self = ...
3
votes
2answers
137 views

forward declaring with inheritance information

This compiles fine, although I wouldn't want to try running it just yet. However ... //class base; //class derived; //class derived : public base; class base {}; class derived : public base {}; ...
3
votes
1answer
116 views

Efficacy of combinging reset and base, instead of building one off the other

Recently I've taken to combining reset and base into one nefarious optimized streamlined smorgasbord. I'm finding it to be a real treat, and wonder if this is common practice. My guess is "no"...and ...
3
votes
2answers
315 views

Calling base class method from derived constructor

class Base { public: Base() {} void Foo(int x) {...} }; class Derived : public Base { public: Derived(int args) { /* process args in some way */ Foo(result); ...
3
votes
3answers
599 views

base_convert in .NET

Does .NET have a native function that is equivalent to PHP's base_convert or will I need to write my own? I want to convert from any base to any other base -- where either the 'to' base or the 'from' ...
3
votes
6answers
11k views

C#: How do I call a static method of a base class from a static method of a derived class?

In C#, I have base class Product and derived class Widget. Product contains a static method MyMethod(). I want to call static method Product.MyMethod() from static method Widget.MyMethod(). I can't ...
3
votes
6answers
4k views

How do I inherit subroutines in Perl with 'use base'?

How do I apply 'use base' in Perl to inherit subs from some base module? I'm used to C++ inheritance mechanics, and all the sites I googled for this caused more confusion then help. I want to do ...
2
votes
3answers
66 views

JavaScript: Call base function from prototyped inheritance

var super_class = function(p) { this.p = p + 1; this.method = function(a, b) { // some code }; }; var base_class = function(o) { this.o = o; super_class.call(this, o); ...
2
votes
1answer
38 views

Second argument to parseFloat in JavaScript?

In this font-size resizing tutorial: http://dev-tips.com/featured/jquery-tip-quick-and-easy-font-resizing the author uses parseFloat with a second argument, which I read here: ...
2
votes
4answers
71 views

More objects with different type in one list

Is it possible to add more objects of different types to the same list and how do I do it? I've got a base class and three subclasses and I want all the subclass objects in the same list.
2
votes
1answer
50 views

Change the text in a listview base adapter

I have a custom baseadapter that i use to populate a listview. each row that populates contains 4 text views in it. How can I change the text of one of these views without having to repopulate a ...
2
votes
0answers
53 views

Generating a constructor that takes an argument and just calls base(argument) using TypeBuilder

I am trying to dynamically create an empty constructor that takes an argument and simply calls base(argument) using TypeBuilder. My code is something like: (...) // Create a class derived from ...
2
votes
2answers
59 views

Using base class pointer against derived class object on stack vs. heap

I have a question on assigning a derived class object with base class pointer... class Base { void print() { cout<<"Class Base"; } }; class Derived: public Base { void print() { ...
2
votes
2answers
146 views

C#, container class design pattern?

I delved into C# but came across a problem that I seem unable to solve: I designed a financial back test and trading engine and as part of that I like to implement a "Strategy Container". This ...
2
votes
1answer
77 views

c# Design Pattern - interacting with Base

I have a class SafeChargeDeposit inheriting from BaseExternalDeposit. the BaseExternalDeposit require in its constructor a variable type BaseDepositStructure. Since It requires BaseDepositStructure ...
2
votes
1answer
87 views

What does 'base' mean in JNA's Pointer.getPointerArray(long base) and Pointer.getStringArray(long base)?

What does 'base' mean in JNA's Pointer.getPointerArray(long base) Pointer.getStringArray(long base) ? The JNA Documentation for Pointer doesn't explain what 'base' this is supposed to refer to. ...
2
votes
2answers
242 views

Grails: Prevent further code execution after a redirect or forward in base class of a controller

I have following controller structure: abstract class AbstractController { // ... } abstract class AbstractDiagramController extends AbstractController { // ... } class PopulationController ...
2
votes
1answer
489 views

IE doesn't support relative paths in the base element when referencing CSS files

I have a site that uses a base tag to set an absolute path for relative URLs. It works fine in all the browsers I tested it in, except IE (big surprise). Based on the request that IE is making for the ...
2
votes
2answers
262 views

access inherited class properties from base class

I have base class and two inherited classes, these two inherited classes also share the two properties. I would like to access these properties from base class. How to do that? Example below. public ...
2
votes
1answer
144 views

Mod_rewrite inclusion problem with css

I new to mod_rewrite. i have this page profiles.php?page=XXX i tried to move it to more friendly url /cars/XXX/ RewriteEngine on RewriteRule ^cars/([^/]+)/?$ profiles.php?page=$1 [L] problem is ...
2
votes
2answers
91 views

Converting vector of digits from base to base

How can I convert a vector<int> in base a to vector<int> in base b without the use of a library like gmp? The contain the digits of the numbers. a and b are less than 1024. a can be ...
2
votes
2answers
297 views

Is it possible to to rewrite the base URL in Sinatra?

Is it possible to to rewrite the base URL? E.g. instead of www.host.com/ to use www.host.com/blah/ as a base url and so: get '/' do ... end would work for www.host.com/blah/ I could append ...

1 2 3 4