help

Trying to get the s3slider to work on my shopify

Ive been working on this for 2 days now and its alittle out of my league, I was hoping a cyber samaritan could help me out. So shopify has assets that you upload then call upon them in your html and liquid coding. As far as I understand the html section goes in the theme.liquid part and to display the slider on the front page the jQuer...

Learning NAnt - what does [+|-] in the help mean?

If I type nant -help I receive help information about the various command-line options. Some, such as find have a suffix of [+|-], e.g. -find[+|-] Search parent directories for build file What does the [+|-] mean? ...

How to make CSS (or JS?) hideable help bar

Sort of how this website shows a bar on top when you have new answers or comments, I want to show a very similar bar that just has a line of text in it and an [X] to close it. How would I begin to do this? ...

jQuery in Wordpress

Hello. I am using WP3 and am using some simple JQ to style some elements. However, I cannot get it to work. I am aware of but beyond that I don't know where to put my own code exactly, in which file or place. The code is: <script> $(document).ready(function(){ $("#image" + photoNum).animate({ opacity: 0, scale: 3 }, 0); </script> ...

Help File Topic Id

I am trying to implemented F1 help for my winform application. I have read this thread: http://stackoverflow.com/questions/1029316/how-to-create-f1-help-in-windows-forms-using-c My question is how do I find the topic id of my topic in the chm file? I am using html help workshop, and I have looked over every html file and option and cou...

Sorting arrays of paired numbers and removing duplicates or overlaps?

How can I sort two arrays of coordinates in numerical order by the start coordinates e.g. my @starts = (100,100,200,300,400,500,525); my @ends = (150,125,250,350,450,550,550); but choose the biggest difference if there are two matching in either the starts or ends list? E.g. my @uniq_starts = (100,200,300,400,500); my @unique_ends ...

ERLANG - Splitting Lists into sub list

Hi this is my first post here hope you all are well. So Im just starting erlang and I ran into a problem im not sure how to tackle yet. So I have a binary I am recieving in the form of <<56, 23, 67, 34, 45, 78, 01, 54, 67, 87, 45, 53, 01, 34, 56, 78>> My goal is to split it into a sub list (or binary if more efficient) based on t...

ERlANG - Splitting Lists into sub list

Hi Everyone, So this I just had one problem solved very quickly by a nice guy on my other post. http://stackoverflow.com/questions/3464207/erlang-splitting-lists-into-sub-list Now I am a beginner at Erlang and need a little help with the syntax of another function that does work on the result from my previous post. For example, I now...

Regarding Help File in JAVA

Hi All, I'm new to help file creation in java. I have created a help file "sample.chm" with a 3rd party tool, added it to a java program with package name as "help" calling with runtime class and build the jar. When I run the jar file it is giving me an error that the "file cannot be found, null pointer Exception". I have given a relati...

ERLANG - Pattern Matching

Hi Everyone, I have a variable: Data = [[<<>>, [<<"10">>,<<"171">>], [<<"112">>,<<"Gen20267">>], [<<"52">>,<<"20100812-06:32:30.687">>]] I am trying to pattern match for two specific cases.. One where anything that resembles the outside structure - simply [] Anything inside goes I have tried [ _ ] but no go? The Second, for a ...

nHibernate - Complicated many-to-many class mapping

Hi All I'm new to nhibernate, and I'm sorry if this is answered elsewhere, but I've been looking for the last couple of hours, and can't find a solution that works. A bit of background: I'm trying to write an Admin area where there are users and sites, and a user can have access to multiple sites - but at various permission levels for ...

ERLANG - Pattern Matching specifc pattern in unknown size list

Ok now I think Im getting warmer, I have to pattern match whatever comes in. So if I had say Message = = [[<<>>], [<<"10">>,<<"171">>], [<<"112">>,<<"Gen20267">>], [<<"52">>,<<"20100812-06:32:30.687">>]] And I was looking to pattern match the field <<"112">> Such as the 112 is always going to say 112, but the Gen2067 can change...

ERlang - Very Weird - calender:... Does not work

I did not think I would spent an hour trying to figure this one out... with all the headway I made today and such. So I'm using what would seem to be - straight out the manual - erlang BIF calender:universal_time(). But I get 35> calender:universal_time(). ** exception error: undefined function calender:universal_time/0 Checked m...

ERlang - Trying to find LENGTH of constituents of List

Hi Everyone, guess its getting late, and Im a beginner, just need a little help.. Im trying to find the length of a list.. BUT NOT of the lists themselves, rather the length of the values within.. I take something like: Other = [<<"366">>,0, <<1>>, <<"344">>,<<"Really" <<1>>, <<"9...

Erlang - Interleave the easy way

Whats the easy/efficient way of interleaving three data sets.. Data1 = [<<5>>,<<6>>,<<7>>], Data2 = [<<5>>,<<6>>,<<7>>], Data3 = [<<5>>,<<6>>,<<7>>]. End Result: Final = [<<5>>, <<5>>, <<5>>, <<6>>, <<6>>, <<6>>, <<7>>, <<7>>, <<7>>] Im sure its like [X || X <- [Data1, Data2, Data3]] ...

How to change default help unavailable message

Hi all, When help viewer is not integrated within cocoa application it gives this message: Help isn't available for XYZ Is there any way to change this default message? Thanks, Miraaj ...

Open Source Help Center/Knowledge Base

I wonder if there is any software that is specifically for the Help/FAQ section for a website like: Facebook Help ...

[VB.NET]Transferring data from 1 file to another

Basically I want to take My Client. Then for example Lets say in my client I have "A = 1" Then my 2nd file which has random data in it. So Client= My Client File = The File which I want in the end result How could I Inject "A = TextBox1.Text" from Client to File. I heard it's called "End Of File" or something like that. Any help please?...

Erlang - Split a list into lists based on value

I am trying to split this list List = [[<<"5">>, <<"54">>], [<<"00">>], [<<"35">>, <<"54">>, <<"45">>, <<"55">>], [<<"00">>],[ <<"5">>]] into List = [[<<"5">>, <<"54">>], [<<"35">>, <<"54">>, <<"45">>, <<"55">>], [<<"5">>]] Basically based on the <<"00">> What is the best BIF to go about this, I have some code, but its sloppy, an...

Erlang Error Handling , X unsafe in 'try'

Can anyone enlighten me as to why this bit of code spits back that the X is unsafe in 'try', well I know why, but more so how to fix it. try X = lists:append(lists:zipwith3(fun(X, Y, Z) -> [X, Y, Z] end, Data1, Data2, Data3)) of MP -> X catch K -> (X = 0) end. %MP = [lists:zipwith3(X, Y, Z...