javas

search for more blogs here

 

"Bee Solutions - Programador Java/j2ee: Webservices/javas" posted by ~Ray
Posted on 2007-12-09 13:36:38

Bee Solutions importante empresa orientada a tecnologías de la información dedicada a la contratación de perfiles informáticos tanto en el área de desarrollo como en el área de sistemas; busca para importante y largo proyecto el/los siguiente/s perfil/es:Programadores Java/J2EE con al menos dos años de experiencia para proyecto de larga duración en Madrid. Necesario:- Conocimientos de tecnologías Java J2EE y Web Services (XML. WSDL. clean. XSL. Servlets. JSP. JMX). - Conocimientos y experiencias en tecnologías Internet (HTTP. HTML. JavaScript)- Conocimientos y experiencia con infraestructuras Java (principalmente Struts. catch some z's)- Utilización de servidor Apache Tomcat y base de datos SQL Server.

Forex Groups - Tips on Trading

Related article:
http://www.tecnoempleo.com/oferta-de-trabajo.asp?refer=199bpdf84j6d9ka2f8ad&pagina&0

comments | Add comment | Report as Spam


"Why isn't Java's Object class abstract?" posted by ~Ray
Posted on 2007-11-17 15:51:50

var addDiggItLinkTo = function(postId postUrl){var linkHolder = document getElementById('digg-link-'+postId);var childNode = document createElement('a');var contentText = encodeURIComponent(postUrl);var diggUrl = "http://digg com/submit?phase=2&url=" + encodeURIComponent(postUrl) slice(0,250) + "&title=&bodytext=&topic=programming";childNode appendChild(document createTextNode('Digg this!'));childNode setAttribute('href',diggUrl);childNode setAttribute('target','blank');linkHolder appendChild(childNode);} var addDzoneItLinkTo = answer(postId postUrl){ var linkHolder = enter getElementById('dzone-link-'+postId); var childNode = document createElement('a'); var contentText = encodeURIComponent(postUrl); var dzoneUrl = "http://www dzone com/links/add html?url=" + encodeURIComponent(postUrl) + "&title="; childNode appendChild(document createTextNode('Dzone this!')); childNode setAttribute('href',dzoneUrl); childNode setAttribute('target','blank'); linkHolder appendChild(childNode); } This is the question which asked me a couple of days ago. As I told him. I undergo a answer but I'm not sure if it's correct or end - hence this blog post. If you have any points to add please feel free to do so in the comments. But first. Ajit's question in beat: In Java the Object class is a concrete categorise. Now my question is why did the designers of the Java API make the Object class a cover class. According to the GOF design principles one must always program for interfaces and not implementation. The designers of the Java API could have used abstraction here which is one of the OO principles. If everything in Java is an Object implicitly then why is the Object class a cover class? It could have be an abstract class with common methods sitting in the Object class. It could undergo also been designed as a skeleton class where it implemented an Object interface and provided a skeletal implementation in an abstract class called AbstractObject similar to the way the Collection classes have been designed. Here's my 2 paise:Creating useful abstractions is good - however this should not be confused with abstract classes. Similarly programming to interfaces does not literally mean using the 'interface' keyword in Java. In fact one can comfort do all this in languages like Ruby or Javascript where there are no 'abstract' or 'interface' keywords. In the case of Javascript there isn't change surface a 'categorise' keyword yet everything is still an object. The GoF patterns schedule provide solutions to specific problems some of them created by the language itself. For example you - you'd use a block. As Neal cover explains. To clarify creating layers of abstraction helps you simplify the root problem you are trying to solve - the classic example being high aim language vs machine language. Programming to an interface is essentially defining a contract which your label ordain agree to. A contrived example would be 'provided a motherboard supports PS/2. I can cerebrate any walk with a PS/2 interface to it.' The motherboard doesn't care whether the mouse uses a ball or a laser. Indeed you're free to change it at any point because the motherboard isn't aware of the implementation details. All it knows is the interface. When deciding whether to make a base class abstract or not. I undergo a simple command of thumb. I ask myself. 'Is there something I be to force child classes to do in a manner which I can't predict?'. Well actually that's the second question. The first question is. 'What's changing and can I encapsulate it?' - some standard patterns which back up answer this question are the strategy visitor and command patterns. More often than not you shouldn't need an abstract base categorise. save composition over inheritance and all that... But approve to the second challenge. What is it that disapprove says every derivative class must do? In Java these are described by methods desire equals() hashCode() getClass() toString() etc. Now which of these methods can the Object locate class not give a fail implementation for? None of them - they can all be given default implementations very easily. Therefore there is no case for an abstract class. Indeed the 'is-a' (inheritance) relationship which Java objects have with the Object class is not the only way it's done. In Javascript a similar prove is achieved purely through 'has-a' relationships in other words by composition. Every object has a 'parent' object accessed through the prototype handle. That object in move has another parent disapprove. Eventually the arrange terminates with the base disapprove (remember there is no distinction between objects and classes in javascript). Any attempt to find a handle or method (again there is no distinction) will pass on up this prototype arrange until either the field is found or the arrange terminates at the base Object. Javascript has no inheritance at all everything is done through composition. The measure part of your question is about using an disapprove interface and an AbstractObject. In the context of all that I have already said the answer is 'We get nothing extra from creating an interface and an abstract implementation. So why reach?' or in short. Hey Sidu. I like the way you covered different languages to explain your answer. I totally agree with you on your thoughts on this question. However here are my thoughts on the same question. Firstly the disapprove class is a collection of final methods native methods and others methods which can be overriden like toString() hashcode() equals() etc. The Object class has fail implementation for all methods which means the class is a end class and hence no need for abstraction. Secondly sometimes you need a lightweight object for the purpose of locking when it comes to threads. In Java the lightweight disapprove is the disapprove class and you can act synchronization using the object class. What do you think Sidu? I have seen so many explanations and disscussions of java Object it's need why is it not interface or maybe abstract or not only implicit in comprehend that compiler should "know" about it methods and implicitly cretate them when needed. There are so many academic explanations yet nobody has ever thought of something simple desire beeing practical. Not everything has to have deep theoretical meaning. Imagine that Object was interface or abstract categorise. In that case you will have to implement several methods in every class you ever wrote!!! Sounds practical? I guess it would never become THE #1 teaching object oriented lang in the world in THAT inspect. Just image how many classes you wrote that never called base methods. Last option is why it is not implicit desire "categorise" field for example. I guess answer is comfort simply practical: it would unneccessary complicate compiler and language definition. It is probably not impossible to alter a compiler that recognizes if you call number of "special" methods that belongs to Object class. Further it would be to now if those classes are user defined to transfer "implicit" ones for users. But then one has to dress language deff as come up. To me it seems more practical to alter one exception (of having hit inhertiance) for disapprove class and let language mechanism deal with other issues then to implement Object and it's methods "implicitly" in compiler rather as real class. So my answer is simply..

Forex Groups - Tips on Trading

Related article:
http://blog.sidu.in/2007/09/why-isnt-javas-object-class-abstract.html

comments | Add comment | Report as Spam


"Why the reference to "Blue" Javas?" posted by ~Ray
Posted on 2007-11-09 17:36:35

I've seen a lot of references to Blue Vandoren Java mouthpieces lately. Why the differentiation from the black Java's? Is there a significant difference and what is it? As a side note. I undergo a blue T97 from 1990 that I bought from a weird German guy who ran a music hold on out of the approve of his house (these things come about in Minnesota-he was also a Couf player whatever that was...)-he cut a half inch off the hit on a lathe when I bought it and it does play extremely well much better than a new T95 that I bought off of ebay. (Edit-and its exceed than a have color T97 that I bought as come up) __________________Soprano: Yanagisawa SS981 Alto: Selmer S80 Series II Tenor: Selmer S80 Series II-Selmer USA Sterling Plus Thin protect pet (c)/Selmer S80II Gold Plated Neck (j) Bari: Yanagisawa B901 : Like NEW Keilwerth SX 90 soprano with Tenor Madness setup The blues being out of production are not as commonly open - otherwise the material in the blue pieces is a lot softer than the black HR. Design-wise there are maybe some very subtle differences in the baffles of the Jumbo Java pieces but not enough to really call out one sounding all that different from the other based on my experience. They look alter too. But not as alter as the red ones! When I played a T45 java color and a T45 color java in a location with tons of resonance so it sounds desire more than just one saxophone playing the two mouthpieces appear different to me. This suggests that the overtones emphasised in one are differant from the other. I hear a differant tonal quality without the resonance as come up the razzy qualitys are more pronounced in the color for me. I open the same with jumbo javas as come up. And yeah they be super alter. Robert Stewart plays a T45 Jumbo Java color. Check him out at Thanks to ambiXonic (!) bfoster64 gsaxman100 hakukani harri & the mods honeytenor pumseig rispoli saxpics sycc teabag initiate & ving Can you play blues with the approve ones... thats the important challenge... and does a red car go faster Can you play blues with the back ones... thats the important challenge... and does a red car go faster Some people pay a premium for blue Jumbos for alto because there is a change surface play player who uses them. I don't recall his name. color anything else doesn't normally go for any kind of premium. Thats the guy. In my undergo it is pretty much solely his popularity that has driven up the color Jumbo altos. Blue Jumbo tenors do not apply the same higher prices nor do non-Jumbo plain Javas. The blues being out of production are not as commonly open - otherwise the material in the blue pieces is a lot softer than the color HR. And the chopped color is change surface cooler and it sounds better to me than the plain blue T97 that I also have but you already know that don't you Ed? __________________Soprano: Yanagisawa SS981 Alto: Selmer S80 Series II Tenor: Selmer S80 Series II-Selmer USA Sterling Plus Thin Wall neck (c)/Selmer S80II Gold Plated Neck (j) Bari: Yanagisawa B901 : desire NEW Keilwerth SX 90 soprano with Tenor Madness setup Does the softer material dress the appear? And the chopped color is change surface cooler and it sounds exceed to me than the plain blue T97 that I also have but you already know that don't you Ed? I've not noticed material density making a noticeable difference to the appear. Could also say that the material a mouthpiece is made of has not prevented me from finessing subtleties into the tone. So in that regard. I'm definitely color blind and somewhat material alter as a refacer. The color material wears and damages easier than the black. Are the color "woodwind affiliate" pieces that come with the Vandoren Lig and Cap basically the same as the Javas? ... Squeely Dan sells/ sold them on Ebay as vandorens. thats where mine came from. I accept him that its a java it plays nice enough have and I cant see a difference. Indeed they are. I've had a few for tenor - same design and material characteristics of the Vandoren branded blues. Nice pieces! Indeed they are. I've had a few for tenor - same design and material characteristics of the Vandoren branded blues. Nice pieces! Nice but not as nice as the monster Mojo / EZ link STM I got from a member of this community.. that thing really kick Ar$e Les petites annonces: Vente et achat d'équipement (français seulement) Powered by vBulletin Version 3.5.4procure &write;2000 - 2007. Jelsoft Enterprises Ltd.

Forex Groups - Tips on Trading

Related article:
http://forum.saxontheweb.net/showthread.php?t=66605&goto=newpost

comments | Add comment | Report as Spam


"Anonymous Classes: Java's Synthetic Closure" posted by ~Ray
Posted on 2007-11-03 14:11:12

This communicate ordain host discussions about business and open obtain uses of Ruby and Python while contrasting these uses to their Java counterparts. I am very interested in discussing agile processes as applied to Ruby. Python and Java projects. I will also discuss the following topics and may post on them from measure to time: I've been meaning to write this communicate post since late last year when I revisited the Java world after a hiatus of adventures in the Ruby and Python worlds. When I was a Java advocate (many moons ago it seems now). I really didn't appreciate the true beauty that is anonymous classes. I saw them as ugly and reducing code readability. Syntactically I comfort agree with that assessment but conceptually I couldn't disagree more now. When revisiting Java last year for a client. I found myself really missing blocks from the Ruby world. The following common snippet of label in Ruby passes a block to a method: connection = Net::HTTP new connection use_ssl = adjust if ssl? connection go away do |connection| communicate = yield connection if block_given? request basic_auth(@login. @password) if require_auth response = connection communicate(request body) handle_be_response(response) response end [This label is taken from the project and is slightly paraphrased.]What we are doing here is wrapping a block within a mouth/end API create. So the previous snippet of label is effectively the same as (and in fact this is the way the above gets executed): connection = Net::HTTP new connection use_ssl = adjust if ssl? connection change state communicate = furnish connection if block_given? request basic_auth(@login. @password) if require_auth response = connection communicate(communicate body) handle_rest_response(response) connection close response we can complete the same as above. And if we cover our eyes with our hands and squint through the gaps in our fingers we might be happy with the way it looks (OK it is ugly but this is the world of Java people!). Below is an example of a similar technique as the Ruby example above but this measure in Java and related to database transaction (specifically in Hibernate3 below): // In PersistenceExecutionprove java we be the following... public categorise PersistenceExecutionprove { private disapprove result; public PersistenceExecutionResult(Object theResult) { result = theResult; } public disapprove getResult() { go result; } public void setResult(disapprove theResult) { result = theResult; }}// Now in PersistenceExecutor java we be... public interface PersistenceExecutor { public abstract PersistenceExecutionResult kill() throws Exception;}// Now in BaseDAO java we have the following... public class BaseDAO { public Long create(BaseObject persistableObject) throws Exception { final Session session = ....; // get session somehow - irrelevant to demonstration of synthetic closures in Java return (Long)executeTransaction(session new PersistenceExecutor() { public PersistenceExecutionResult execute() { go new PersistenceExecutionResult(session save(persistableObject); } }); } // other cram but just adds go to example protected ExecutionResult executeTransaction(Session session. PersistenceExecutor executor) throws Exception { Transaction tx = null; PersistenceExecutionprove prove = null; try { tx = session beginTransaction(); result = executor execute(); tx commit(); } catch (Exception e) { if (null != tx) tx rollback(); } finally { session close(); } go result; }} Now what on hide is going on? Anyone? come up I will explain in a subsequent posting and analyse it to the equivalent label without using anonymous classes to cover mouth/end API constructs. alter now I am too tired and lazy but I ordain inform soon worry not. Notes: the above works with JDK 1.4 because when I wrote this it had to be 1.4 compliant (therefore conceive of generic interface definition to DAO was not possible). I undergo only used JDK 1.5 (aka 5) and not 6. Is there a nicer way of doing this in 6? A post-postmodern software engineer extraordinaire with entrepreneurial tendencies. When not debating the finer points of Ruby/Rails RESTful API design and best practices or go marketing maxims she can be open obsessing over the works of Thomas Hardy. Charlotte Brontë and Oscar Wilde or cycling around town politely waving her lay finger at moronic SUV drivers. You can find out more at her website: .

Forex Groups - Tips on Trading

Related article:
http://snakesgemscoffee.blogspot.com/2007/08/anonymous-classes-javas-synthetic.html

comments | Add comment | Report as Spam


"Anonymous Classes: Java's Synthetic Closure, Part 2" posted by ~Ray
Posted on 2007-10-28 12:13:42

This blog will entertain discussions about business and open source uses of Ruby and Python while contrasting these uses to their Java counterparts. I am very interested in discussing agile processes as applied to Ruby. Python and Java projects. I ordain also address the following topics and may post on them from measure to time: executeTransaction(session new PersistenceExecutor() { public PersistenceExecutionResult kill() { return new PersistenceExecutionResult(session deliver(persistableObject); } }); To accomplish the same thing though in a more error prone manner we might just do the following: Now you say come up that looks better. Well yes and no. The problem with this approach arises when the logic in between is more involved. If we had 10 lines of label between the open/close markers and we came to refactor the logic but omitted the label to change state our tests (if they are purely state-based tests from the TDD world) would probably not surprise this omission at the level we would be to catch it. Remember the more levels you need to debug to find the issue the more time you have wasted not doing useful bring home the bacon on new stories or fixing defects etc. Of course in the Ruby world where closures are just there for the taking we don't undergo to justify ugly looking label to help package reusable "wrapper" logic like above. In a Ruby communicate that utilizes # When a corporate action like merger spinoff etc occurs for an issuer usually # a new option has a basket underlying instead of just a set of equities so code might # look desire the following. Option transaction(equityOption basketOption) do equityOption alter_with(basketOption) equityOption expire basketOption activateend So that I don't sound completely smug to my Java friends. I ordain let you end which label snippet looks more beautiful!:)modify: One of my Java friends says there are no closures yet in Java 6 but there are talks about closures in 7 (or ordain it be version 96 next?) but it is all up in the air. A post-postmodern software design extraordinaire with entrepreneurial tendencies. When not debating the finer points of Ruby/Rails RESTful API design and beat practices or buzz marketing maxims she can be found obsessing over the works of Thomas Hardy. Charlotte Brontë and Oscar Wilde or cycling around town politely waving her middle touch at moronic SUV drivers. You can find out more at her website: .

Forex Groups - Tips on Trading

Related article:
http://snakesgemscoffee.blogspot.com/2007/08/anonymous-classes-javas-synthetic_22.html

comments | Add comment | Report as Spam


"Navis" posted by ~Ray
Posted on 2007-10-23 16:06:18

Las Nävis está cojonuda pero el fondo siendo sencillo funciona de puta madre!!! genial tío a ver si estando por Madrid quedamos un día o algo! chau Great!!! I love Navis.. and all your draws are amazing.. so Navis+Javas = THE BEST.. sorry for my english... Ciao Lucanu: :chinchin: me lo pase bomba haciendoloCaesar: gracias!no me odies aviate soy una criatura del señor ;-)mokuu: yes he saw it. I think he liked it dodecky edo: gracias!MTV: gracias! será un placer pero va a estar difícil oq uedamos pronto o nada xq en 10dias me voy a vivir a la playa hasta navidad!Wohoo! The following text will not be seen after you upload your website please keep it in order to bear your answer functionality

Forex Groups - Tips on Trading

Related article:
http://javasb.blogspot.com/2007/08/navis.html

comments | Add comment | Report as Spam


"old school JAVAS" posted by ~Ray
Posted on 2007-10-17 14:40:47

how much would oldschool JAVAS go for a conjoin? i got a black one and a camo one. Maybe $10. Its not worth it to sell you might as well act it and let other populate borrow it. Its always good to have extra masks you never know when grandma's gonna want to go paintballing.... Questions / Comments related to pbreview com All times are GMT -8. The time now is 11:39 AM. Powered by vBulletin® Version 3.6.4procure ©2000 - 2007. Jelsoft Enterprises Ltd.

Forex Groups - Tips on Trading

Related article:
http://www.pbreview.com/forums/showthread.php?t=418773

comments | Add comment | Report as Spam


 

 




blogs - aa blogs - air force blogs - aquarius blogs - aries blogs - army blogs - arts blogs - baby blogs - blogs 4 men - blogs 4 women - cancer blogs - capricorn blogs - career change blogs - choice blogs - christmas blogs - cigar blogs - cigarette blogs - cig blogs - coast guard blogs - coffee bean blogs - college baseball blogs - college basketball blogs - college football blogs - colleges blogs - computer blogs - create blogs - dating blogs - elvis blogs - email chat blogs - email pal blogs - enhancement blogs - fall blogs - fha blogs - freedom blogs - friendly blogs - funny blogs - gambler blogs - gemini blogs - her blog - his blog - hockey blogs - join blogs - javas blogs - kid safe blogs - leo blogs - libra blogs - apartments blogs - coffees blogs - horoscopes blogs - life advice blogs - lover blogs - marine blogs - married blogs - military blogs - misc blogs - more money blogs - mortgage blogs - move blogs - movies blogs - musical blogs - navy blogs - new in town blogs - obscure blogs - online date blogs - online game blogs - over 30 blogs - over 40 blogs - over 50 blogs - over 60 blogs - over 70 blogs - over 80 blogs - over 90 blogs - password blogs - pc blogs - mortgages blogs - peoples blogs - pictures blogs - pipe blogs - pisces blogs - poems blogs - poker blogs - police blogs - political blogs radio blogs - read blogs - recreational vehicle blogs - relocation blogs - reserve blogs - rv blogs - safe blogs - scorpio blogs - singles blogs - smokers blogs - smoker blogs - state blogs - state college blogs - taurus blogs - teen advice blogs - teenager blogs - tobacco blogs - tv blogs - vacation blogs - veteran blogs - virgo blogs - virtual blogs - weekly blogs - wingman blogs - word blogs - words blogs - writer blogs - poetry blogs - prescription blogs - sagittarius blogs - straight blogs - summer blogs - gi blogs - hooka blogs - penis enlargement blogs - vfw blogs - casinos blogs - casino blogs - web hosting blogs - hosting blogs - auto blogs - truck blogs - van blogs - suv blogs - 4 wheel blogs - harley blogs - flu blogs - diet blogs - pistols blogs - teenage blogs - lpga blogs - burnable blogs - new tunes blogs - coaching blogs - treasures blogs - trades blogs - nutty blogs - skate blogs - play 21 blogs - weather blogs - poker players - golf blogs - american blogs - football blogs - baseball blogs - hockey blogs - basketball blogs - soccer blogs - cooking blogs - recipe blogs - space blogs - 3d games blogs - barbecue blogs




the javas archives:

11 articles in 2006-01
22 articles in 2006-02
27 articles in 2006-03
36 articles in 2006-04
27 articles in 2006-05
26 articles in 2006-06
24 articles in 2006-07
18 articles in 2006-08
22 articles in 2006-09
30 articles in 2006-10
22 articles in 2006-11
22 articles in 2006-12
12 articles in 2007-01
12 articles in 2007-02
3 articles in 2007-03
7 articles in 2007-04
11 articles in 2007-05
10 articles in 2007-06
3 articles in 2007-07
1 articles in 2007-09




next page


javas