Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
1answer
213 views

Is there a cookbook guide for GC problems?

Almost everyone eventually runs into GC issues with Java. Is there a cookbook guide or semi-automated tool to tune GC for Java? My rationale is this: Almost anyone eventually has these problems ...
13
votes
16answers
2k views

The shell dotfile cookbook

I constantly hear from other people about how much of the stuff they've used to customize their *nix setup they've shamelessly stolen from other people. So in that spirit, I'd like to start a place ...
7
votes
3answers
2k views

Postgres Best Practice

What are your set of best practices when working with PostgreSQL? I'm interested in every aspect of postgres-management/development. Configurations, rules, functions, users, ... There are a lot of ...
5
votes
12answers
380 views

is there a website that compiles css knowledge?

I'm thinking of getting into the web designing business . I am aware that I will bump into a lot of CSS headaches , and I'm certain people have bumped into them long before I did . Is there a website ...
5
votes
5answers
26k views

automatically execute an Excel macro on a cell change

How can I automatically execute an Excel macro each time a value in a particular cell changes? Right now, my working code is: Private Sub Worksheet_Change(ByVal Target As Range) If Not ...
4
votes
2answers
848 views

Installing multiple packages via Vagrant + Chef

I've just discovered Vagrant + Chef and I'm trying to create a simple recipe to install multiple packages on the node. I thought something like this could work (I'm completely new tu ruby): # (From ...
3
votes
1answer
222 views

Books on PHP5 best practices?

I am looking for some PHP5 best practices book which would be comparable to what Java has as Effective Java and Ruby as Ruby Best Practices, JavaScript as Pro Javascript Techniques and about REST ...
3
votes
2answers
826 views

Chef cookbook for Solr

I tried to find a cookbook for Solr, but the one at opscode's cookbook base sets up only group and user for solr, not the solr engine itself. My question is a bit twofold. Do you know a working ...
2
votes
2answers
92 views

How to remove duplicate code (in general)? [closed]

In an OO language (e.g. but not limited to Java) how do you in fix duplicate code depending on the scope of it's occurrence? It's obvious that it depends on the very detail, but in general I would ...
1
vote
0answers
315 views

BookController in iOS 5 Developer's Cookbook (Erica Sadun) does not start correctly in landscape mode

The problem I'm trying to solve: I used chapter 05 example 06 BookController in chapter 5 (C05/06-Scrubbing Pages in https://github.com/erica/iOS-5-Cookbook.git ) in a project that have a ...
1
vote
1answer
133 views

Erica Saduns iPhone Developers Cookbook (3.0) Chap 08, Exercise 14 — Resize and Rotate

Regarding Erica Sadun's iPhone Developer Cookbook, in Chapter 8, Exercise 14 Resize and Rotate: the example works just fine, I am able to rotate, resize and whatever. The issue is, how do you ...
1
vote
3answers
245 views

NHibernate Entity code conversion from #C to VB.Net

Hello and thanks for your help in advance. I am starting on the NHibernate world and i am experimenting with the NHibernate CookBook recipes, i am trying to set a base entity class for my entities ...
1
vote
0answers
129 views

List of freely available C# recipes [closed]

There are a variety of web sites that purport to offer reusable code in some fashion (Krugle, Koders, byteMyCode, et al). These are great for browsing and for learning by reading other people's code, ...
0
votes
1answer
146 views

Installing cookbook on RubyMine

I am trying to import a folder(open directory) on Ruby Mine but when I do it says "Install missing gems" Everytime I click on it, it installs some and then again gives the same error. I have Mac OS X ...
0
votes
0answers
35 views

How can i find xml cookbook database? [closed]

I have found many sites with recipes, cocktails etc., also *.pdf files with recipes and ingredients. But there is interesting xml-format ;) - ...
0
votes
1answer
146 views

Android SDK - ActivityNotFoundException

I am working my way through the Android Developer's Cookbook. I have entered in their example code, and it compiles correctly. However, I am getting this exception at run time. Here is the code ...
0
votes
2answers
94 views

What's the purpose of this python code snippet (unexpand tabs)

I'm reading python recipes on the Activate State website and found the following code snippet: def unexpand(astring, tablen=8): import re pieces = re.split(r'( +)', astring) lensofar = 0 ...
0
votes
1answer
127 views

Using ModalAlert from cookbook - app does not load

I'm using iphone cookbook code to prompt a user for text in a UIAlertView. The cookbook code is available at ...
0
votes
2answers
5k views

Create an Excel macro which searches a heading and copy-paste the column

I am new to Excel macros. I have some columns with headings scattered in many sheets. I would like to type a heading in some column which has the cursor and have the column with that heading ...
-3
votes
2answers
174 views

Where can these be posted besides the Python Cookbook?

Whitespace Assembler #! /usr/bin/env python """Assembler.py Compiles a program from "Assembly" folder into "Program" folder. Can be executed directly by double-click or on the command line. Give ...