Hello.I am trying to put the following statement in Dr.Scheme:
{with {x {+ 5 5}} {+ x x}}
but I got an error:
expand: unbound identifier in module in: with
anyone could help me?Thanks.
Hello, we are implementing a new web service. The web service will be a store of sensitive data and there are multiple users types with different permissions. So some user types can't access(and some can't change, and so on) certain types of data. How would this work in REST? I'm very new to REST, so sorry if this sounds noobish.
Hello,
We are planning on building a pay per view (PPV) video solution but we have no idea from where to start. Here are the current givens:
it will be hosted on Linux
using PHP
Database: MySQL
And by PPV I mean:
- going to website, selecting a movie to watch/download
- going to payment portal and paying
- being now able to watch/download
So here is my question, from where to start?
is there an existing (recommended) solution that we can download/buy?
Any information would be really appreciated
Hello all
I need to write a unit tests for a class that reads a xml file and parses it's content.
How can I Mock the file reading ? Because all the content of the tests should be against read file .
I use nmock2 with nUnit.
Thanks
Hello
I have a ListView in my WinForms application. ListWiew has 4 columns.
So i want to write string in fourth column on every LisViewItem.
When i try it.
foreach (ListViewItem item in lvData.Items)
{
item.SubItems[3].Text ="something";
}
i get an exception
InvalidArgument=Value of '4' is not valid for 'index'.
Parameter name: index
What's wrong?
Hello All,
I have the following aaaa_bb_cc string to match and written a regex pattern like
\\w{4}+\\_\\w{2}\\_\\w{2} and it works. Is there any simple regex which can do this same ?
I want to define a generator from a list that will output the elements one at a time, then use this generator object in an appropriate manner.
a = ["Hello", "world", "!"]
b = (x for x in a)
c = next(b, None)
while c != None:
print c,
c = next(b, None)
Is there anything wrong or improvable with the while approach here? Is there a way to avoid having to assign 'c' before the loop?
Thanks!
Hello. Does anyone know how I can create a screen overflow while a program is running? Mainly while a game is running. If anyone has used xFire or Steam, these use this feature. I've created a winform which starts the game/program and then minimizes. Could the overflow be created in the same winform? Thanks for the help! :)
Hello,
If you've used Google Wave or iGoogle you have probably seen that you can insert widgets that are made by third parties without approval. My question is: How does prevent the widge from performing XSS or steak cookies? Are the widgets loaded in an <iframe>? If yes, then what prevents them from redirecting you to another page?
Thanks
Hello,
what is a good introductory statistics book you can recommend? if there is a whole sequence of books that should be read, please do not hesitate to mention it. Books with applications are also welcome. I am aware that a single search on Amazon (or any other book seller) will provide me tons of titles, but some of them are avoidable...
About my background/knowledge: good knowledge of mathematics and probability theory, but almost null on statistics.
Hello,
I have a Canvas and in it a Border. Now I want to give focus to this Border. Can somebody please tell me how do do this? Seems like it's not that easy ): Thanks for any hint!
Hello,
Please take a look here:
Why i got that error when i'm trying to update my Eclipse Galileo to the newest Eclipse M6 Helios?
I'm using the update URL from here:
http://eclipsesource.com/blogs/2010/03/14/eclipse-3-6-m6-helios-available-for-download/
Is this a bug? If not, what can i do?
Please help. Thanks!
Hello,
I was wondering if there are any free / open source solutions that will start and stop a windows service based on load? I have some pubsub subscriber services that do background work which is not critical. Ideally i would like tot be able to automate things so that these services could start if memory/cpu/disk i/o was under a certain threshold and stop gracefully if that threshold was met.
Do you know of any solutions?
Thanks
JP
Hello,
I think this script is of big interest to any noob around here :) including me :)
What I want to create is a little code that I can use in any file and will generate a breadcrumb like this:
If the file is called "website.com/templates/index.php" the breadcrumb should show:
Website.com Templates
^^ link ^^plain text
If the file is called "website.com/templates/template_some_name.php" the breadcrumb should show:
Website.com Templates Template Some Name
^^ link ^^link ^^plain text
I am grateful for any reply, thanks!
Hello!
I would like to store only .txt filenames from a specific dir (let's say: /sdcard/docs/) into an String array.
Example:
In /sdcard/docs/ there are 5 files: 'foo.txt', 'bar.jpg', 'foofoo.txt', 'loool.png' and 'foobar.txt'. I would like to get array with contents: "foo.txt", "foofoo.txt", "foobar.txt"
How could I do it? Thanks =)
Hello, we're transitioning to doing all our task tracking in TFS 2010 and I'm wondering if there is a more lightweight way of working with it than through Visual Studio?
Just some sort of web-interface or a lightweight client, or even some powershell commandlets where I can create new tasks and add information to existing ones.
Hello Stackoverflow,
I'm looking to find out how to stop an activity instead of resuming upon the click of the item on the notification list. Any ideas?
Thanks!
Hello,
Suppose, I am doing a full build on my large project which has 7 modules and on the 6th module
build failed because a test failed. Is there any way by which I can start the build from the
point it failed?
Thanks
Shekhar
Hello,
We're trying to rewrite our current views from ERb to Liquid and we got following problem:
we have a lot of render(:partial => '/path/to/partial') in our code, but we found absolutely no instructions how to render partials in Liquid. The only one solution we found was with help of render_to_string but it's just to ugly to be true.
Thanx!
Hello when ever i try to to post information on facebook wall in android getting api is under construction but same api is working in iphone. i am using fbrocket..
Hello,
My PHP code is split between many files, and often I find myself using code like this this:
require_once( "$preIP/functions.php" );
The problem is that I have to keep using this a lot, and sometimes these statements are becoming redundant.
What kind of system do yo use/would recommend for keeping track of all the inter-dependencies in all the PHP files?
Hello all,
I have a website designed in ASP.2.0 (classical Asp) i wanted re-write my all urls using Microsoft url rewriting tool. my web website is hosted on shared server with ready hosting company.
Now the Readyhosting people said that they are not giving any support to these modules.
Can any please help me in this.
Thanks,
Rau
I need a simple how-to tutorial on developing a simple CMS web site using the OFBiz CMS framework. There are absolutely no documentation of how OFBiz CMS works. Whatever is there in the official website is only about the data model used in OFBiz CMS application.
If somebody can illustrate just a "Hello World" like application in OFBiz CMS, it will great help for me. Or can guide me to similar documents in web.
I am trying to make an interactive shell script in Perl.
The only user input I can find is the following:
$name = <STDIN>;
print STDOUT "Hello $name\n";
But in this the user must always press enter for the changes to take effect.
How can I get the program to proceed immediately after a button has been pressed?