I'm wondering if anyone out there has worked with Google Maps API with Rails 3. I'm looking for launching ideas, gems, plugins etc.
I played around with ym4r-gm plugin for several hours today, with not much luck. Have you played with this API on rails 3 yet?
Thanks in advance!
Hi all,
I am tried deploying .cod,.alx.jar files on blackberry simulator 8100;the application is not getting deployed on phone.I am using Blackberry plugin for Eclipse.
How can I solve this issue?
Please help
I'm using the FullCalendar plugin, and am very pleased with it, however I can't figure out how to enable resizing. I looked at the source of the calendar on the main FullCalendar page, and my code is no different save that I get my events from a source rather than explicitly define them.
What am I missing?
$('#schedule').fullCalendar({
events: '/campaigns/scheduled',
editable: true
});
Are there any good JavaScript libraries that can do this ?
These are usually done in flash
I have found this plugin so far, looking for others to evaluate.
http://jquery.vostrel.cz/reel
I'm trying to use Open Flash Chart 2 on my symfony project by including the ofc2 library on one of my controller's action.
Unfortunately it doesn't work.
There is a plugin for this, but it doesn't play with the latest version of OFC.
Anyone have had any success showing Open Flash Chart 2 on their site?
Thanks in advance,
Vic
i understand that silverlight has come a long way since its inception, but i have always struggled to find the business need for silverlight. i'd love to hear the advantages and disadvantages of silverlight 4.0 vs modern html5 and javascript libraries like jQuery or ExtJS from some people who are more in the know than i am.
is silverlight the way of the future or a stumbling block on the path to a plugin free web?
Is there a jQuery plugin or javascript library that supports a "genie" animation effect like the apple Mac OS X dock?
Bonus: Actionscript library? C/C++? .NET? Objective C?
Hi there
i'm developing a simple web quiz.
Using javascript, i would like to create an effect that displays a small image (1UP) that wanders around the "game deck" when users reach a specific level or score; user could gain an extra life simply clicking on it in time.
Do you know any Jquery plugin or javascript snippet to achieve an effect like this?
Thanks in advance
Michele
Does anyone know how to use the Pixastic plugin and jQuery to where I could have an image fade from color to completely desaturated?
I am trying to avoid saving out two images and fading one out..
Are there any good JavaScript libraries that can do this ?
These are usually done in flash
I have found this plugin so far, looking for others to evaluate.
http://jquery.vostrel.cz/reel
Hi,
I'm a big fan of Resharper in visual studio. It has some awesome refactoring tools, similar to what you get in Ecplipse for Java. Is there anything like this for Ruby? Better yet, is there a plugin or something into VIM that does refactoring for Ruby code like renaming all instances of a method or variable, renaming classes sitewide, etc?
thanks,
craig
I have a problem with Putty (a terminal emulation program) After connecting to my unix box from putty Bash completion does not seem to work .
does anyone know a plugin that can help me or another terminal emulator that can achieve these feat.
Hello, I have imported a fresh new project into my Subversion repository which is of 36MB, but after I imported my project, I checked the Repository folder and I see that the Repository folder just increased by 6MB. So, I am wondering, where actually my project files are saved ?
Environment: Windows 7, Client : Tortoise Subversion, Visual Studio Plugin : Visual Subversion.
Using scrollTo plugin to animate scroll effect:
http://plugins.jquery.com/project/ScrollTo
http://demos.flesler.com/jquery/scrollTo/
Tryed this code:
$(".top-scroll").hover(function(){
$("body").scrollTo($(".top-corner"), 2000);
},function(){
$("body").stop().scrollTo();
});
It must start to scroll when we hover .top-scroll block (mouseover) and stop when we hover it out (mouseleave).
Start works, stop - not.
How to fix?
Thanks.
Hi,
I have seen few UMl eclipse plugins,but I have nt find option to give project for UML diagram, which will generate class diagrams depends on oops relation to one class to other class,
can anybody tell me which plugin I use to generate UMl diagrams to my project ?
I am trying to validate html select element using jQuery Validate plugin. I set "required" rule to true but it always passes validation because zero index is chosed by default. Is there any way to define empty value that is used by required rule?
Most CF MVC Frameworks use the front controller pattern. Usually Search Engine Safe (SES) plugin together with URL Rewrite are used to construct friendly URLs. However, when it comes to implementing RESTful services, using a MVC framework seems like a layer of complexity added on top of another layer of complexity.
How should one tame this beast? Any nice and clean approach of supporting RESTful services with ColdFusion? Any MVC framework out there that can expose RESTful services easily?
Thanks
This code get's the currently logged in user, using the Spring Security Plugin (acegi):
def principalInfo = authenticateService.principal()
def person = null
if (principalInfo != "anonymousUser" && principalInfo.username) {
person = Person.findByUsername(principalInfo.username)
}
I would like then do:
session.user = person
This needs to be done after the user logs in. I can't figure out where to put my code to do this. It seem like it should be some place in the Login Controller, but I can't see where.
Hi, I am using jquery validation plugin for client side validation.
but i want to clear error mesages on my form clear button
editUser() is called on click of Edit User button.
clear button having separated function clearUser(){
// Need to clear previous errors here
}
function editUser(){
var validator = $("#editUserForm").validate({
rules: {
userName: "required"
},
errorElement: "span" ,
messages: {
userName: errorMessages.E2
}
});
if(validator.form()){
// form submition code
}
}
Thanks
I'm using a jQuery plugin called InfiniteScroll (https://github.com/paulirish/infinite-scroll) and I have a URL with this pattern: '/category/2/', when I paged the result I use the following pattern: "/category/2?page=2".
When Infinite Scroll makes de request, he increments the wrong number, in the case above, the request is: "/category/3?page=2" in place of "/category/2?page=3".
Anyone knows how workaround this?
Is is possible to do the following from a Visual Studio 2010 plugin? If yes, how?
Run all unittests in solution (with code coverage enabled)
Wait for all tests to complete
For successfully completed tests: Determine which methods were called during each test (directly by the test or indirectly by the tested methods).
What I actually don't know is how to interact with the testing framework...
I would write a WordPress plugin to parse all image source and check it's broken link or not.
My idea is :
Select all post&page's images by regex from MySQL
Navigate the image url and get the response header (404 ,403 error etc)
print a report
Since i don't need actual to download the binary file, so in performance ,compare in CURL , fopen , fsocketopen
Which one is worst to use?
And one more question, which method can execute in multi-thread?
Can someone shed light on how to setup by_star gem: https://rubygems.org/gems/by_star?
I ran ruby script/plugin install git://github.com/radar/by_star.git.
However, when I went to call a by_star method in one of my models from console, I got an undefined method error.
Do I need include or require statement? Could I be missing dependent gems? Ruby version issue?