Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
10answers
4k views

How do I bring up a promotion to my boss?

My 2-year anniversary with my current company is coming up. In the past, I've been a bit of a job-hopper (work somewhere between 1 and 2 years, then go to another company). I kind of like my project ...
7
votes
3answers
1k views

How to promote a new product/service? [closed]

This is often a bit of a problem for lone developers working on a product or a service. How can they get the word out about their product? I recently finished a project of mine and I'm struggling a ...
5
votes
5answers
497 views

What is the purpose of the h and hh modifiers for printf?

Aside from %hn and %hhn (where the h or hh specifies the size of the pointed-to object), what is the point of the h and hh modifiers for printf format specifiers? Due to default promotions which are ...
5
votes
3answers
3k views

Default argument promotions in C function calls

Setup I have a few questions about the default argument promotions when calling a function in C. Here's section 6.5.2.2 "Function calls" Paragraphs 6, 7, and 8 from the C99 standard (pdf) (emphasis ...
4
votes
2answers
132 views

C++: non-native types promotion

Let's suppose I've got a 2D vector template class: template<typename T> class Vec2 { T x, y; // ... }; I'd expect that the result of a sum between a Vec2<double> and a ...
4
votes
3answers
1k views

Workaround to lack of promotional codes for in-app purchases

Apple doesn't offer promotional codes for in-app purchases. What's the best way to let users try the features or content unlocked by in-app purchases for free, while complying with Apple's Developer ...
4
votes
3answers
270 views

Java GC: top object classes promoted (by size)?

Please let me know what is the best way to determine composition of young generation memory promoted to old generation, after each young GC event? Ideally I would like to know class names which are ...
4
votes
13answers
1k views

Is it really possible to stay technical and move up in a corporation?

Personally, although the powers that be claim it is, I do not believe so! What do you all think? If so, how?
4
votes
4answers
202 views

Where can open source developers “showcase” their projects and ask for help with development?

After not having much luck with writing to the Python mailing list, I've been on a search for the appropriate place to post my project to and receive developer support. I don't want to blacklist it ...
4
votes
8answers
784 views

How do I transition to management? [closed]

I finished my undergraduate work in computer science about five years ago. I like programming, and I'd like to continue doing it, but I'd also like to start getting into project- or people ...
3
votes
4answers
363 views

Printing a float in C while avoiding variadic parameter promotion to double

How can I print (that is, to stdout) a float in C without having it be promoted to a double when passed to printf? The issue here is that variadic functions in C promote all float parameter to ...
3
votes
2answers
50 views

Need Help Writing SQL To Apply Promotions to Shopping Basket at Checkout

Don't laugh but I'm a Lotus Notes (non-relational database!) developer trying to work with SQL and, although I have the basic concepts nailed, I'm stuck on something I'd consider to be "advanced". ...
3
votes
3answers
195 views

How should your company sponsor programming certification

Say your company is willing to sponsor the fees for taking programming certification examination. What is the best aproach to implement this? I would say if the programmer passes the exam at the ...
2
votes
1answer
30 views

Unlocking features via promo code that are also offered in an out-of-app subscription

I'm interested in unlocking features for a fixed time period in my iphone app via promo code. These same features are also offered for subscription outside of the app store. Is this still legitimate? ...
2
votes
1answer
61 views

What to put in DisplayUrl in AdMob promotion?

I know it sounds and actually is stupid. I am trying to promote my app with AdMob. In the promotion form there, I put URL: market://details?id=com.xxxx.xxxxxx.xxxxx DisplayUrl: ???? Whatever I ...
2
votes
2answers
777 views

iPhone App Store (Paid App) - Promo Codes / Updates

I have a few specific questions concerning paid applications in the App Store, along with promo codes and updates. I've done my research, but I either haven't found answers, or have found very ...
2
votes
6answers
273 views

How do I release/sell/promote a semi-commercial/open-source project?

I've got a framework for PHP that I've developed for about 3 weeks total, but it's quite ready to be released ... if I choose to do so. In this economy I cannot just take what I have done and release ...
1
vote
0answers
424 views

Get custom attributes to work with magento flat product catalog enabled

I need to get my custom attribute to work with Magento flat product catalog. Attribute code: free_shipping Attribute type: Yes / No Used in Product Listing: Yes Use in Promo Conditions: Yes I've ...
1
vote
3answers
230 views

generating promotion code using python

Hello By using python language, what would be a clever / efficient way of generating promotion codes. Like to be used for generating special numbers for discount coupons. like: 1027828-1 Thanks
0
votes
1answer
40 views

Good practice to build snapshots for your iOS apps?

This question is targeted for people who are involved in the iOS apps development. Not sure if suitable to ask such questions here. (correct me if wrong ) Once built one iOS app and uploaded to ...
0
votes
1answer
175 views

Can shipping step and info be removed from checkout in Magento for a product with Free Shipping rule set?

For a specific product I've got a Shopping Cart Rule, which makes shipping for it - free. It would be logical to not show shipping information and bypass shipping method selection for such product. Is ...
0
votes
1answer
527 views

magento get Catalog Price Rule or Discount Amount programmatically in the front-end by Rule Name

How can I get Catalog Price Rule programmatically in the front-end by Rule Name? I need the Discount Amount of a particular price rule.
0
votes
1answer
48 views

Is there a way to apply discount codes that are generated on our site to third-party site(s)? [closed]

I know how to create the database of generated discount codes and to stipulate the amount that the discount code will receive. But is there a way (and if so, what is the best way) for a third-party ...
0
votes
1answer
105 views

Magento - How to add discounts to Check/Money orders?

I've asked around and google'd but still nothing. I want to be able to offer a 10% (or wtv) discount to anyone that opts out to pay directly through Wire Transfer or Check. Can this be accomplished ...
0
votes
0answers
44 views

What are the key concepts of a successful website? [closed]

I would be very interested in your views on the following. When looking at a website, what information is essential to stand out first? What are the key concepts of a successful website? How ...
0
votes
0answers
370 views

Magento: create a Catalog Price Rules block

I’m searching for a way to create a block that list all active Catalog Price Rules. It should look something like this: 30% off products deal of the week 15% on everything and so on… Every item ...
0
votes
0answers
218 views

Tally customer email Id's with coupon codes in magento

I'm new to magento hope u'll help I need some way of creating these. Coupon Codes should tally with an email address and set to how many times they can be used. Four versions need to be made: i) X ...
0
votes
4answers
137 views

What type-conversions are happening?

#include "stdio.h" int main() { int x = -13701; unsigned int y = 3; signed short z = x / y; printf("z = %d\n", z); return 0; } I would expect the answer to be -4567. I am ...
0
votes
1answer
88 views

Country-specific domain promotion… in another country

I wonder if anyone tried promoting a website on a country-specific domain for the wrong region? I know there is no reason to do that (unless you're crazy), but I just became curious after my client ...
0
votes
1answer
31 views

Is there a list somewhere of all the app dev contests and promotions going on? [closed]

If not... let's start one here? Please add below! StreetApps Challenge Adobe Open Screen Nokia 1 million API-based contests ConstantContact API Daylife API (Profit Share) And more?
-1
votes
1answer
28 views

Policy query - iframe app posting to multiple (5) friends wall

After some advice. I have a client wishing to have an app which lets them download a voucher to redeem in store but only after they post details of this offer onto 5 friends' walls. My understanding ...