Pow is a zero-config Rack server for Mac OS X created by 37signals.
3
votes
1answer
89 views
Using Pow in C++ MinGW. Works hard coded but not with variables
This is hopefully a simple linker issue but I've spent hours searching and haven't moved forward in that time. I'm trying to use
#include <cmath>
double aA = 2;
double result = ...
0
votes
0answers
21 views
Omniauth with pow port issue in Rails
I'm using Omniauth in my Rails app (which is launched locally using POW). After my providers return to the callback action, I get redirect back in port 19999. I don't want to hard code the port into ...
0
votes
0answers
30 views
Why is Pow not working with my Octopress site anymore?
I ahve been using Octopress ever since. Of course, I also used 'rake watch' to watch my site locally. However, this is not working anymore and I get his error message:
Application not found
Symlink ...
-1
votes
1answer
58 views
Math.pow() floating point number as exponent
I want to pass a floating-point number as the second argument (exponent) to Math.pow(). I always get NaN when the passed number is not a whole number, like 0, 2, 7, you name it. Is there a working way ...
0
votes
0answers
70 views
Accessing virtual hosts from other computers – xip.io alternative
Sometimes you need to access your (Pow) virtual hosts from another computer on your local network — for example, when testing your application on a mobile device or from a Windows or Linux VM.
So ...
1
vote
1answer
140 views
Rails, pow and Library not loaded: /usr/local/lib/libsqlite3.0.8.6.dylib
I didn't work on this rails app for a couple of weeks. Yesterday I got back to it, first opening the .dev URL (i'm using pow) and it gave this error message:
LoadError: ...
0
votes
1answer
83 views
How come sqrt() with which uses a calculation of two pow()'s inside of is wrong in intellisense
I have this code:
int findY ( int x, int r) {
return sqrt(pow(x,2) - pow(r,2));
};
But for some reason Ms intellisense is flagging it as wrong syntax. I'm not sure why.
0
votes
1answer
61 views
How to run Pow.CX alongside MAMP and VirtualHostX
I have come across some some answers on StackOverflow similar to this question, however they pertain to MAMP Pro. My particular setup of consists of the standard MAMP alongside VirtualHostX (VHX).
I ...
0
votes
1answer
21 views
Using pow inside of a php function
I'm fairly new to PHP, and I seem to have hit a snag on an assignment. I'm trying to create a function that calculates the monthly payment for a simple interest loan. Here is my code.
function ...
2
votes
2answers
124 views
Java Math.Pow method
monPay = (amtFin * amtI)/((1-(1+amtI)*Math.pow(-n,-n)));
I am using this code but it is not calculating Math.pow(-n,-n) correctly. It seems like it is Math.pow(-n,-n) is calculating to 0.0. It is ...
0
votes
3answers
109 views
Pow function in recursion C++
Can pow function be used in a recursive function?
For example:
double exponencial(double x, int n){
if(n>0)
return (pow(x,n)/n)+exponencial(x,n-1);
return 1;
}
0
votes
1answer
153 views
C++ power function with variables
#include <cstdlib>
#include <iostream>
#include <cmath>
using namespace std;
int main(int argc, char *argv[])
{
double amount, rate, time, interest, month;
interest = ...
1
vote
2answers
476 views
errors after gem update --system
I working on OSX on a ruby on Rails application. Using RVM for managing ruby. I just did:
gem update --system
I thought this is something you have to do once in a while. But it seems that this has ...
0
votes
1answer
152 views
remove apple server app on osx 10.8
I normally develop in ruby and serve my developement site with pow.cx.
For some client work I have to work with php and drupal. I had quite a bit of set up problems and incompatibilities between ...
0
votes
1answer
93 views
using pow function in an expression [closed]
#include <iostream>
#include <string>
#include <iomanip>
#include <cmath>
// Defining Variable
using namespace std;
const int MONTHS_IN_YEAR = 12;
const int PURCHASE_PRICE= ...
-4
votes
1answer
71 views
how would I convert the sqrt(x2 − x1)^2 (y2 − y1)^2 to proper java code [closed]
How would I convert the equation for the distance between two points:
sqrt((x2 − x1)^2 + (y2 − y1)^2)
into proper Java code?
0
votes
1answer
56 views
How to access environment variables from .powenv in delayed job
I have some environment variables defined in .powenv.
export FOO=bar
A method that runs asynchronously via delayed_job needs to access this environment variable:
class A < ActiveRecord::Base
...
2
votes
0answers
97 views
Pow.cx Rails Assets Not Loading (IOError: Closed Stream)
Assets are timing out for my Rails app served locally through Pow. When I visit an asset's url directly (eg. '/assets/home.css') I'm presented with this error:
{"name":"IOError","message":"closed
...
1
vote
1answer
72 views
Occasional pow error starting application (Response was not received)
I'm getting this error in pow, maybe one in 30 or 50 requests:
Error starting application
Your Rack app raised an exception when Pow tried to run it.
Error: Response was not received
at ...
0
votes
0answers
39 views
Getting a cryptic POW error
Anyone know what this is about?
Error starting application Your Rack app raised an exception when Pow
tried to run it. Error:
'/Users/victorstan/Sites/quicklyschedule/.powrc' failed to load: ...
1
vote
1answer
116 views
Rails 2.0.1, Pow.cx - config.ru error
I have rails 2.0.1 and the latest version of pow.cx setup and I'm getting an error which I think is related to the config.ru file:
NameError: uninitialized constant ActionController::Dispatcher
...
0
votes
3answers
100 views
Why am I unable to send an email with pow?
I have a rails project which sends an email using an ActionMailer. This seems to work fine with 'rails server' on localhost:3000 but when I use pow, I get authentication error messages from the smtp ...
3
votes
4answers
208 views
Strange pow(x, y); behaviour
While doing my homework I noticed something really strange that I just can't figure out why.
int x = 5;
cout << pow(x, 2);
The result is 25. That's fine. But if I write the same program like ...
4
votes
2answers
181 views
Very slow std::pow() for bases very close to 1
I have a numerical code that solves an equation f(x) = 0, in which I have to raise x to a power p. I solve it using a bunch of things, but in the end I have Newton's method. The solution happens to be ...
0
votes
1answer
152 views
Cryptic error when trying to run POW
I am having a rather weird error message when running POW for my rails app.
I followed the instructions:
- cd ~/.pow
- ln -s /Users/mingyeow/Dailymuses-Server-Side
And got this:
Error starting ...
1
vote
0answers
87 views
Code runs faster on localhost (via POW) then on server on mobile browser
I am using POW to set up my iPhone to test a web app on localhost.
The javascript performance that ran on the POW localhost on my phone is good i.e. scrolling and loading was fast.
However, when I ...
0
votes
0answers
109 views
POW Error - Rails
For some reason, one of my apps won't work with pow.
I set the symlink fine...to my app, and the app shows up as linked.
curl get.pow.cx | sh
cd ~/.pow
ln -s ...
0
votes
2answers
107 views
Implement Great Circle Algorithm
Below is a formula (Great Circle algorithm) that I want to be translated into PHP. I would really appreciate if someone would help me with that?
The input is to different sets of coordinates, e.g:
...
0
votes
2answers
90 views
pow(a,e,n) doesn't work for input pow(1,3,3)
why do I get this error message, when I'm using these parameters(pow(1,3,3)) ?:
sage: pow(1,3,3)
3
3/2
3/2
...
-2
votes
2answers
278 views
Multiplication vs ^ operator vs Math.pow() for integer powers [closed]
I got curious about the way power calculation is done in Java and the performance of available methods. So I wrote a simple test to check on Math.pow(), * and ^ operations.
public static void ...
1
vote
3answers
108 views
Java pow implementation with Integer.MIN_VALUE as exponent
I am implementing a pow function in Java, and I am wondering how do we deal with Integer.MIN_VALUE as a exponent ? Do we just treat it as a special case ?
Because I tried to compare the result with ...
4
votes
1answer
213 views
GCC C++ pow accuracy
So i was in a computing contest and i noticed a weird bug. pow(26,2) would always return 675, and sometimes 674? even though correct answer is 676. These sort of errors also occur with pow(26,3), ...
0
votes
1answer
254 views
rails; wicked_pdf is wicked slow
1.9.2 & rails 3.0.9
wicked_pdf 0.8.0
wkhtmltopdf 0.10.0 rc2 @ /usr/local/bin/
nginx and pow
It seems to barely work, if at all, and it's extremely slow when it does. What I've done:
after bundle ...
1
vote
1answer
184 views
Scala: Tail recursive power function
I always get "1" as result. :(
Whats wrong with this function?
def power(base: Int, exp: Int): BigInt = {
def _power(result: BigInt, exp: Int): BigInt = exp match {
case 0 ...
0
votes
2answers
229 views
Setting up pow.cx to use Apache for PHP apps
I've set up Pow and Apache the way they suggest in this tutorial. My httpd-vhosts.conf contains the following entry.
<VirtualHost *:80>
DocumentRoot /Users/michael/Dropbox/Development/test
...
0
votes
2answers
98 views
Rails response is getting omitted at some point
My Rails action stops rendering the response after the same amount of data transmitted. No error or warning is shown.
At first, I thought that my partial could be a cause of that but then I removed ...
0
votes
2answers
68 views
How could one connect their iPhone to a Mac OS X's Safari Console?
I'm using my local ip :
ipconfig getifaddr $(route -n get default|awk '/interface/ { print $2 }')
Which returns :
192.168.200.11
And I'm running a Sinatra app that can be accessed via my ...
0
votes
1answer
48 views
How to check if denominator of double number is odd?
I get 2 double numbers - basic and pow , and I have to calculate basic^power .
My problem is that there is cases should throw error - like if the pow is a fraction like odd/even and the basic is a ...
0
votes
1answer
219 views
Weird 127.0.0.1 & localhost resolution when running Apache on Mac OS X with POW/Powify installed
I could not figure out why http:// localhost would resolve and http:// 127.0.0.1 would not resolve, when i was running apache, made no sence. While when running POW both would resolve.
I ve set up ...
0
votes
1answer
71 views
Uninstalled POW server but now cannot reach external .dev sites
I tried the Anvil server accessory for Mac OSX, which installed Pow. I decided after trying it I didn't have any real use for it, so ran the uninstall.
Except now I can no longer reach any of my ...
3
votes
1answer
280 views
Rails app running on Pow not reloading for changes in /lib directory
After many googling I've tried adding both of these to my config and yet reloading doesn't happen:
config.autoload_paths += %W(#{config.root}/lib)
config.autoload_paths += ...
0
votes
5answers
147 views
Java formating output
I am not experienced in Java at all and am using a text editor to write code so I cant see what the problem is (I am running from command line)
I see the error and know what it is but I have no idea ...
1
vote
2answers
333 views
Error with Pow and rbenv - “cannot load such file — bundler/setup”
I know there is an entry on the Troubleshooting wiki page for Pow, but I made that change and it still gives the same error.
If you notice from the error message below, it seems to be at least ...
0
votes
1answer
161 views
Pow server: serving local rails app via myapp.dev.com domain
Pow server is working fine with .dev domains on my local machine (OS X Lion). So myapp.dev is all good.
I now would like to make it serve myapp.dev.com (and myapp.dev.fr, and myapp.dev.XX) so myapp ...
0
votes
2answers
70 views
pow should be able to handle things like this: why does my code freeze at this point? [closed]
So, my code can't get beyond this line:
double correction = ((double) (1/(1 + pow(2, ((double) ((popsize - maxpop)/maxpop)))))) + 0.5;
popsize is an int, and maxpop is a long int, defined by the ...
1
vote
4answers
132 views
What kind of C++ constant/macro is -1.#IND?
The Math "pow" function returns -1.#IND. What kind of error value is -1.#IND and how do I detect the error in an if-statement?
0
votes
2answers
72 views
Application Renders different accessed via pow?
When viewing my app being served via Pow (i.e. at http://my_app.dev/) it renders as follows:
When viewing my app via webrick or thin (i.e. rails server webrick or rails server thin at ...
2
votes
2answers
209 views
Fast Function resembling a^b
This is kind of obscure, but I need a function that can be computed very quickly and resembles a^b where a is between 0 and 1 and b is very large. It will be calculated for one a at a time for many ...
3
votes
2answers
517 views
C and AVR pow function to light LEDs
I'm writing code to make a set of five LEDs appear to "bounce" back and forth "Knight Rider" style. When writing to the PORTB register, I noticed that the way I have the LEDs plugged in, the different ...
1
vote
1answer
212 views
Compute a very big power using C++
I have a very big power
e.x. 5^4912
double x, y, z;
I used z = pow( x, y ) function, but it gives me this result: [ 1.#INF ]
then, I tried to use a for loop that loops in 4912, but it gives me ...



