1. Announcement: Job Blog - Blog with latest job postings from various inner circles

    Date: 12/25/04 (Java Web)    Keywords: software, java

    I have put a new blog which lists hot jobs postings associated with software & bioinformatics industry, job leads available by word-of-mouth, mailings lists of alumni associations, java architects, java user groups, vc mailings lists etc. In other words postings, often for high profile jobs, which are normally accessible to inner circle only.

    Source: http://blog.taragana.com/index.php/archive/announcement-job-blog/

  2. HELP MEEEEEEEE!

    Date: 01/16/05 (See my site)    Keywords: browser, html, java, web

    For the first time in god-knows-how-long, I have uploaded a new layout for my website. Please, please, I implore you all to follow this link:

    http://www.sweetfrenchbread.com/index5.html...

    ...read my "test run" notes on the main page, click around a little, and let me know how it is displaying with your montior, screen resolution, browser, etc. It represents my first attempt at writing any javascript stuff, so it is quite likely that it won't be displaying correctly for everyone. Screenshots are appreciated, too.

    Thanks, guys!

    x-posted to see_my_site and my personal journal.

    Source: http://www.livejournal.com/community/see_my_site/75306.html

  3. if you could, help me figure this out.

    Date: 02/24/05 (Javascript Community)    Keywords: asp, java

    I am using aspmailer script to run a form on a page. Here is how it works, someone can write in a form, then in the script is a redirect so that it goes back to that page when they hit submit. I want a pop up window to open when they are pointed back to that page saying their data has been submitted. But I dont want it to happen when they initially arrive at that page? Any help? Would this be javascript? I know some javascript, not alot. If i could do it in the script I would like to do it that way. If no one can help me, tell me where i should post this to get some feedback. thanks!

    Josh

    Source: http://www.livejournal.com/community/javascript/58078.html

  4. I am a sad n00b

    Date: 01/28/05 (Javascript Community)    Keywords: java, web

    Even worse, I have a simple question. u_u Anyway, I'm Chrystal, I love to web/graphic design. Currently I'm taking Web 2 and we are starting javascript... I am confused about something:

    I'm simply coping the book so I can see if I can even do that properly. It's a simple "enter your name" pop up script but it doesn't work like it should-- as followed by in the book:

    var name; // string entered by the user


    // read the name from the prompt box as a string
    name = window.prompt( "Please enter your name:", "" );

    document.writeIn( "Hello, " + name +
    ", welcome to blah!" );


    Now, that doesn't work. I took out the "In" in writeIn, and then it does work. Is my book wrong then? Or is there something I missing for it to work with the "document.writeIn" thing?

    Source: http://www.livejournal.com/community/javascript/54381.html

  5. Using Dynamic HTML Var Name to build Dynamic Java/jsp var names

    Date: 01/14/05 (Javascript Community)    Keywords: html, java, jsp

    [Error: Irreparable invalid markup ('') in entry. Owner must fix manually. Raw contents below.]

    I found the solution and follows under the solution cut!

    I have created the following dynamic HTML columns Col1, Col2, ...
    I need to access these named variables and assign them to both a javascript and java/jsp variable.
    Any ideas on how to do this.


    Old Code

    <%for (int x=0; x
    id='HRankCol<%=CurrRank.intValue()%>'
    name=HRankCol<%=CurrRank.intValue()%>
    value ="<%=CurrRank.intValue()%>"/
    >
    id='HRankFillQty<%=CurrRank.intValue()%>'
    name=HRankFillQty<%=CurrRank.intValue()%>
    value ="<%=CurrRank.intValue()+1%>"/
    >
    <%}%>

    JSP current code not working ....

    function fred()
    {
    var f = document.all.frmFixFill;
    for (var x=0; x {
    alert(f.'HRankFillQty'+x.value);
    }
    }



    The new fred function:
    function fred()
    {
    var f = document.all.frmFixFill;
    var fillname = null;
    for (var x=1; x<=f.HiddenRankCntColumns.value; x++)
    {
    fillname = "document.frmFixFill.HRankFillQty" + x + ".value";
    alert(eval(fillname));
    }
    }


    x-posted to and other JSP communities

    Source: http://www.livejournal.com/community/javascript/53149.html

  6. Scrollbar help..

    Date: 01/13/05 (Javascript Community)    Keywords: java, web, google

    Hello. =)

    My friend has comissioned me to code his band's website, and I need to learn something new in order to do so..

    I'd like to learn how to do the kind of scrollbars where you put your mouse over an image (an arrow, usually) and the page starts to scroll down or back up just by your mouse hovering over the images.

    I've always wondered how this is done, and now I have a really good reason to learn - to help my friend.

    I would use google and try to find a site that explains and gives coding, but I don't know what to search for.. =\

    I'm pretty sure this is javascript we're talking about here, but if I'm wrong, I apologize..

    Source: http://www.livejournal.com/community/javascript/52415.html

  7. IT jobs in New York City?

    Date: 02/14/05 (IT Professionals)    Keywords: java

    I hope this is on topic. I'm looking for a job as an entry-level Java/C++ developer in NYC and I have a BA degree in Computer Science and Math (double major). I also speak conversational Spanish, Dutch, French and German, type 85 wpm and am willing to travel extensively. If you wish to see my resume:

    http://www.amuzulo.net/resume.doc
    http://www.amuzulo.net/resume.txt

    Besides the usual monster.com, careerbuilder.com, craigslist.org, dice.com, linkedin.com, do any of you have any suggestions for how to find work in IT in New York? If any of you know of any good headhunters here, that would also be greatly appreciated!

    Like I said, I hope this post here is appropriate and I look forward to hearing from you all soon!

    Source: http://www.livejournal.com/community/itprofessionals/5412.html

  8. a JS question (lazy code format)

    Date: 03/01/05 (WebDesign)    Keywords: php, java

    Lazy formatting cause I cant recall how to show code, so here is the quick and dirty. Inherited site with clickable menu, client is nitpicking over the fact that the menu does not disapear when you click on another object.
    (source http://gateway.rossoptical.com/nav.htm )
    is there a simple way to pull this off? Drop down menu's with mouse over focus is not what the client wants (sadly).

    script type="text/javascript"
    function toggle(obj) {
    var menu = document.getElementById(obj);
    if (menu.style.display == 'none'){
    menu.style.display = 'block';
    } else {
    menu.style.display = 'none';
    }
    }
    /script


    a href="#" onclick="toggle('menu2')">DOUBLETS and TRIPLETS/a
    ul style="display: none;"
    li a href="./php/product-doublets_standard_achromats.php" target="mainFrame" Standard Achromats /a /li>
    li a href="./php/product-doublets_precision_aplanats.php" target="mainFrame" Precision Aplants /a /li>
    li a href="./php/product-doublets_negative_achromats.php" target="mainFrame" Negative Achromats /a /li>
    li a href="./php/product-doublets_laser_achromats.php" target="mainFrame" Laser Achromats /a /li>
    li a href="./php/product-steinheil_triplets.php" target="mainFrame" Steinheil Triplets /a /li>
    /ul

    Source: http://www.livejournal.com/community/webdesign/818419.html

  9. Wow, I suck. =\

    Date: 02/27/05 (WebDesign)    Keywords: java, seo, google

    I have a Javascript popup box on my site.. I don`t really use JS much as it is bad for SEO.. Within this presized popup box, I have a link to another page. When clicked, that link opens in the already presized popup box.. How do I make it so it opens in the parent window? Google hates me. T_T`;;

    Thanks in advance. (^^,)

    Source: http://www.livejournal.com/community/webdesign/816633.html

  10. Client side JavaScript search

    Date: 02/23/05 (WebDesign)    Keywords: browser, database, java, web

    Lo,

    I've a great big table and I'd like users to be able to easily search it. Normally I'd produce this with a database backend and just do a search function with that. That's not an option this time. Instead I was simply aiming to use JavaScript to open up the web browser's find feature. That's Ctrl+F on Internet Explorer, etc.

    I've had no luck though. Anyone know (if it's possible) the JavaScript to open the find/search box in the web browser. Anyone have any suggestions for a client side search function? (Just one static page.)

    advTHANKSance.

    Source: http://www.livejournal.com/community/webdesign/813332.html

  11. Smooth text

    Date: 02/23/05 (WebDesign)    Keywords: java

    Hi all,

    I have an image question, so feel free to redirect me to a Photoshop community if you know a good one ;)

    Can anyone tell me how to create text on a transparent background in such a way that it doesn't get all pixelated round the edges when it appears on a picture background as part of a Javascript slideshow? I have already tried all the different settings for the text (smooth, crisp etc.) to no avail.

    Thanks!

    Source: http://www.livejournal.com/community/webdesign/812945.html

  12. Selling stuff

    Date: 02/06/05 (College Textbook)    Keywords: software, java, jsp, ebay

    Hey all! Selling college textbooks (mainly science area).

    Here's the link! (and info coppied straight from my account.. minus the prices. check it out on the link)

    http://half.ebay.com/shops/shops.jsp?tag_name=books&seller_id=1660454

    The Da Vinci Code - Dan Brown (Hardcover, 2003)
    ISBN: 0385504209 | Comments: In excellent condition!

    View | Edit | Suspend | Delete | List on eBay 2/2/2005
    Pricing Info
    Molecular Cell Biology - Harvey Lodish, James Darnell, Matthew P. Scott, Monty Krieger, Paul Matsudaira, S. Lawrence Zipursky, Arnold Berk, Chris A. Kaiser (Hardcover, 2003)
    ISBN: 0716743663 | Comments: Excellent condition! (Some highlighting)

    View | Edit | Suspend | Delete | List on eBay 2/2/2005
    Pricing Info
    An Introduction to Genetic Analysis - Anthony J.F. Griffiths (Hardcover, 2004)
    ISBN: 0716749394 | Comments: Some highlighting but excellent condition!

    View | Edit | Suspend | Delete | List on eBay 2/2/2005
    Pricing Info
    Biochemistry - Jeremy Mark Berg, John L. Tymoczko, Lubert Stryer (Hardcover, Illustrated, 2002)
    ISBN: 0716730510 | Comments: Excellent condition!

    View | Edit | Suspend | Delete | List on eBay 2/2/2005
    Pricing Info
    Life - Gordon H. Orians, H. Craig Heller, William K. Purves, David Sadava (Hardcover, 2000)
    ISBN: 0716738732 | Comments: Minimal highlighting; Hardcover is somewhat detached, but ok

    View | Edit | Suspend | Delete | List on eBay 2/2/2005
    Pricing Info
    King of Torts | The - John Grisham (Paperback)
    ISBN: 0440241537 | Comments: Great condition!

    View | Edit | Suspend | Delete | List on eBay 2/2/2005
    Pricing Info
    Experimental Organic Chemistry - Jerry R. Mohrig, Terence C. Morrill, Christina Noring Hammond, Douglas C. Neckers (Hardcover, 1997)
    ISBN: 0716728184 | Comments: In excellent condition, with CD-ROM!

    View | Edit | Suspend | Delete | List on eBay 2/2/2005
    Pricing Info
    Student Companion to Accompany Biochemistry - Stryer (Paperback, 2002)
    ISBN: 0716743833 | Comments: Excellent condition!

    View | Edit | Suspend | Delete | List on eBay 2/2/2005
    Pricing Info
    An American Childhood - Annie Dillard (Paperback, 1998)
    ISBN: 0060915188 | Comments: In excellent condition!

    View | Edit | Suspend | Delete | List on eBay 2/2/2005
    Pricing Info
    Java Software Solutions - John Lewis, William Loftus (Paperback, 2001)
    ISBN: 020175052X | Comments: Excellent condition!

    View | Edit | Suspend | Delete | List on eBay 2/2/2005
    Pricing Info
    Health, Illness and the Social Body - Linda S. Podhurst, Meredith B. McGuire, Peter E. S. Freund (Paperback, 2002)
    ISBN: 013098230X | Comments: In excellent condition!

    View | Edit | Suspend | Delete | List on eBay 2/2/2005
    Pricing Info
    The I. L. Peretz Reader (Paperback, 2002)
    ISBN: 0300092458 | Comments: In excellent condition!

    View | Edit | Suspend | Delete | List on eBay 2/2/2005
    Pricing Info
    Fantasia an Algerian Cavalcade - Assia Djebar (Paperback, 1993)
    ISBN: 0435086219 | Comments: In excellent condition!

    View | Edit | Suspend | Delete | List on eBay 2/2/2005
    Pricing Info
    Organic Chemistry - Francis A. Carey (Hardcover, 2000)
    ISBN: 0072905018 | Comments: In great condition! In need of a new owner !!

    View | Edit | Suspend | Delete | List on eBay 2/4/2005
    Pricing Info
    Principles of Modern Chemistry - A. Freeman Wade (Paperback, 1999)
    ISBN: 0030247519 | Comments: Good condition, edges worn by use. No highlighting

    View | Edit | Suspend | Delete | List on eBay 2/2/2005
    Pricing Info
    Using C++ - Julien Hennefeld, Charles Burchard (Paperback, 1998)
    ISBN: 0534955916 | Comments: Excellent condition!

    View | Edit | Suspend | Delete | List on eBay 2/2/2005
    Pricing Info
    Principles of Modern Chemistry - H. P. Gillis, Norman H. Nachtrieb, David W. Oxtoby (Hardcover, 1998)
    ISBN: 0030244277 | Comments: Excellent condition!

    View | Edit | Suspend | Delete | List on eBay 2/2/2005
    Pricing Info
    UN Viejo Que Leia Novelas De Amor - Luis Sepulveda (Paperback, 1998)
    ISBN: 0140271414 | Comments: In excellent condition!

    View | Edit | Suspend | Delete | List on eBay 2/2/2005
    Pricing Info
    Inside the Music - Dave Stewart (Paperback, 1999)
    ISBN: 0879305711 | Comments: In excellent condition!

    View | Edit | Suspend | Delete | List on eBay

    Source: http://www.livejournal.com/community/collegetextbook/13433.html

  13. Introduction to Java Programming

    Date: 09/24/04 (College Textbook)    Keywords: programming, java

    Bought from New York University:

    Introduction to Java Programming
    (Fourth Edition) With Brand New CD

    Author: Y. Daniel Liang
    ISBN: 0-13-100225-2
    Publisher: PRENTICE HALL- Pearson Education, Inc. Copyright: 2003, 2001, 1999, 1998

    Condition: Used/New - CD, body of book, and spine in perfect condition (no markings, highlighting ect.) Covers have slight creases, front two and back two pages have moderate creases.

    Price: Bought for $60, asking $20 + 5 for S&H

    Questions? Want pictures? Feel free to e-mail me-
    skittercat at hotmail.com

    Thanks!

    Source: http://www.livejournal.com/community/collegetextbook/8523.html

  14. Turn off AutoLink

    Date: 01/01/70 (Webmaster View)    Keywords: java, web, google

    Javascript to kill Google's AutoLink. Add this to your webpages, "it will rewrite, the rewritten urls, killing the Autolink functionality."

    AutoLink is a feature in Google's toolbar which automatically add links into webpages.

    when clicking the Toolbar's AutoLink button will automatically create a link to an online map (US addresses only)? AutoLink can also link package tracking numbers to delivery status, VIN numbers (US) to vehicle history, and publication ISBN numbers to Amazon.com listings.

    (Via Jeffrey Zeldman)

    Comments

    Source: http://www.webmasterview.com/security_and_privacy/turn_off_autolink

  15. Sortable Tables

    Date: 01/01/70 (Webmaster View)    Keywords: java

    sorttable: Make your tables sortable using DOM and Javascript.

    Via Digital Media Minute

    Comments

    Source: http://www.webmasterview.com/usability/sortable_tables

  16. Unobtrusive Javascript

    Date: 01/01/70 (Webmaster View)    Keywords: java

    Unobtrusive Javascript: How we can use Javascript, but still maintain accessibility.

    Via wg

    Comments

    Source: http://www.webmasterview.com/programming/unobtrusive_javascript

  17. JAMA (for PHP)

    Date: 03/08/05 (PHP Community)    Keywords: php, java

    If you ever did any physics, engineering, or statistics work in Java, I'm sure you'll remember the classic Java Matrix package. We just finished porting it over to PHP over at phpMath.com, and the results are pretty cool. Anyone who's ever done clickstream modelling or any sort of complex online data analysis will really benefit from this package too. Just a few examples:

  18. With JAMA, you can perform a least-squares regression for an n-th degree polynomial - this function returns the coefficients of the polynomial. $X and $Y are arrays of x- and y-values and $n is the degree of the polynomial. Make sure you provide at least $n+1 values for each. Check out the test script here: http://phpmath.com/~jama/add-ons/polyfit.php.



  19. function polyfit($X, $Y, $n) {  
      if(count($X)!=count($Y) || count($X) < $n)
        return false;
      for ($i = 0; $i < sizeof($X); $i++)
    	for ($j = 0; $j <= $n; $j++)
    	  $A[$i][$j] = pow($X[$i], $j);
      for ($i=0; $i < sizeof($Y); $i++)
    	$B[$i] = array($Y[$i]);   
      $matrixA = new Matrix($A);
      $matrixB = new Matrix($B);
      return $matrixA->solve($matrixB);
    }
    



  20. Multivariate distributions are also a real breeze with JAMA. Check out how easy it is to calculate values for the probability distribution of a multivariate normal distribution, even when the correlation between variates is non-zero (e.g., not just the sum of the marginal probabilities). $a is the covariance matrix and $mu is the vector of means. This little snippet just iterates through [0,1] with Δ0.1, calculating the PDF for the standardized bivariate normal.



  21. $a = new Matrix(array(array(1, 0), array(0, 1)));
    $ai = $a->inverse();
    $sqadet = sqrt(pow(2*pi(), 2) * $a->det());
    $mu = new Matrix(1, 2, 0);
    for($i = 0; $i < 1; $i += 0.1) {
    $y = new Matrix(array(array_fill(0, 2, $i)));
    $y->minusEquals($mu);
    $yt = $y->transpose();
    $y = $y->times($ai);
    $y = $y->times($yt);
    $Q = -$y->get(0, 0) / 2;
    echo exp($Q)/$sqadet . '
    ';
    }
    We're also doing some work on implementing a complete statistical distribution library. They're both open-source community works, so if you're into this sort of thing, feel free to sign up for the mailing list and contribute too.

    Source: http://www.livejournal.com/community/php/270125.html

  22. Client Side Photo Gallery -- Shameless self promotion

    Date: 03/08/05 (WebDesign)    Keywords: java

    I recently finished up a JavaScript photo gallery for my personal site...so I documented it on my journal..

    The script takes a page of thumbnails and automatically creates the zoomed view based on the image clicked. It even works with the back button.

    Hope some folks find it useful.

    Source: http://www.livejournal.com/community/webdesign/824123.html

  23. JavaOne proposal NOT rejected!

    Date: 03/08/05 (Java Web)    Keywords: java

    I am tired of seeing people whine about their JavaOne proposals being rejected including Mary (from Sun) and others. Please spare us details of your rejected proposals. With tens of thousands of proposals from all over the world, you probably have a better chance at Lotto, just kidding. BTW: As for my proposal not being rejected, well I [...]

    Source: http://blog.taragana.com/index.php/archive/javaone-proposal-not-rejected/

  24. Question about forms

    Date: 03/09/05 (HTML Help)    Keywords: software, html, java, web

    Could someone provide me with some html code for this?

    #1: I would like to make a html form on a website that would create new pages from that form containing that form's information. (Very simple html form code of some sort. I've done this in the past, but forgot how to do it.)

    #2 (much more complicated. If it requires outside software other than java, forget it.): I would like to make a html form on a website that would create new pages that look identical to the original form, but with the blanks and buttons replaced with the form data submitted. Ideally, you would NOT be able to click any radio button or place a blinking cursor in any blank already filled with information.

    Source: http://www.livejournal.com/community/htmlhelp/1831170.html

Previous page  ||  Next page


antivirus | apache | asp | blogging | browser | bugtracking | cms | crm | css | database | ebay | ecommerce | google | hosting | html | java | jsp | linux | microsoft | mysql | offshore | offshoring | oscommerce | php | postgresql | programming | rss | security | seo | shopping | software | spam | spyware | sql | technology | templates | tracker | virus | web | xml | yahoo | home