I think hes really checking to see how many people will respond to a very old thread. So far 3, counting me. ;)
Do you need to be a programmer to be a mathmatician? Or does the inverse logic not apply?
I think hes really checking to see how many people will respond to a very old thread. So far 3, counting me. ;)
Do you need to be a programmer to be a mathmatician? Or does the inverse logic not apply?
I was actively looking for a solution to the problem of how to manage encapsulating many different topics targeted to different audiences under one roof,
IMHO, you are looking for the solution to a problem that does not exist. And that really sounds just like the middle-management buzz-word-bull-crap I used to hear in countless meetings back in the day. In the corporate world, that might get you some points with a clueless boss, but I don't think you're in that world. And I hope you aren't.
Understood. I realize my post may not be clear, but if you notice I never say anything about you wanting to copy them or to be like them.
But you are also one of the most attentive administrators (if not the most) of all the forums I participate on. It's your personal attention to the day to day, and even hour to hour, operation of this forum that I appreciate more than anything else that is non-content related.
I get the impression you drink a lot of coffe, you are always tinkering with something on the website. Or at least it seems that way.
Just because big sites do something doesn't mean it's a good thing. They probably have people that need to justify their salaries so they make marginal changes and claim some valuable benefit, even though your common sense tells you this is just a cosmetic change that does not improve content, layout or function.
The color theme/scheme thing is of very marginal benefit at best. I see this as more of a fad than anything else. The big sites that do this will abandon it when too many other sites start to copy the idea. But it's not harming anything so if you like it, great.
Your code is hard to understand. You appear to be checking for the existence of a hash key:
if(exists $name {$a}){
even though the syntax is a little messed up (a space between $name and {$a}) it probably still works.
but then you are using aray syntax when you try to delete later on, such as:
delete $name[$j];
square brackets [] are array indexing, curly brackets {} are hash keys. So I can't tell what it is you are actually trying to do by looking at your code. Are you removing something from an array or a hash?
while (defined (my $line = <IN>)) {
chomp ($line);
[B] next if ($line =~ m/^#/);[/B]
#save the unimportant interval for later on
my $unimportant_characters = $1 if $line =~ m/^\*\s+(.+)/;
my ($character, $penalty) = split (/\s+/,$line);
push @character, $character;
push @penalty, $penalty;
}
this line is messing up your entire script (as it is anyway) :
my $unimportant_characters = $1 if $line = ~ m/^\*\s+(.+)/;
if you did some basic debugging by printing variables to the screen you would see the above line is returning a bizarre value to $line. The culprit is the gap between "= ~". There should be no gap: "=~". What you did was create an assignment to $line "=" which changed the value of $line to 4294967295. So the next line in your script is being evaluated like this for every line of the file:
my (4294967295, ) = split (' ',4294967295)
so @characters is populated with the value 4294967295 for each line of the file. What you end up with at the end of that block is:
@character = (4294967295 4294967295 4294967295 4294967295 4294967295 4294967295 4294967295 4294967295 4294967295 4294967295 4294967295 4294967295 4294967295)
@penalty = ()
instead of:
@character = (T T G A C A * T A T A AT T)
@penalty = (7 8 6 5 5 5 15-21 8 8 6 6 5 8)
I did not check the rest of your script. Correct the above syntax error "= ~" and retry your script.
A very thoughtful solution. It does help the pages to load faster.
Thank you very much,
Kevin
I think I understand your explanation. Have you made any progress?
I was getting the JS warning when reading this thread and other threads. I only read threads in the Community Feedback and Perl forums, and I was getting the JS warning in both of those forums when readings threads, any threads.
finding the position of the match should be easy enough, but I don't unerstand the penalty or what it does.
the output should then be:
the program found ONKLE PHIL (ATG) at position 1 and 13 and ONKLE TOM (TGC) at position 9... hmm now the numbers beside the letters are penalty whenever its not founding an A at position one its get a penalty of 3 and the secound position if its not a T it gets a 4 if my diviation nr is put on 5 it will ignore all the characters we have look for untill now because 7 is bigger than 5, after that we get to the third letter etc...!!!!!!
This is all quite confusing to me. Are you aware there are many modules already written to work on this kind of data, and there is also bioperl. I think it's www.bioperl.org
yeah okay I see, a stupid question : is my comment then saved if I wanna used it later!!!
No. You would have to save lines that are comments to a variable or an array/list.
You will have to read both files. But lets look at his part of the code you posted:
open(IN,'<',$signaldescription ) or die "Could not find file\n";
my @character = ();
my @penalty = ();
my $comment ='';
while (defined (my $line = <IN>)) {
chomp ($line);
if ($line =~ m/^#/) {
if ($comment ne ''){
my ($character, $penalty) = split (' ',$line);
push @character, $character;
push @penalty, $penalty;
}
}
}
$comment is defined as '' (an empty string). Then in the code you check to see if $comment is not equal to an empty string, but of course it is, so the next three lines (the expressions) never are evaluated. If the intention is to skip comments
open(IN,'<',$signaldescription ) or die "Could not find file\n";
my @character = ();
my @penalty = ();
while (defined (my $line = <IN>)) {
next if $line =~ m/^#/;
chomp ($line);
my ($character, $penalty) = split (' ',$line);
push @character, $character;
push @penalty, $penalty;
}
hehehe... I see you're back online, what a surprise.
what a drama queen.... you need to step back from your computer anyway, IMHO. You take this chatting stuff way too serious. Don't let the door hit your behind on the way out. Keep your promise and make that your last post, thanks.
I am confused by what you said.
($comment ne '') is not a way to ignore something after you read it, but I am not sure what you mean by "after you read[ed] it".
The past tense of "read" is spelled "read" in english, not readed, the pronunciation is different though.
If you wanted to ignore lines that start with "#" in a loop:
next if (/^#/);
No errors, but there is a bit of an annoying delay while the browser seems to be calculating those rounded corners. That could be because this computer I use for surfing the internet is an old 800mhz windows98 system.
what is $comment being used for?
my $comment ='';
further on you have:
if ($comment ne ''){
but $comment is blank ('') so that condition is always false so the expressions that follow are never evaluated.
The demo is not giving my browser any problems.
I am no longer getting the JS warning. That seems to be it. I did notice right after I would click the "stop script" button the rounded corners would pop into the display, but I never assosicated them with the problem.
a little bit of an enigma..... don't let it go to your head ;)
EDIT: that wink smiley looks bad, I am of course just kidding with you
tgreer,
You last post explains alot (http://www.daniweb.com/techtalkforums/post358440-45.html).
I've been in a similar situation in the past and can appreciate your continued interest in somthing you were active in helping to shape and direct. Sometimes those parting of ways are bitter-sweet.
Since you did not have to explain yourself one iota to me, I appreciate that you did. It gives me insight I did not have before.
Regards,
Kevin
Good, so it seems you've answered your own question quite nicely, though I'm sure some would dispute your conclusions. Amazing, what a little research can do!
I think any conclusion I might try and surmise would be incomplete at best. I get the feeling there has been a lot of water under the bridge that I am totally unaware of. I will leave it at that, like I said I was really just curious. I'm not questioning your interest in this website, which seems to be very genuine to me.
I just found you to be a little bit of an enigma is all. But that is explained by my own ignorance about most of what goes on around here. Since I prefer it that way, I probably should not be asking you for any insight anyway.
Anyways, take care, maybe catch you around in the feedback forum from time to time.
Kevin
tgreer,
I don't understand your interest in how daniweb is structured. I had assumed you must be fairly active in the IT forums, but checking your post history, it appears to be 95%+ posting in the feedback forum for several months now.
I went back to Nov 2006 to find your last post in an IT forum (c++ I think it was). I might have missed one or two, but really, your main activity for several months is just posting in the feedback forum.
Am I missing something? You seem to have stoped being a contributing member a while back, at last as far as IT contributions is concerned. I see you have a "team colleague" designation, but I don't know what that signifies.
I am just curious is all, feel free to ignore my comments or tell me to mind my own business. Just seems odd to me that you seem to care that much when you're no longer really active in the IT aspect of daniweb.
Regards,
Kevin
If have the time I might try and help. Your question, or questions, are really more than asking for general help and will take some time to try and assist you with.
Look into using the Expect or Expect::Simple module.
LWP::UserAgent is good for this type of stuff:
http://search.cpan.org/~gaas/libwww-perl-5.805/lib/LWP/UserAgent.pm
Now I'm getting it everytime I view a page in a thread, and when I click "continue" I sometimes get the warning a second time. I guess I'll check in with daniweb in a few days and see if the problem has cleared up because this is too frustrating.
I got the warning and the was no globalspec ad displayed on the page.
I'm still getting the unresponsive script warning, seems to happen only in threads, not when viewing forum indexes. Happens about 30 to 40% of the time when viewing a thread. The page just stop dead in it's tracks for a few seconds, can't scroll or anything, and then the warning.
No need to apologize. No, I have no personal axe to grind here. The only source of bitterness is IntelliTXT, a topic I've already exhausted, and which has nothing to do with the concerns about the changing atmosphere and member demographics of Daniweb.
When I say Daniweb has changed for the worse, that the quality of postings has deteriorated, that we're attracting non-technical members, and that the staff seems much more tolerant of all of the above - that's exactly what I mean and the only motive is to let the administration know about the concern, and provide others who might feel the same an opportunity to say "yeah, what he said".
OK, that explains your concerns (to me) much more clearly. That is perfectly reasonable and rational and very understandable.
I get the sense that you are motivated by personal reasons, but what those reasons are I have no clue. Sort of like hearing two people arguing, you can tell they are angry or upset, but you have no idea why. It seems like you are upset about something more than just the quality or quantity of "geek" posts. But maybe not, maybe I am just getting the wrong impression. If I am, my apologies.
Your penchant for hyperbole makes it hard for me to take you seriously. You use words like "pollute" and "desease" to describe the problem as you see it. It makes your opinion seem less than objective, but maybe it is less than objective and that is your point? I honestly don't know.
But I do get the sense of some underlying motive for your comments about the quality of posts and how it affects this forum. I could be totally wrong, I'm just giving you my honest opinion, and maybe my perception of your motivation is wrong, but it comes across as negative and critical instead of helpful or insightful.
is that "all forums" or "this category"? When I look at "all forums" there are mostly IT forums displayed but also feedback and lounge threads.
Guess I can't edit the post with all the javascript anymore. Any moderator or adminstrator that wants to remove that post or the javascript please feel free to do so.
Well, when I visited the site this morning, I got the uresponsive script warning once out of 3 page views (perl forum main page first no problem, then Daniweb community forum main page no problem, then this thread and I got the warning). But there are no javascript errors in the error console so who knows. Hopefully it is a temporary problem.
Sorry for posting that ugly javascript stuff earlier, I will remove it.
well for what it's worth, this is what clicking on the JQuery error displays:
eval(function(p,a,c,k,e,d){e=function(c){return(c<a?"":e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('7(1C 1w.6=="T"){1w.T=1w.T;B 6=u(a,c){7(1w==q)v 1p 6(a,c);a=a||17;7(6.1t(a))v 1p 6(17)[6.E.27?"27":"2O"](a);7(1C a=="23"){B m=/^[^<]*(<(.|\\s)+>)[^>]*$/.2Q(a);7(m)a=6.3k([m[1]]);J v 1p 6(c).2o(a)}v q.6r(a.1l==2y&&a||(a.3Y||a.I&&a!=1w&&!a.24&&a[0]!=T&&a[0].24)&&6.3M(a)||[a])};7(1C $!="T")6.2S$=$;B $=6;6.E=6.8p={3Y:"1.1.2",8q:u(){v q.I},I:0,2b:u(1T){v 1T==T?6.3M(q):q[1T]},2r:u(a){B L=6(a);L.6p=q;v L},6r:u(a){q.I=0;[].1g.14(q,a);v q},K:u(E,1E){v 6.K(q,E,1E)},2h:u(1c){B 4c=-1;q.K(u(i){7(q==1c)4c=i});v 4c},1I:u(1Y,O,C){B 1c=1Y;7(1Y.1l==3t)7(O==T)v q.I&&6[C||"1I"](q[0],1Y)||T;J{1c={};1c[1Y]=O}v q.K(u(2h){P(B H 1x 1c)6.1I(C?q.1q:q,H,6.H(q,1c[H],C,2h,H))})},1m:u(1Y,O){v q.1I(1Y,O,"30")},2L:u(e){7(1C e=="23")v q.3u().3r(17.8t(e));B t="";6.K(e||q,u(){6.K(q.2I,u(){7(q.24!=8)t+=q.24!=1?q.60:6.E.2L([q])})});v t},2K:u(){B a=6.3k(1A);v q.K(u(){B b=a[0].3l(U);q.11.2X(b,q);22(b.1b)b=b.1b;b.4C(q)})},3r:u(){v q.3j(1A,U,1,u(a){q.4C(a)})},5i:u(){v q.3j(1A,U,-1,u(a){q.2X(a,q.1b)})},5j:u(){v q.3j(1A,12,1,u(a){q.11.2X(a,q)})},5t:u(){v q.3j(1A,12,-1,u(a){q.11.2X(a,q.2e)})},4g:u(){v q.6p||6([])},2o:u(t){v q.2r(6.31(q,u(a){v 6.2o(t,a)}),t)},4Y:u(4N){v q.2r(6.31(q,u(a){B a=a.3l(4N!=T?4N:U);a.$1H=16;v a}))},1D:u(t){v q.2r(6.1t(t)&&6.2q(q,u(2z,2h){v t.14(2z,[2h])})||6.3z(t,q))},2g:u(t){v q.2r(t.1l==3t&&6.3z(t,q,U)||6.2q(q,u(a){v(t.1l==2y||t.3Y)?6.3y(a,t)<0:a!=t}))},1M:u(t){v q.2r(6.2k(q.2b(),t.1l==3t?6(t).2b():t.I!=T&&(!t.1f||t.1f=="8v")?t:[t]))},4l:u(1s){v 1s?6.1D(1s,q).r.I>0:12},1a:u(1a){v 1a==T?(q.I?q[0].O:16):q.1I("O",1a)},4U:u(1a){v 1a==T?(q.I?q[0].2t:16):q.3u().3r(1a)},3j:u(1E,1P,3Z,E){B 4Y=q.I>1;B a=6.3k(1E);7(3Z<0)a.8w();v q.K(u(){B 1c=q;7(1P&&6.1f(q,"1P")&&6.1f(a[0],"3m"))1c=q.5J("20")[0]||q.4C(17.6n("20"));6.K(a,u(){E.14(1c,[4Y?q.3l(U):q])})})}};6.1z=6.E.1z=u(){B 1O=1A[0],a=1;7(1A.I==1){1O=q;a=0}B H;22(H=1A[a++])P(B i 1x H)1O[i]=H[i];v 1O};6.1z({8x:u(){7(6.2S$)$=6.2S$;v 6},1t:u(E){v!!E&&1C E!="23"&&!E.1f&&1C E[0]=="T"&&/u/i.1n(E+"")},4B:u(D){v D.66&&D.5I&&!D.5I.64},1f:u(D,Y){v D.1f&&D.1f.3K()==Y.3K()},K:u(1c,E,1E){7(1c.I==T)P(B i 1x 1c)E.14(1c[i],1E||[i,1c[i]]);J P(B i=0,6q=1c.I;i<6q;i++)7(E.14(1c[i],1E||[i,1c[i]])===12)3O;v 1c},H:u(D,O,C,2h,H){7(6.1t(O))O=O.3n(D,[2h]);B 6s=/z-?2h|7P-?8A|1d|58|8B-?28/i;v O&&O.1l==3Q&&C=="30"&&!6s.1n(H)?O+"4S":O},19:{1M:u(D,c){6.K(c.3o(/\\s+/),u(i,Q){7(!6.19.2V(D.19,Q))D.19+=(D.19?" ":"")+Q})},2f:u(D,c){D.19=c?6.2q(D.19.3o(/\\s+/),u(Q){v!6.19.2V(c,Q)}).6t(" "):""},2V:u(t,c){t=t.19||t;c=c.1R(/([\\.\\\\\\+\\*\\?\\[\\^\\]\\$\\(\\)\\{\\}\\=\\!\\<\\>\\|\\:])/g,"\\\\$1");v t&&1p 4v("(^|\\\\s)"+c+"(\\\\s|$)").1n(t)}},4d:u(e,o,f){P(B i 1x o){e.1q["1N"+i]=e.1q[i];e.1q[i]=o[i]}f.14(e,[]);P(B i 1x o)e.1q[i]=e.1q["1N"+i]},1m:u(e,p){7(p=="28"||p=="3V"){B 1N={},46,3P,d=["7d","8C","8D","8E"];6.K(d,u(){1N["8F"+q]=0;1N["8G"+q+"8H"]=0});6.4d(e,1N,u(){7(6.1m(e,"1h")!="1Z"){46=e.8I;3P=e.8J}J{e=6(e.3l(U)).2o(":4j").5l("2Z").4g().1m({4n:"1G",45:"8K",1h:"2D",7I:"0",8M:"0"}).5z(e.11)[0];B 3d=6.1m(e.11,"45");7(3d==""||3d=="4b")e.11.1q.45="6x";46=e.6y;3P=e.6z;7(3d==""||3d=="4b")e.11.1q.45="4b";e.11.33(e)}});v p=="28"?46:3P}v 6.30(e,p)},30:u(D,H,53){B L;7(H=="1d"&&6.W.1j)v 6.1I(D.1q,"1d");7(H=="4h"||H=="2v")H=6.W.1j?"3T":"2v";7(!53&&D.1q[H])L=D.1q[H];J 7(17.44&&17.44.4W){7(H=="2v"||H=="3T")H="4h";H=H.1R(/([A-Z])/g,"-$1").4m();B Q=17.44.4W(D,16);7(Q)L=Q.55(H);J 7(H=="1h")L="1Z";J 6.4d(D,{1h:"2D"},u(){B c=17.44.4W(q,"");L=c&&c.55(H)||""})}J 7(D.51){B 56=H.1R(/\\-(\\w)/g,u(m,c){v c.3K()});L=D.51[H]||D.51[56]}v L},3k:u(a){B r=[];6.K(a,u(i,1r){7(!1r)v;7(1r.1l==3Q)1r=1r.6C();7(1C 1r=="23"){B s=6.35(1r),1V=17.6n("1V"),2i=[];B 2K=!s.18("<1u")&&[1,"<42>","</42>"]||(!s.18("<6D")||!s.18("<20")||!s.18("<6E"))&&[1,"<1P>","</1P>"]||!s.18("<3m")&&[2,"<1P><20>","</20></1P>"]||(!s.18("<6F")||!s.18("<6G"))&&[3,"<1P><20><3m>","</3m></20></1P>"]||[0,"",""];1V.2t=2K[1]+s+2K[2];22(2K[0]--)1V=1V.1b;7(6.W.1j){7(!s.18("<1P")&&s.18("<20")<0)2i=1V.1b&&1V.1b.2I;J 7(2K[1]=="<1P>"&&s.18("<20")<0)2i=1V.2I;P(B n=2i.I-1;n>=0;--n)7(6.1f(2i[n],"20")&&!2i[n].2I.I)2i[n].11.33(2i[n])}1r=[];P(B i=0,l=1V.2I.I;i<l;i++)1r.1g(1V.2I[i])}7(1r.I===0&&!6.1f(1r,"3w"))v;7(1r[0]==T||6.1f(1r,"3w"))r.1g(1r);J r=6.2k(r,1r)});v r},1I:u(D,Y,O){B 2j=6.4B(D)?{}:{"P":"6J","6L":"19","4h":6.W.1j?"3T":"2v",2v:6.W.1j?"3T":"2v",2t:"2t",19:"19",O:"O",2W:"2W",2Z:"2Z",89:"6N",2Y:"2Y"};7(Y=="1d"&&6.W.1j&&O!=T){D.58=1;v D.1D=D.1D.1R(/4i\\([^\\)]*\\)/6O,"")+(O==1?"":"4i(1d="+O*6g+")")}J 7(Y=="1d"&&6.W.1j)v D.1D?4T(D.1D.6P(/4i\\(1d=(.*)\\)/)[1])/6g:1;7(Y=="1d"&&6.W.3h&&O==1)O=0.6R;7(2j[Y]){7(O!=T)D[2j[Y]]=O;v D[2j[Y]]}J 7(O==T&&6.W.1j&&6.1f(D,"3w")&&(Y=="81"||Y=="80"))v D.6T(Y).60;J 7(D.66){7(O!=T)D.6V(Y,O);7(6.W.1j&&/5E|3e/.1n(Y)&&!6.4B(D))v D.36(Y,2);v D.36(Y)}J{Y=Y.1R(/-([a-z])/6W,u(z,b){v b.3K()});7(O!=T)D[Y]=O;v D[Y]}},35:u(t){v t.1R(/^\\s+|\\s+$/g,"")},3M:u(a){B r=[];7(a.1l!=2y)P(B i=0,2R=a.I;i<2R;i++)r.1g(a[i]);J r=a.3N(0);v r},3y:u(b,a){P(B i=0,2R=a.I;i<2R;i++)7(a[i]==b)v i;v-1},2k:u(2u,3H){B r=[].3N.3n(2u,0);P(B i=0,5b=3H.I;i<5b;i++)7(6.3y(3H[i],r)==-1)2u.1g(3H[i]);v 2u},2q:u(1U,E,4k){7(1C E=="23")E=1p 4w("a","i","v "+E);B 1i=[];P(B i=0,2z=1U.I;i<2z;i++)7(!4k&&E(1U[i],i)||4k&&!E(1U[i],i))1i.1g(1U[i]);v 1i},31:u(1U,E){7(1C E=="23")E=1p 4w("a","v "+E);B 1i=[],r=[];P(B i=0,2z=1U.I;i<2z;i++){B 1a=E(1U[i],i);7(1a!==16&&1a!=T){7(1a.1l!=2y)1a=[1a];1i=1i.6Z(1a)}}B r=1i.I?[1i[0]]:[];5f:P(B i=1,5e=1i.I;i<5e;i++){P(B j=0;j<i;j++)7(1i[i]==r[j])5F 5f;r.1g(1i[i])}v r}});1p u(){B b=7L.71.4m();6.W={2N:/5D/.1n(b),3f:/3f/.1n(b),1j:/1j/.1n(b)&&!/3f/.1n(b),3h:/3h/.1n(b)&&!/(72|5D)/.1n(b)};6.7H=!6.W.1j||17.74=="75"};6.K({5u:"a.11",4z:"6.4z(a)",76:"6.2a(a,2,\'2e\')",7D:"6.2a(a,2,\'5s\')",78:"6.2B(a.11.1b,a)",79:"6.2B(a.1b)"},u(i,n){6.E[i]=u(a){B L=6.31(q,n);7(a&&1C a=="23")L=6.3z(a,L);v q.2r(L)}});6.K({5z:"3r",7b:"5i",2X:"5j",7e:"5t"},u(i,n){6.E[i]=u(){B a=1A;v q.K(u(){P(B j=0,2R=a.I;j<2R;j++)6(a[j])[n](q)})}});6.K({5l:u(1Y){6.1I(q,1Y,"");q.7g(1Y)},7h:u(c){6.19.1M(q,c)},7i:u(c){6.19.2f(q,c)},7k:u(c){6.19[6.19.2V(q,c)?"2f":"1M"](q,c)},2f:u(a){7(!a||6.1D(a,[q]).r.I)q.11.33(q)},3u:u(){22(q.1b)q.33(q.1b)}},u(i,n){6.E[i]=u(){v q.K(n,1A)}});6.K(["5q","5n","5p","5v"],u(i,n){6.E[n]=u(1T,E){v q.1D(":"+n+"("+1T+")",E)}});6.K(["28","3V"],u(i,n){6.E[n]=u(h){v h==T?(q.I?6.1m(q[0],n):16):q.1m(n,h.1l==3t?h:h+"4S")}});6.1z({1s:{"":"m[2]==\'*\'||6.1f(a,m[2])","#":"a.36(\'2J\')==m[2]",":":{5n:"i<m[3]-0",5p:"i>m[3]-0",2a:"m[3]-0==i",5q:"m[3]-0==i",2u:"i==0",2T:"i==r.I-1",5R:"i%2==0",5S:"i%2","2a-3s":"6.2a(a.11.1b,m[3],\'2e\',a)==a","2u-3s":"6.2a(a.11.1b,1,\'2e\')==a","2T-3s":"6.2a(a.11.7n,1,\'5s\')==a","7p-3s":"6.2B(a.11.1b).I==1",5u:"a.1b",3u:"!a.1b",5v:"6.E.2L.14([a]).18(m[3])>=0",3i:\'a.C!="1G"&&6.1m(a,"1h")!="1Z"&&6.1m(a,"4n")!="1G"\',1G:\'a.C=="1G"||6.1m(a,"1h")=="1Z"||6.1m(a,"4n")=="1G"\',7v:"!a.2W",2W:"a.2W",2Z:"a.2Z",2Y:"a.2Y||6.1I(a,\'2Y\')",2L:"a.C==\'2L\'",4j:"a.C==\'4j\'",5x:"a.C==\'5x\'",4G:"a.C==\'4G\'",5y:"a.C==\'5y\'",4R:"a.C==\'4R\'",5A:"a.C==\'5A\'",5B:"a.C==\'5B\'",3x:\'a.C=="3x"||6.1f(a,"3x")\',5C:"/5C|42|7A|3x/i.1n(a.1f)"},".":"6.19.2V(a,m[2])","@":{"=":"z==m[4]","!=":"z!=m[4]","^=":"z&&!z.18(m[4])","$=":"z&&z.2U(z.I - m[4].I,m[4].I)==m[4]","*=":"z&&z.18(m[4])>=0","":"z",4u:u(m){v["",m[1],m[3],m[2],m[5]]},5P:"z=a[m[3]];7(!z||/5E|3e/.1n(m[3]))z=6.1I(a,m[3]);"},"[":"6.2o(m[2],a).I"},5M:[/^\\[ *(@)([a-2m-3C-]*) *([!*$^=]*) *(\'?"?)(.*?)\\4 *\\]/i,/^(\\[)\\s*(.*?(\\[.*?\\])?[^[]*?)\\s*\\]/,/^(:)([a-2m-3C-]*)\\("?\'?(.*?(\\(.*?\\))?[^(]*?)"?\'?\\)/i,/^([:.#]*)([a-2m-3C*-]*)/i],1Q:[/^(\\/?\\.\\.)/,"a.11",/^(>|\\/)/,"6.2B(a.1b)",/^(\\+)/,"6.2a(a,2,\'2e\')",/^(~)/,u(a){B s=6.2B(a.11.1b);v s.3N(6.3y(a,s)+1)}],3z:u(1s,1U,2g){B 1N,Q=[];22(1s&&1s!=1N){1N=1s;B f=6.1D(1s,1U,2g);1s=f.t.1R(/^\\s*,\\s*/,"");Q=2g?1U=f.r:6.2k(Q,f.r)}v Q},2o:u(t,1B){7(1C t!="23")v[t];7(1B&&!1B.24)1B=16;1B=1B||17;7(!t.18("//")){1B=1B.4H;t=t.2U(2,t.I)}J 7(!t.18("/")){1B=1B.4H;t=t.2U(1,t.I);7(t.18("/")>=1)t=t.2U(t.18("/"),t.I)}B L=[1B],2c=[],2T=16;22(t&&2T!=t){B r=[];2T=t;t=6.35(t).1R(/^\\/\\//i,"");B 3B=12;B 1J=/^[\\/>]\\s*([a-2m-9*-]+)/i;B m=1J.2Q(t);7(m){6.K(L,u(){P(B c=q.1b;c;c=c.2e)7(c.24==1&&(6.1f(c,m[1])||m[1]=="*"))r.1g(c)});L=r;t=t.1R(1J,"");7(t.18(" ")==0)5F;3B=U}J{P(B i=0;i<6.1Q.I;i+=2){B 1J=6.1Q[i];B m=1J.2Q(t);7(m){r=L=6.31(L,6.1t(6.1Q[i+1])?6.1Q[i+1]:u(a){v 40(6.1Q[i+1])});t=6.35(t.1R(1J,""));3B=U;3O}}}7(t&&!3B){7(!t.18(",")){7(L[0]==1B)L.4L();6.2k(2c,L);r=L=[1B];t=" "+t.2U(1,t.I)}J{B 34=/^([a-2m-3C-]+)(#)([a-2m-9\\\\*2S-]*)/i;B m=34.2Q(t);7(m){m=[0,m[2],m[3],m[1]]}J{34=/^([#.]?)([a-2m-9\\\\*2S-]*)/i;m=34.2Q(t)}7(m[1]=="#"&&L[L.I-1].4X){B 2l=L[L.I-1].4X(m[2]);7(6.W.1j&&2l&&2l.2J!=m[2])2l=6(\'[@2J="\'+m[2]+\'"]\',L[L.I-1])[0];L=r=2l&&(!m[3]||6.1f(2l,m[3]))?[2l]:[]}J{7(m[1]==".")B 4r=1p 4v("(^|\\\\s)"+m[2]+"(\\\\s|$)");6.K(L,u(){B 3E=m[1]!=""||m[0]==""?"*":m[2];7(6.1f(q,"7J")&&3E=="*")3E="3g";6.2k(r,m[1]!=""&&L.I!=1?6.4x(q,[],m[1],m[2],4r):q.5J(3E))});7(m[1]=="."&&L.I==1)r=6.2q(r,u(e){v 4r.1n(e.19)});7(m[1]=="#"&&L.I==1){B 5K=r;r=[];6.K(5K,u(){7(q.36("2J")==m[2]){r=[q];v 12}})}L=r}t=t.1R(34,"")}}7(t){B 1a=6.1D(t,r);L=r=1a.r;t=6.35(1a.t)}}7(L&&L[0]==1B)L.4L();6.2k(2c,L);v 2c},1D:u(t,r,2g){22(t&&/^[a-z[({<*:.#]/i.1n(t)){B p=6.5M,m;6.K(p,u(i,1J){m=1J.2Q(t);7(m){t=t.7M(m[0].I);7(6.1s[m[1]].4u)m=6.1s[m[1]].4u(m);v 12}});7(m[1]==":"&&m[2]=="2g")r=6.1D(m[3],r,U).r;J 7(m[1]=="."){B 1J=1p 4v("(^|\\\\s)"+m[2]+"(\\\\s|$)");r=6.2q(r,u(e){v 1J.1n(e.19||"")},2g)}J{B f=6.1s[m[1]];7(1C f!="23")f=6.1s[m[1]][m[2]];40("f = u(a,i){"+(6.1s[m[1]].5P||"")+"v "+f+"}");r=6.2q(r,f,2g)}}v{r:r,t:t}},4x:u(o,r,1Q,Y,1J){P(B s=o.1b;s;s=s.2e)7(s.24==1){B 1M=U;7(1Q==".")1M=s.19&&1J.1n(s.19);J 7(1Q=="#")1M=s.36("2J")==Y;7(1M)r.1g(s);7(1Q=="#"&&r.I)3O;7(s.1b)6.4x(s,r,1Q,Y,1J)}v r},4z:u(D){B 4A=[];B Q=D.11;22(Q&&Q!=17){4A.1g(Q);Q=Q.11}v 4A},2a:u(Q,1i,3Z,D){1i=1i||1;B 1T=0;P(;Q;Q=Q[3Z]){7(Q.24==1)1T++;7(1T==1i||1i=="5R"&&1T%2==0&&1T>1&&Q==D||1i=="5S"&&1T%2==1&&Q==D)v Q}},2B:u(n,D){B r=[];P(;n;n=n.2e){7(n.24==1&&(!D||n!=D))r.1g(n)}v r}});6.G={1M:u(S,C,1o,F){7(6.W.1j&&S.3L!=T)S=1w;7(F)1o.F=F;7(!1o.2A)1o.2A=q.2A++;7(!S.$1H)S.$1H={};B 38=S.$1H[C];7(!38){38=S.$1H[C]={};7(S["39"+C])38[0]=S["39"+C]}38[1o.2A]=1o;S["39"+C]=q.5Y;7(!q.1k[C])q.1k[C]=[];q.1k[C].1g(S)},2A:1,1k:{},2f:u(S,C,1o){7(S.$1H){B i,j,k;7(C&&C.C){1o=C.1o;C=C.C}7(C&&S.$1H[C])7(1o)5U S.$1H[C][1o.2A];J P(i 1x S.$1H[C])5U S.$1H[C][i];J P(j 1x S.$1H)q.2f(S,j);P(k 1x S.$1H[C])7(k){k=U;3O}7(!k)S["39"+C]=16}},1S:u(C,F,S){F=6.3M(F||[]);7(!S)6.K(q.1k[C]||[],u(){6.G.1S(C,F,q)});J{B 1o=S["39"+C],1a,E=6.1t(S[C]);7(1o){F.61(q.2j({C:C,1O:S}));7((1a=1o.14(S,F))!==12)q.4F=U}7(E&&1a!==12)S[C]();q.4F=12}},5Y:u(G){7(1C 6=="T"||6.G.4F)v;G=6.G.2j(G||1w.G||{});B …
the error console of Fire Fox shows a bunch of "JQuery is not defined":
Error: jQuery is not defined
Source File: http://www.daniweb.com/techtalkforums/clientscript/jquery.js
Line: 1
also these errors:
Error: uncaught exception: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIDOMWindowInternal.focus]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: [url]http://www.daniweb.com/techtalkforums/newattachment.php?f=26&poststarttime=1178077831&posthash=2f5fcb58165e69004bce5c8e8b061916[/url] :: onload :: line 1" data: no]
Error: uncaught exception: Permission denied to call method Location.toString
Something tells me it's the ad? (We switched ad servers today) Are you using an ad blocker?
I disabled ad blocker plus and it is still happening.
You ask who wouldn't? I wouldn't. I could care less what anyone here thinks about me or what they say about me, not that anyone does. You shouldn't either, but thats your decision to make.
I assume if it is happening to me it must be happening to others. I am using FireFox 2 on dial up (56k).
See attachment.
Christina, Josh, et al,
I won't hold it against you for acting your age, I assume you won't hold it against me and other "old" people for acting ours.
You youngsters are cool, I have no problem with anything you do and haven't had a problem with anything you say or how you say it. I may be a bit speechless about some of your prolific posting activity, and might not comprehend why you care about bad rep (or even good rep) but thats really none of my business.
We were all young and teenagers once, you guys can look forward to trading places with us old folk and scolding the future "myspace crowd" for being care-free and silly and wasting too much time chatting on IT forums.
..but its hard to help people when their posts don't even make sense! Do they use like crappy translators or do they just type every English word that they know?:-/
True, but some of the translations are hilarious.
If you could change one thing ...
get rid of that floating pop-up when you mouse over topics. Obnoxious, now it follows you around like a cockroach, get rid of it. Plus the script seems to be causing a long delay in page loads.
OK, well, fix those errors otherwise your code will not even compile.
First thing you have to do is fix the errors:
Global symbol "@karaktere" requires explicit package name at script line 68.
Global symbol "$fastafilename" requires explicit package name at script line 72.
Global symbol "$reversecomplementdna" requires explicit package name at script line 83.
Global symbol "$reversecomplementdna" requires explicit package name at script line 84.
syntax error at script line 88, near "}"
How come you are not getting help from a teacher or fellow student?
It's those word games that she plays!;) lol.. I'm no1 to talk about that though.
But seriously, I think something should be changed about the rep system.. It has a specific purpose, and people abuse it way too often. I think it would be beneficial for people's names to be posted when they rep. For one, it would stop people from abusing the system. If you neg. rep someone for a stupid reason, you will be neg. repped back. But on the same token, if the neg. rep is deserved, I don't think there will be a rep war. If some1 neg. repped me for a good reason, I would not be angry or neg. rep them back.
First, I think anyone that takes rep seriousy needs to take a break from their computer.
Daniweb seems to have a group of members that is here more for the entertainment value and less the webdev stuff. Those members will abuse, and I use that word loosely, the rep system, seeing it as just part of the fun and games. I call it the myspace crowd for lack of a better description.
there is a reply on the the other forum you posted this same question on.
Is this school work?