Part-Time Remote Java Wicket Job Opportunity

2024-06-15 Thread Martin Terra
Hi! We are looking for someone well versed in Java Wicket to implement a sliced html template as live Wicket pages, according to our coding conventions and requirements. There might be multiple similar such tasks along the way (longer term). We will be paying you via invoice, so you need to be

Wicket Job Opportunity

2021-12-17 Thread Lon Varscsak
Hey all, We’re hiring a full-time Apache Wicket/Apache Cayenne developer. Check it out here: https://workforcenow.adp.com/mascsr/default/mdf/recruitment/recruitment.html?cid=894daef4-3a35-4b13-96b7-a3003f6a8cb3=19000101_01=MP=en_US=431036 Ideally the candidate would be willing to relocate

Re: Job opening, Wicket developer, full time remote position

2021-07-27 Thread Martin Terra
Hi! Thanks, please do. You can tweet my message content (copy paste) as the job description. However, if you feel there is some relevant information missing, feel free to ask supplemental questions and I will try to fill in the gaps. ** Martin ti 27. heinäk. 2021 klo 12.50 Francois Meillet

Re: Job opening, Wicket developer, full time remote position

2021-07-27 Thread Francois Meillet
Hi Martin, Do you want I tweet about your job on Apache Wicket Twitter account @apache_wicket ? If so please give me the link where users can see the job description. Best regards François > Le 27 juil. 2021 à 11:44, Martin Terra a > écrit : > > Hi! > > We are look

Job opening, Wicket developer, full time remote position

2021-07-27 Thread Martin Terra
Hi! We are looking for a talented Wicket & UI developer for a full time remote position. You would be working with us on an online work time tracking saas product. Heavy focus on real world usability and canonical implementation logic. It is an inhouse developed product, not a consulting gig.

Wicket Job Opportunity

2017-11-02 Thread Igor Vaynberg
Hi, My company is looking to fill a 100% telecommuting (must reside within two time zones of US/Central time GMT-0600) senior software engineer position. We use Wicket/Weld/Hibernate stack. If you are interested you can read more about the position here:

Wicket job opening in Estonia

2014-11-21 Thread Martin Makundi
Hi! We have a wicket job opening in Estonia, required fluency in Estonian and Finnish. Feel free to email me or apply via http://www.youritprofile.com/job_ad/id/701 ** Martin

Re: Page rendering from quartz job

2014-05-21 Thread Sandor Feher
That's nice and this is exactly what I do. But I start my job from init method of my Application class and there is no RequestCycle there at initialization time. I suppose that because there is no request has been sent to Application yet. (Nobody uses the application because it just started). I

Re: Page rendering from quartz job

2014-05-21 Thread Martin Grigorov
The answer is: create the request cycle yourself On May 21, 2014 11:01 AM, Sandor Feher sfe...@bluesystem.hu wrote: That's nice and this is exactly what I do. But I start my job from init method of my Application class and there is no RequestCycle there at initialization time. I suppose

Re: Page rendering from quartz job

2014-05-20 Thread Kees van Dieren
then ? Where should I put it ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Page-rendering-from-quartz-job-tp4665860p4665933.html Sent from the Users forum mailing list archive at Nabble.com

Re: Page rendering from quartz job

2014-05-20 Thread Ernesto Reinaldo Barreiro
in context: http://apache-wicket.1842946.n4.nabble.com/Page-rendering-from-quartz-job-tp4665860p4665933.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr

Re: Page rendering from quartz job

2014-05-20 Thread Martin Grigorov
then ? Where should I put it ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Page-rendering-from-quartz-job-tp4665860p4665933.html Sent from the Users forum mailing list archive at Nabble.com

Re: Page rendering from quartz job

2014-05-20 Thread Ernesto Reinaldo Barreiro
render the page then ? Where should I put it ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Page-rendering-from-quartz-job-tp4665860p4665933.html Sent from the Users forum mailing list archive

Re: Page rendering from quartz job

2014-05-20 Thread Sandor Feher
Huh guys, I just see the my topic became hot :). So far so good. Now I get wicket application instance but RequestCycle is null of course. How can I get over that ? Thnx! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Page-rendering-from-quartz-job

Re: Page rendering from quartz job

2014-05-20 Thread Martin Grigorov
is null of course. How can I get over that ? Thnx! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Page-rendering-from-quartz-job-tp4665860p4665962.html Sent from the Users forum mailing list archive at Nabble.com

Re: Page rendering from quartz job

2014-05-20 Thread Sandor Feher
wrong way ? Thnx, Sandor -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Page-rendering-from-quartz-job-tp4665860p4665964.html Sent from the Users forum mailing list archive at Nabble.com

Re: Page rendering from quartz job

2014-05-20 Thread Martin Grigorov
-quartz-job-tp4665860p4665964.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Page rendering from quartz job

2014-05-19 Thread Ondrej Zizka
a different template engine like Apache Velocity? Have a great day, Paul Bors On May 15, 2014, at 3:27 PM, Sandor Feher sfe...@bluesystem.hu wrote: Hi, I fired up some quartz jobs for sending notification emails at given time. The job controller class is launched from my Application wget it get

Re: Page rendering from quartz job

2014-05-19 Thread Martin Grigorov
, Paul Bors On May 15, 2014, at 3:27 PM, Sandor Feher sfe...@bluesystem.hu wrote: Hi, I fired up some quartz jobs for sending notification emails at given time. The job controller class is launched from my Application wget it get initialized. Almost everything works except of rendering

Re: Page rendering from quartz job

2014-05-19 Thread Sandor Feher
Yes. I would do it if possible within Wicket. If not then I will do it with a html template file with simple search and replace constans way. I just don't want to reinvent the wheel :) -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Page-rendering-from-quartz-job

Re: Page rendering from quartz job

2014-05-19 Thread Sandor Feher
Ok. Let's say I get the reference. How can I render the page then ? Where should I put it ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Page-rendering-from-quartz-job-tp4665860p4665933.html Sent from the Users forum mailing list archive at Nabble.com

Re: Page rendering from quartz job

2014-05-19 Thread Martin Grigorov
the reference. How can I render the page then ? Where should I put it ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Page-rendering-from-quartz-job-tp4665860p4665933.html Sent from the Users forum mailing list archive at Nabble.com

Re: Page rendering from quartz job

2014-05-19 Thread Paul Borș
the page then ? Where should I put it ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Page-rendering-from-quartz-job-tp4665860p4665933.html Sent from the Users forum mailing list archive at Nabble.com

Re: Page rendering from quartz job

2014-05-19 Thread Ernesto Reinaldo Barreiro
19, 2014 at 2:30 PM, Sandor Feher sfe...@bluesystem.hu wrote: Ok. Let's say I get the reference. How can I render the page then ? Where should I put it ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Page-rendering-from-quartz-job-tp4665860p4665933

Re: Page rendering from quartz job

2014-05-18 Thread Paul Borș
...@bluesystem.hu wrote: Hi, I fired up some quartz jobs for sending notification emails at given time. The job controller class is launched from my Application wget it get initialized. Almost everything works except of rendering mail's html body. I would like to do it with wicket's pagerenderer

Page rendering from quartz job

2014-05-16 Thread Sandor Feher
Hi, I fired up some quartz jobs for sending notification emails at given time. The job controller class is launched from my Application wget it get initialized. Almost everything works except of rendering mail's html body. I would like to do it with wicket's pagerenderer but it throws

Re: Wicket job opportunities

2013-11-06 Thread Ondrej Zizka
I guess you have checked http://careers.stackoverflow.com/jobs/tag/wicket and also http://www.linkedin.com/vsearch/j?keywords=wicketopenAdvancedForm=truelocationType=YsortBy=R Ondra On 29.10.2013 19:13, Leonid Bogdanov wrote: Hello! Sorry for bringing this topic, but I'm wondering are

Wicket job opportunities

2013-10-29 Thread Leonid Bogdanov
Hello!     Sorry for bringing this topic, but I'm wondering are there any Software Developer positions that require Wicket knowledge and a remote work is an option?     It would be double awesome if such position involves Scala/Clojure/Hadoop. I'll provide my CV on a request. Thank you!

Wicket job offer in Dubai

2013-03-17 Thread Sylvain Vieujot
We have a job opening for a good wicket developer. Emirates REIT ( http://www.reit.ae ) needs to recuite a good developer that is both good at programming and at suggesting ways to model and improve our businesses and processes via the IT system. The job will be based in Dubai, at the Dubai

Job Posting

2013-02-27 Thread Jacob Smith
Jeremy, Here is the posting. People are welcome to apply to me directly at jacob.sm...@isymmetry.commailto:jacob.sm...@isymmetry.com Thank you so much for your help! Jacob Company: Accenture Job Title: Priority: Job Source: PR/Req #: Coordinator: Category: Location: , San Antonio

Can a batch job pass back its completion results to Wicket session?

2013-02-26 Thread Nigel Sheridan-Smith
Hi all, I'm hooking up a data import batch job with Quartz to Wicket and have struck an issue - how do you notify a Wicket page that the batch job is complete? I originally planned to update the Wicket session with the running count of how many items are processed. However, the Wicket request

Re: Can a batch job pass back its completion results to Wicket session?

2013-02-26 Thread Paul Bors
I would look at Observable and Observer class in java to achieve signal sort of behavior. On Tue, Feb 26, 2013 at 5:47 PM, Nigel Sheridan-Smith wtfi...@gmail.comwrote: Hi all, I'm hooking up a data import batch job with Quartz to Wicket and have struck an issue - how do you notify a Wicket

Re: Can a batch job pass back its completion results to Wicket session?

2013-02-26 Thread Ernesto Reinaldo Barreiro
Hi, I remember I have done this by creating a class that serves a progress watching context and sharing an instance of this class between Wicket Session (or a page or component) and the quartz job. This class acted as a wire to pass information between the two threads (e.g. progress, cancel

Re: Can a batch job pass back its completion results to Wicket session?

2013-02-26 Thread Nigel Sheridan-Smith
Thanks Paul and Ernesto, After much stuffing around, I managed to get this to work: modifying the JobDataMap within the Quartz job. However, you must re-publish the map after it has been changed, as Quartz serializes it and doesn't update it until after the job finishes executing. You might also

Re: Can a batch job pass back its completion results to Wicket session?

2013-02-26 Thread Ernesto Reinaldo Barreiro
Hi, On Wed, Feb 27, 2013 at 7:32 AM, Nigel Sheridan-Smith wtfi...@gmail.comwrote: Thanks Paul and Ernesto, After much stuffing around, I managed to get this to work: modifying the JobDataMap within the Quartz job. However, you must re-publish the map after it has been changed, as Quartz

RE: Wicket job market

2013-02-05 Thread Chris Colman
Wicket is probably the best most of us have ever enjoyed before. but let's be realistic, there's the nice paradox of non competitive presentation of this presentation framework yet, to be sold to not enough tech skilled people, who are decision makers. they just want to see nice cinema. then, why

Re: Wicket job market

2013-02-05 Thread Martin Grigorov
If someone feels good enough in web design - HTML+CSS, video making, everything that will make the site more attractive for both technical and non-technical people: the new site (unfinished) is at https://github.com/dashorst/wicket-site the current site is at:

Re: Wicket job market

2013-02-05 Thread manuelbarzi
The one thing i would say:if you want to have a nice presentation of vaadin,it comes out of the box,because thats a vaadin feature:nice presentation. No other framework has it such easy:) Vaadin efficiently speaks the language of emotions. So lets start a competition... Nice ;) but, i

Re: Wicket job market

2013-02-05 Thread Ernesto Reinaldo Barreiro
Hi, On Tue, Feb 5, 2013 at 9:31 AM, Chris Colman chr...@stepaheadsoftware.comwrote: Wicket is probably the best most of us have ever enjoyed before. but let's be realistic, there's the nice paradox of non competitive presentation of this presentation framework yet, to be sold to not enough

Re: Wicket job market

2013-02-05 Thread manuelbarzi
If someone feels good enough in web design - HTML+CSS, video making, everything that will make the site more attractive for both technical and non-technical people: the new site (unfinished) is at https://github.com/dashorst/wicket-site the current site is at:

RE: Wicket job market

2013-02-05 Thread Chris Colman
your loosing the focus pretended to be justify before: marketing, not tech. and many people first see, later think :) I think the problem is that most good software engineers see 'beauty' in the elegant component based, object oriented architecture of Wicket - we can all go oooh and h just

Re: Wicket job market

2013-02-05 Thread Francois Meillet
Thanks Philippe for raising this issue Maybe it's time to take a step back to better analyse the situation and where we want to go. Because we don't want to be the only ones using the best framework. What need to be done ? If we promote Wicket right now, we will end up with a big failure. In

Re: Wicket job market

2013-02-05 Thread Martin Grigorov
On Tue, Feb 5, 2013 at 10:01 AM, Francois Meillet francois.meil...@gmail.com wrote: Thanks Philippe for raising this issue Maybe it's time to take a step back to better analyse the situation and where we want to go. Because we don't want to be the only ones using the best framework. What

Re: Wicket job market

2013-02-05 Thread manuelbarzi
I think the problem is that most good software engineers see 'beauty' in the elegant component based, object oriented architecture of Wicket - we can all go oooh and h just thinking about how truly beautiful Wicket has been 'engineered'. We see beauty beyond the external presentation.

Re: Wicket job market

2013-02-05 Thread Bernard
I think it would be exhausting and possibly risky to rely on the appeal of the Wicket site. This appeal can already be provided by third party sites that use Wicket. A developer can then choose to show management a selection of sites that are relevant in context. What drives adoption rate is

Re: Wicket job market

2013-02-05 Thread Andrea Del Bene
Reading the mails sent so far, I think Wicket should improve two aspects: -Its promotion -Support for stateless usage. The second point has already been indicated as a target for Wicket 7. The promotion stuff is probably the most challenging because many of Wicket supporters has technical

Re: Wicket job market

2013-02-05 Thread manuelbarzi
Reading the mails sent so far, I think Wicket should improve two aspects: -Its promotion -Support for stateless usage. The second point has already been indicated as a target for Wicket 7. The promotion stuff is probably the most challenging because many of Wicket supporters has technical

Re: Wicket job market

2013-02-05 Thread Martin Grigorov
The list at https://cwiki.apache.org/confluence/display/WICKET/Ideas+for+Wicket+7.0 is just ideas as stated at the top. Probably we should create tickets in Jira so people can vote for them. On Tue, Feb 5, 2013 at 12:39 PM, Andrea Del Bene an.delb...@gmail.comwrote: Reading the mails sent so

Re: Wicket job market

2013-02-05 Thread Andrea Del Bene
I would add modules TinyMCE, Google Maps and jqPlot. An example of integration with Facebook could be cool as well :) The list at https://cwiki.apache.org/confluence/display/WICKET/Ideas+for+Wicket+7.0 is just ideas as stated at the top. Probably we should create tickets in Jira so people can

Re: Wicket job market

2013-02-05 Thread Martin Grigorov
://github.com/wicketstuff/core/issues?direction=descsort=createdstate=open and make your contribution to the community. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-job-market-tp4656048p4656092.html Sent from the Users forum mailing list archive at Nabble.com

Re: Wicket job market

2013-02-05 Thread Nick Heudecker
and search information about created by other users plugins? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-job-market-tp4656048p4656092.html Sent from the Users forum mailing list archive at Nabble.com

Re: Wicket job market

2013-02-05 Thread Nick Heudecker
about this situation, that I uninstall this plugin and I resign from using it in development. Thanks about info, I will try this plugin again. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-job-market-tp4656048p4656104.html Sent from the Users forum

Re: Wicket job market

2013-02-04 Thread Martin Grigorov
Hi, Spring MVC is backed by VMWare. GWT by Google (or not anymore ?!) Wicket and Tapestry as Apache projects are developed by volunteers. I think what miss is the marketing and the training. I'm not sure whether there is such job search site in Germany to get some stats but the market

Re: Wicket job market

2013-02-04 Thread Ernesto Reinaldo Barreiro
Hi, IMHO on countries that invest heavily on RD (new technologies) like Germany, Netherlands, UK, USA, etc Wicket market is growing... and you can find lots of Jobs posts asking for Wicket versed programmers.. See http://www.indeed.de/Jobs?q=Wicketl= http://www.indeed.nl/Wicket-vacatures

Re: Wicket job market

2013-02-04 Thread Tim Urberg
I wouldn't discount Apache, look at how Struts took off, and look at the Apache HTTP server, the most widely used server on the web. Apache may not be a big corporation but they are a still a big name. On 2/4/13 7:37 AM, Ernesto Reinaldo Barreiro wrote: Hi, IMHO on countries that invest

Re: Wicket job market

2013-02-04 Thread Ernesto Reinaldo Barreiro
Hi, On Mon, Feb 4, 2013 at 3:20 PM, Tim Urberg t...@urberg.net wrote: I wouldn't discount Apache, look at how Struts took off, and look at the Apache HTTP server, the most widely used server on the web. Apache may not be a big corporation but they are a still a big name. It is not my

Re: Wicket job market

2013-02-04 Thread Josh Kamau
Does anyone think the rise of javascript based single page thick client type of applications are eating on wickets share? When i try to sell wicket to my peers, they normally argue that they want a stateless client and a stateful rich clients. The kind of clients that you build with javascript

Re: Wicket job market

2013-02-04 Thread manuelbarzi
toolkits such as angular, backbone etc. One of the main reason why i started using wicket was my phobia for javascript. That phobia is no more. Infact i want more and more control over the javascript on my client. Does anyone else share the same sentiments? I am still a huge wicket fun and i

Re: Wicket job market

2013-02-04 Thread Michael Mosmann
Am 04.02.2013 15:43, schrieb manuelbarzi: Play Framework, Apache Click, Stripes, Struts, JSF, Seam http://www.indeed.com/jobtrends?q=%22Play+Framework%22%2C+%22Apache+Click%22%2C+Stripes%2C+Struts%2C+JSF%2C+Seam What needs to be improved to get a wider adoption of Wicket ? IMO, selling Wicket

RE: Wicket job market

2013-02-04 Thread Colin Rogers
should do a quick search on seek.com.au before making these claims, and another company in Melbourne mentions Wicket as a nice-to-have on a job description... :) Col. -Original Message- From: Michael Mosmann [mailto:mich...@mosmann.de] Sent: 05 February 2013 08:33 To: users@wicket.apache.org

Re: Wicket job market

2013-02-04 Thread manuelbarzi
I think, you should not compare wicket with vaadin. Wicket is not the right answer for every project. Wicket does not compete with vaadin, because wicket is a different hammer. The rise of javascript apps could change the future of web development, but for such a project you should not use

Re: Wicket job market

2013-02-04 Thread Michael Mosmann
I agree with you. The one thing i would say:if you want to have a nice presentation of vaadin,it comes out of the box,because thats a vaadin feature:nice presentation. No other framework has it such easy:) So lets start a competition... Michael:) manuelbarzi manuelba...@gmail.com schrieb:

Deployment models (was: Re: Wicket job market)

2013-02-04 Thread Emmanouil Batsis (Manos)
On 02/04/2013 02:05 PM, Philippe Demaison wrote: What needs to be improved to get a wider adoption of Wicket ? That is probably the most relevant subject IMHO. FWIW, a largely disruptive factor is a new but increasingly important business/deployment model, that of the cross-domain, embedded

Re: Wicket freelancer job in Vienna, Austria

2012-08-14 Thread gbrunner
: http://apache-wicket.1842946.n4.nabble.com/Wicket-freelancer-job-in-Vienna-Austria-tp4651049p4651223.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: Wicket freelancer job in Vienna, Austria

2012-08-14 Thread gbrunner
://apache-wicket.1842946.n4.nabble.com/Wicket-freelancer-job-in-Vienna-Austria-tp4651049p4651222.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Wicket freelancer job in Vienna, Austria

2012-08-08 Thread Marco Zapletal
Dear Wicket folks, we are looking for Wicket developer on a freelancer basis for an ongoing project in Vienna, Austria. If you are potentially interested please do not hesitate to contact me for further details. Best regards, Marco Zapletal

Re: Wicket freelancer job in Vienna, Austria

2012-08-08 Thread Andreas Petersson
Hello! I am potentially interested. Can you tell me some details about the project scope and timeline. best regards, Andreas Petersson Am 08.08.2012 12:25, schrieb Marco Zapletal: we are looking for Wicket developer on a freelancer basis for an ongoing project in Vienna, Austria. If you

wicket job opportunity, we are hiring

2012-06-05 Thread Igor Vaynberg
the company i work for ( 42lines.net ) is growing and we are looking for a few good devs. about our approach: * we are a distributed company with employees based predominantly in the usa, there are 27 of us now * everyone telecommutes either from home or a coworking space of your choice (paid

Re: wicket job opportunity, we are hiring

2012-06-05 Thread Cedric Gatay
Hi Igor, this is an interesting opportunity, too bad it is time zone limited. I hope you'll find somebody. __ Cedric Gatay http://www.bloggure.info | http://cedric.gatay.fr | @Cedric_Gatayhttp://twitter.com/Cedric_Gatay On Tue, Jun 5, 2012 at 10:37 PM, Igor Vaynberg

OT: Job in Germany

2012-04-23 Thread Uwe Schäfer
Hi we're looking for experienced Java developers for fulltime employment (no freelancers) with some Wicket background. Contact me, if you want to know more. cu uwe - To unsubscribe, e-mail:

Job opportunity in Germany

2011-12-26 Thread geissbock
Hi folks, The department I work at as an architect is currently looking for a talented Wicket developer. We're a company with 5,000 employees located in the south-west of Germany. The position is permanent and full-time, and it is required to work on-site, i.e. it is currently not possible to

wicket job opportunity, we are hiring

2011-11-02 Thread Igor Vaynberg
the company i work for ( 42lines inc) is growing and we are looking for a few good devs. about our approach: * we are a distributed company with employees based predominantly in the usa, i think there are 22 of us now * everyone telecommutes either from home or a coworking space if you get cabin

job

2011-10-13 Thread moèz ben rhouma
searching for someone who is familiar with Wicket for a 4+ month contract in San Antonio, Texas. If you or anyone you know is interested please message me or email me at ro...@millgroupusa.com. -- Cdt Moèz

Wicket job

2011-09-05 Thread Martin Makundi
Hi! Looking for an on-site Wicket developer/consultant, Helsinki, Finland: If you are interested, apply at http://www.youritprofile.com/job_ad/id/3375 ** Martin - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Wicket job, Helsinki, Finland

2011-08-09 Thread Martin Makundi
Hi! We have a job-opening for a wicket developer. The job requires on-site presence (Helsinki, Finland) and finnish language skills (minimum fluent in reading). Project starts in august and duration is 3-6 months. Apply at: http://www.youritprofile.com/job_ad/id/2813 ** Martin

Job opportunity ...

2011-05-25 Thread Marcus Breier
Dear all, currently my team is working on a project with a Wicket frontend and a nearby deadline. Since we have not enough manpower to finish the project, we are looking for an external consultant located near Hamburg to help us implementing the frontend. Is there anybody out who is available in

Wicket Job Opportunity

2011-03-16 Thread Igor Vaynberg
we are looking to hire a few senior and junior level engineers. when: a Continental US Timezone (we can make an exception if you are wicked good) where: full telecommute we work on an expanding intranet application for a university. we use the latest technologies and keep our stack up to date.

Re: Wicket Job Opportunity in Belgium (Leuven)

2011-02-18 Thread Josh Kamau
with the aim of guaranteeing the quality of the source code. For more details : http://www.dns.be/pdf/vacature-senior-developer-jan2011-en.pdf http://www.dns.be/pdf/vacature-senior-developer-jan2011-nl.pdf We offer - An interesting job with room for your own initiatives, responsibility

Re: Wicket Job Opportunity in Belgium (Leuven)

2011-02-18 Thread Maarten Bosteels
, and you know how to apply them with the aim of guaranteeing the quality of the source code. For more details : http://www.dns.be/pdf/vacature-senior-developer-jan2011-en.pdf http://www.dns.be/pdf/vacature-senior-developer-jan2011-nl.pdf We offer - An interesting job with room

Wicket Job Opportunity in Belgium (Leuven)

2011-02-17 Thread Maarten Bosteels
-jan2011-nl.pdf We offer - An interesting job with room for your own initiatives, responsibility and technical challenges in a financially healthy organisation. - A pleasant and stimulating work environment, with fun and professional colleagues in a great atmosphere. - Flexible

Job for Wicket Developer in Berlin/Germany

2010-10-15 Thread Daniel Peters
Hallo, my employer is currently looking for one new fulltime Java/Wicket-Developer in Berlin. For those who are interested, here is the link to the job description: http://bit.ly/9iuEgL (sorry, it's in german only) Please don't reply to me directly, but instead to the address mentioned

Re: [JOB] Developer with exceptional OO, Java, Wicket skills. Scala a plus.

2010-10-04 Thread Cemal Bayramoglu
Ernesto, ... nothing is impossible. Regards - Cemal jWeekend Training, Consulting, Development http://jWeekend.com On 4 October 2010 10:55, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: Cemal, Are you willing/able to consider applications from people living in other European

[JOB] Developer with exceptional OO, Java, Wicket skills. Scala a plus.

2010-10-04 Thread Cemal Bayramoglu
We are looking for one, possibly two more very talented developers to join jWeekend's team. You will have exceptionally strong OO, Java and Wicket skills, and already be deeply into, or have a strong desire to become highly proficient in Scala. You already enjoy writing clean JavaScript, XHTML

Re: [JOB] Developer with exceptional OO, Java, Wicket skills. Scala a plus.

2010-10-04 Thread Martin Makundi
Impossible is nothing ;] ** Martin 2010/10/4 Altuğ Bilgin Altıntaş alt...@gmail.com: +1 2010/10/4 Cemal Bayramoglu jweekend_for...@cabouge.com Ernesto, ... nothing is impossible. Regards - Cemal jWeekend Training, Consulting, Development http://jWeekend.com On 4 October 2010

Re: [JOB] Developer with exceptional OO, Java, Wicket skills. Scala a plus.

2010-10-04 Thread Altuğ Bilgin Altıntaş
+1 2010/10/4 Cemal Bayramoglu jweekend_for...@cabouge.com Ernesto, ... nothing is impossible. Regards - Cemal jWeekend Training, Consulting, Development http://jWeekend.com On 4 October 2010 10:55, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: Cemal, Are you

Re: [JOB] Developer with exceptional OO, Java, Wicket skills. Scala a plus.

2010-10-04 Thread Ernesto Reinaldo Barreiro
Cemal, Are you willing/able to consider applications from people living in other European countries which cannot move to England:-( Kind regards, Ernesto On Mon, Oct 4, 2010 at 11:28 AM, Cemal Bayramoglu jweekend_for...@cabouge.com wrote: We are looking for one, possibly two more very

Re: Job opportunity in Tahiti

2010-09-24 Thread Martin Grigorov
://www.piti.pf www.piti.pf. Please, don't hesitate to PM me if you are interested. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Job-opportunity-in-Tahiti-tp2552526p2552526.html Sent from the Users forum mailing list archive at Nabble.com

Re: Job opportunity in Tahiti

2010-09-24 Thread Gabriel Landon
-wicket.1842946.n4.nabble.com/Job-opportunity-in-Tahiti-tp2552526p2581016.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e

Re: Job opportunity in Tahiti

2010-09-24 Thread Emmanouil Batsis (Manos)
On 09/24/2010 10:35 PM, Gabriel Landon wrote: Our client wants a CMS, so we have chosen to use Liferay. Liferay is a java portal, so we need to use portlets with it. That as simple as that. When we don't need a CMS, we just do simple wicket application. Not that it's any of my business, but

Re: Job opportunity in Tahiti

2010-09-24 Thread Ichiro Furusato
Damn, I wish I spoke French! :-) On 9/25/10, Emmanouil Batsis (Manos) ma...@abiss.gr wrote: On 09/24/2010 10:35 PM, Gabriel Landon wrote: Our client wants a CMS, so we have chosen to use Liferay. Liferay is a java portal, so we need to use portlets with it. That as simple as that. When we

Job opportunity in Tahiti

2010-09-23 Thread TahitianGabriel
, don't hesitate to PM me if you are interested. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Job-opportunity-in-Tahiti-tp2552526p2552526.html Sent from the Users forum mailing list archive at Nabble.com

[JOB POST] Senior User Interface Developer - Folsom, CA, USA

2010-08-23 Thread Michael Hosier
Forgive me if this is inappropriate but I have seen other job postings here so assume this is acceptable on this list. My company is looking for a Senior User Interface Developer. Our products heavily use Wicket and we are looking to expand our web application offerings while creating a better

Re: quartz job bean access to properties file

2010-08-11 Thread Martin Grigorov
(); } } } And don't forget to shutdown the executor on Application#onDestroy() On Tue, Aug 10, 2010 at 9:52 PM, rmattler robertmatt...@gmail.com wrote: I'm struggling with how to get access to the properties file from a quartz job bean. I'm creating a pdf report that will then be emailed. I want to get

quartz job bean access to properties file

2010-08-10 Thread rmattler
I'm struggling with how to get access to the properties file from a quartz job bean. I'm creating a pdf report that will then be emailed. I want to get access to the properties file to tell me where to write the file along with other information. Here is my quartz job code. Thanks in advance

Re: Job(s) for Wicket developers

2010-07-28 Thread Oleg Taranenko
Hi Michael, habe ich Diene Anzeige nicht zu spät erfahren? Ist das Position schon geschlossen? Wenn nicht, melde Dich bitte an. Gruß aus Lahr/Schwarzwald, Oleg Taranenko, am Dienstag, 22. Juni 2010 um 10:34 schrieben Sie: Hi, The company I work at currently has two open permanent

Job opening - Boston area

2010-07-14 Thread Boris Goldowsky
Our educational RD non-profit is looking to hire a programmer who has a real interest in working to improve education. You'd have to be in commuting distance of Wakefield, MA (just north of Boston). The job will involve lots of building experimental web apps using Wicket. Please see

Job(s) for Wicket developers

2010-06-22 Thread geissbock
Hi, The company I work at currently has two open permanent positions for middleware/frontend developers in my team. A sound knowledge of Javascript, CSS etc. is a must-have, and Wicket experience is a big plus as current and future projects are developed with Wicket. We are located in the

OT: Job Posting - Contractor in the Bay Area

2010-06-01 Thread Nick Heudecker
A profitable start-up in the cable advertising space is looking to expand its development team to include another well-rounded developer. The position is contract to start and may become full-time. I've detailed some of what we're looking for below and if you think you're a good fit, you're

Re: Job opportunities (Netherlands)?

2010-04-14 Thread Martijn Dashorst
The grandparent has a point: having a jobs forum/list might be helpful as not many folks are eager to send their job postings to the user list. Not having a jobs related list might hinder the publicity for companies having and engineers seeking job opportunities. The ASF has a jobs list

Re: Job opportunities (Netherlands)?

2010-04-14 Thread nino martinez wael
jobs, chatter etc. Although I do see the threat if every second post were off-topic regards Nino 2010/4/14 Martijn Dashorst martijn.dasho...@gmail.com: The grandparent has a point: having a jobs forum/list might be helpful as not many folks are eager to send their job postings to the user list

  1   2   >