Tagged Questions

0
votes
1answer
35 views

Apache 2 Upgrade Killed Our .htaccess, Can’t fix, please help!

We were forced to upgrade to Apache 2 today and as soon as we did our rule set that was working for months stopped working. The behavior it shows is completely ignoring the .htace …
0
votes
2answers
73 views

Modding Sonos Desktop Controller to Landscape view

Hi Forum ! I think ive found the right place and people to ask this question. Im using Sonos Desktop Controller App, which is free from Appstore. For a long time ive waited for t …
1
vote
8answers
221 views

How to analyze evenness/oddness of numbers in Java

I have to write a program which reads in 3 numbers (using input boxes), and depending on their values it should write one of these messages: All 3 numbers are odd OR All 3 number …
0
votes
1answer
17 views

mod_rewrite params inversion

How can I create the mod_rewrite rule so I can convert the following URLs: From: domain/something/param/action ex:domain/cities/Chicago/view to: domain/something/action.php?para …
0
votes
1answer
22 views

Mod Rewrite Trouble

I want to have a main section which is found on services.php and then some sub-sections like services_logodesign.php. I want to make url's look like: When I click a button to open …
1
vote
1answer
113 views

How to install a home developed mutator into Unreal Tournament 3

I've done this before, but I forget how. I have been experimenting with developing (writing it myself) mutators and bots for Unreal Tournament 3. Where do I place the DLL and how …
5
votes
9answers
801 views

Weird Objective-C Mod Behavior

So I thought that negative numbers, when mod'ed should be put into positive space... I cant get this to happen in objective-c I expect this: -1 % 3 = 2 0 % 3 = 0 1 % 3 = 1 2 % …
4
votes
7answers
658 views

Handling “Big” Integers in C#

How do I handle big integers in C#? I have a function that will give me the product of divisors: private static int GetDivisorProduct(int N, int product) { for (int i …
0
votes
3answers
47 views

how do I use mod_rewrite for just one file?

I want to use mod-rewrite for just one file instance: www.domain.com/contact to pull from www.domain.com/contact.php I used a rewrite rule for all files that look like a directo …
6
votes
12answers
742 views

Fast way to manually mod a number

I need to be able to calculate (a^b) % c for very large values of a and b (which individually are pushing limit and which cause overflow errors when you try to calculate a^b). For …
0
votes
2answers
134 views

Mod Rewrite - Simple Question

This is my current .htaccess Options +FollowSymLinks DirectoryIndex index.php RewriteEngine On RewriteBase /product/ RewriteCond %{ENV:REDIRECT_STATUS} ^$ RewriteRule ^(.+)\.php …
0
votes
1answer
256 views

PHP - Large Interger mod calculation

I need to calculate modulus with large number like : <?php $largenum = 95635000009453274121700; echo $largenum % 97; ?> It's not working... beacause $largenum i …
3
votes
3answers
2k views

How do you calculate div and mod of floating point numbers?

In perl the % operator seems to assume integers. For instance sub foo { my $n1 = shift; my $n2 = shift; print "perl's mod=" . $n1 % $n2, "\n"; my $res = $n1 / $n2; my $t = in …
1
vote
4answers
653 views

Algorithm to add two digits to the end of a number to calculate a specific modulus?

So, lets say I have a number 123456. 123456 % 97 = 72. How can I determine what two digits need to be added to the end of 123456 such that the new number % 97 = 1? Note--it must …