Hey. I would like to understand what "class << self" stands for in the next example.
module Utility
class Options #:nodoc:
class << self
def parse(args)
end
end
end
end
Thx!
Hey guys just been looking at the Steam website and noticed it doesnt use Flash.
What technologies are being used to create the page? For example the slide bar to scroll through the different games, how exactly is that happening?
Thanks in advance for any replys.
Hey all,
Is it at all possible to add custom key bindings to buttons in SWT? I can't use & in the text of the button to set a mnenomic because my buttons have no text (only an image). Is there a good way to do this using key listeners or is there something like the input/action map in swing?
Thanks in advance.
Hey guys,
i've been google'ing the difference between digital signature and digital certificate (asymmetric encryption)
seems like they are the same. I would like to clarify if they are the same or not? many thanks!!!
Hey Guys,
This seems like a basic problem with an easy answer but I simply cannot figure it out no matter how much I try.
I am trying to create a line graph based on two lists. For my x-axis, I want my list to be a set of strings.
x_axis_list = ["Jan-06","Jul-06","Jan-07","Jul-07","Jan-08"]
y_axis_list = [5,7,6,8,9]
Any suggestions on how to best graph these items?
Hey there! I'm using Plone 3.1.7 in a project that needs performance tweaks. One of the tweaks requests that CSS should be at the top of page and the JS should be at the bottom. However both are located at
<div tal:replace="structure provider:plone.htmlhead" />
In main_template. How do I split these ones?
Thanks in advance
Hey,
For some time I’ve seen employers demanding Sharepoint knowledge from programmers, but I have a problem understanding what it is :/
But today I was at IT training, and the main guy said something like: “Sharepoint is platform for commit code for programmer, control of version etc...”
Is that true? It sounds like SVN. Can someone explain me what advantages it has for a C# programmer?
Thanks ;)
Hey guys,
I'm trying to sho a contextmenu on right-click on an item in a listbox. So i'm binding a list of "Users" to my listbox. Then i'm a bit lost. I thought i could foreach the list and add a mouserightdown event on the listboxitems, but i can't figure out how.
Is this a good way, or does anyone know a better way of accomplishing what i want.
Thanks in advance.
Hey Everyone,
I am getting this error in Expression Engine when I am clicking on the Extensions Manager in the Utilities setting. Think anyone can help me out ... Parse error: syntax error, unexpected '&', expecting T_VARIABLE or '$' in ...
Thanks,
Jason
Hey,
is there a way to find out the last time a contact was modified?
I can't seem to find a variable for it. The reason I'm asking is because I'd like to do a sync of the contacts to my web server and I don't feel like checking for each contact with a HTTP request if it needs updating.
So I was thinking to check the date of the last update to the date of the last sync.
Hey,
I have an ASP.NET usercontrol inside which I am enbedding the Silverlight usercontrol. I have two events in the asp.net usercontrol - EDit and View . In the view mode I want all the controls on the Silverlight side to be disabled . So, How can I disable the controls from my asp.net code.
Thanks
Hey all..
I noticed that an application I am maintaining was giving me a javascript error in IE8 and FF. The script was trying to get a collection of frame elements:
document.frames
This always returned 'undefined'. I placed a watch on the document object and noticed that this collection does not seem to be a member of the document object in IE8. I think this was always the case in FF but this same code works in older versions of IE. Has this been removed?
-Nick
Hey there-
I need to have a tab interface that has a different "active" tab every time the page loads. There will be advertiser content in each of the 4 tabs, so this is a way to keep things "fair". I am familiar with the tabs part...just need pointed in the right direction getting different "active" tabs to display on page load.
Thanks!
Hey guys!
I'm awful with computers! I'm trying to use Filezilla to connect to my server. When I do this, this is the message it give me verbatim:
Protocol error: Unknown protocol identifier (0x50 0x50 0x48). Most likely connected to the wrong port.
Connection to server closed.
but it's not the wrong port!... what am I doing wrong?
Hey,
I'm using OpenJPA as a JPA provider.
Is there a way in which I can recreate the database tables (When an entity changes) without dropping the entire data?
When an entity changes, I drop and create every table in the store, and obviously lose the data within. Is there a tool or product to keep the data somehow?
Thanks,
Udi
Hey guys,
I have a page with some html content and my Flex app. At one point, the Adobe Flash Player Settings popup appears, but for some reason I can only just see the top of it, the rest is off screen towards the bottom. Does anyone know how I can fix this so that the user can interact with the popup? Thanks for reading.
Hey guys,
I have a web service where people can edit their pages CSS, but I have a bar on the footer of that page that I want to make consistend on every page...
People are, right now, able to "remove" it with CSS and I really didn't want to go and parse the CSS to remove rules related to that bar... Is there a way to preserve the styles or re-aply them after load to keep the bar always visible?
Thanks in advanced!
Hey guys,
I'm writing a search algorithm in C++, and one of the things I need to do is have a few if statements that check cells above, below, left of, and right of.
Each time a cell is found to be open and added to the stack, I want it added to a list of cells already checked.
I want to be able to say in the if loop if(thisCell is not in checkedCells).
Any simple ideas?
Thanks!
Hey,
I'm trying to create a C# application which allows me to extract just the audio from YouTube videos. I've come across sites that already do that, but I'm not sure how they actually work. What would be the best way to do this programmatically?
Thanks for any advice
i need an sms service that can gives me a phone number and then my customers can send me sms to that number. then posts the sms information to my website like http://xx.com/newsms.php?body=hey
Thanks
Hey,
I have a ASP.NET page called admin.aspx that needs to be protected from direct access.
I want it to be accessed only when the user enter his name & password in another page called login.aspx
I'm working in ASP.NET with Visual Basic .NET 2008, and I have no idea how to do it.
Can you help me doing it ?
Hey guys, quick question, all I want to do is resize an image to fit inside a small container when I run this function. Right now, only a portion of the image is shown inside the div. If anyone has any ideas, I would appreciate any advice.
$(this)
.css({
backgroundImage : 'url(' + src + ')', // set background image
backgroundPosition : 'center center', // position background image
backgroundRepeat : 'no-repeat' // don't repeat image
});
Hey all,
I'm trying to set the title of the header of my entire UITableView, but am having no success.
For example, on this webpage:
http://www.iphonesdkarticles.com/2009/01/uitableview-sectioned-table-view.html
I am trying to replicate creating the "Countries" header programmatically. I have a UITableView that works and displays data. When I insert the following line:
self.navigationItem.title = @"Countries";
In my viewDidLoad method, nothing happens. Thoughts?
Hey everyone, I was wondering how would I start programming an interface to trading stocks in Etrade in python. I am attempting to make an automated trading bot, but there is no api publicly available for automated trading with Etrade. Thanks in advance. ^^