Since we launched the Google Apps Marketplace last month, we’ve been pleased to see a growing number of developers launching products and finding phenomenal success selling integrated apps...
<?php
$s = $_GET["s"];
if($s) {
$hent_b = mysql_query("SELECT * FROM member_battles WHERE state = '1' ORDER BY id DESC LIMIT 0,200") or die(mysql_error());
}else{
$hent_b = mysql_query("SELECT * FROM member_battles WHERE state = '0' ORDER BY id DESC LIMIT 0,200") or die(mysql_error());
}
while($vis = mysql_Fetch_array($hent_b)) {
?>
I…
I am very new to webdevelopment. I've been given this task to built an application to calculate final salary in the end of the month.
The employees are callers and after every call they will get some form on which they will give their call summery like time duration. They are payed for each call depending on time duration.
In the back end…
I love pretty much everything about how Gnome Shell handles app-switching through Alt+Tab. My one gripe with it, though, is how it forces the user to use Alt+` to switch between windows of the same app. This is very annoying for me, because now I have to keep in mind if the last window I was using belonged to the same app as the current…
I just read Jeff Atwood's recent post on DNS configuration for email and decided to give it a go on my application.
I have a web-app that runs on one server under two different IPs and domain names, on both HTTP and HTTPS for each:
<VirtualHost *:80>
ServerName foo.org
ServerAlias www.foo.org
...
</VirtualHost>…
I had recently formatted my system only to find out i have lost the cd key to my original cd.
i had used the option to enter the product key later. Yes, i know its a stupid thing to do but i bought the cd in 2008 from a retail store and i lost the original packaging.
the actual label on the cd is
includes service pack …
my android app crash before load main.xml.
This is the exception thrown
java.lang.RuntimeException: Unable to resume activity...:
java.lang.NullPointerException
What happens?
For completeness I enclose my manifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest…
I'm using the friendly_id gem. I also have my routes nested:
# config/routes.rb
map.resources :users do |user|
user.resources :events
end
So I have URLs like /users/nfm/events/birthday-2009.
In my models, I want the event title to be scoped to the username, so that both nfm and…
So im getting a blank page when loading this page within an iFrame on Internet explorer, every other browser works fine..
I have also tried using p3p headers as other people have suggested, but to no avail.
<?php
require ("connect.php");
require ("config.php");
require…
I have a client who wants to migrate his Rails app to Heroku. However the client also has a blog associated with his domain that runs on WordPress. Currently, the WordPress blog is running happily alongside the Rails app, but once we migrate to Heroku, that clearly won't be…
The short version: I'd like to tell Apple Keynote to switch to a specific app (never leaving full-screen mode) before a certain slide appears, then display that slide as soon as I switch back.
Some more details:
I'm going to show off five major improvements in an…
I don't understand, how does 'smart addresses' in Mail.app work. Recently
I mentioned, that for some emails I don't see person's full name in 'From' column.
I started to dig into this behavior and found out, that I have few contacts in my Address Book, that are not…
I've been trying to track down why Spring Security isn't creating the SPRING_SECURITY_REMEMBER_ME_COOKIE so I turned on logging for org.springframework.security.web.authentication.rememberme. At first glance, the logs make it seem like the login is failing but the…
Hi
i have three divs like that:
<div id="1" >id="1"</div>
<div id="2">id="2"</div>
<div id="3">id="3"</div>
Now i want, when i click any of the div, jquery will get it id, i.e, if i click div 1, it will get 1 as its div id…
The status says "rejected" in iTunes Connect. I replied to the email I got, left the "line" in there that they apparently use for tracking. Do I just wait to hear back from them or do I reject the entire binary and start over? It's not clear from the email or the…
HI,
I have the following entities I'm trying to map:
public class Product {
public int ProductId { get; private set; }
public string Name { get; set; }
}
public class SpecialProduct : Product {
public ICollection<Option> Options { get; private…
Hello. I am using Codeigniter with the TankAuth library installed and trying to upload to index.php/reuqests/doUpload from swfupload but can't access the page as authenticated. I have read many posts around the net about similar problem and tried to set…
Does anyone know how to specify an INCLUDE ONLY category using wp_get_archives? I would like to specify a category but then list results by month.
I've tried kwebble's plugin to no avail. I've also found the following on WP forums, but it appears to…
I am writing a script in Powershell to get the update information from each computer and correlate the information with another System which identifies updates by CVE ID. I have discovered that there is a "CVEIDs" property for an update in WSUS,…
I'm self-learning iPhone development and I see that one of the aspects of an iPhone/iPad app is the start image that gets displayed when your app is run. I'd like my start image to display some basic info about the user when the app is…
Hi all, I am relatively new to the Android world and am having some difficultly understanding how the whole screen orientation cycle works. I understand that when the orientation changes from portrait to landscape or vice versa the…
my url @ development : http://192.168.0.1:8888/com.company.MyEntryPoint/MyEntrypoint.html
my url @ live env : http://www.example.com/com.company.MyEntryPoint/MyEntrypoint.html
I need users to authenticate using open id,
this is…
I'm trying to write a short Wordpress JQuery for Wordpress comments that would allow users to toggle specific comments on and off. This is my first script, and I'm having a tough time.
Once overtly simplified, the comments are…
i have a customized gridview.my grid is able to sort for each column just by 1 click in the header without any setting and overloading methods such as sorting,etc by user(programmer).(i do this successfully and work fine)…