Skocz do zawartości

Przeszukaj forum

Pokazuję wyniki dla tagów 'xml'.

  • Szukaj Po Tagach

    Wpisz tagi, oddzielając przecinkami.
  • Szukaj Po Autorze

Typ zawartości


Forum

  • Programowanie
    • Java
    • C++
    • C
    • Assembler
    • .NET Framework
    • Delphi / Pascal
    • Objective-C
    • Swift
    • Rust
    • Go
    • D
    • Visual Basic
    • Inne jezyki programowania
  • Języki skryptowe
    • JavaScript
    • PHP
    • Python
    • Ruby
    • Perl
    • Lua
    • VBScript
    • Programy wsadowe i shell
    • Inne języki skryptowe
  • Programowanie funkcyjne
    • Haskell
    • Lisp
  • Bazy danych
    • SQL i bazy danych
    • NoSQL nierelacyjne bazy danych
    • ABAP
    • Visual FoxPro
  • Projektowanie i inżynieria oprogramowania
    • Algorytmy i struktury danych
    • Inżynieria oprogramowania
    • Projektowanie UI i UX
    • Reverse engineering
  • Projektowanie stron internetowych
    • HTML, XHTML i XML
    • CSS
    • Optymalizacja SEO
    • Inne
  • Praca, edukacja i kariera
    • Oferty pracy
    • Zlecenia
    • Kariera
    • Edukacja
    • Szkolenia i konferencje
    • Biznes i prawo
    • Magazyn Programista
  • Projekty
    • Moje projekty
    • Mam pomysł na...
    • Konkursy
  • Elektronika, hardware i software
    • Projektowanie i programowanie elektroniki
    • Hardware i software
    • Sieci komputerowe i Internet
  • Forum
    • Ogłoszenia, uwagi i sugestie
    • Społeczność
    • Off Topic
    • Giełda

Znajdź wyniki w...

Znajdź wyniki, które...


Data Utworzenia

  • Rozpocznij

    Koniec


Ostatnia aktualizacja

  • Rozpocznij

    Koniec


Filtruj przez liczbę...

Data dołączenia

  • Rozpocznij

    Koniec


Grupa


Strona Internetowa

  1. Witam, Piszę w związku z ofertą pracy na stanowisko Java Developera. : ) Polecam podjęcie pracy u nas osobom, które są zmęczone korporacjami ze sztywnymi procedurami postępowania lub małymi firmami, które nie dają możliwości rozwinięcia skrzydeł. U nas odnajdą się również osoby, które chcą pracować w zespole doświadczonych programistów i mieć różne możliwości rozwoju przy projektach realizowanych w nowych technologiach i przede wszystkim, w przemiłej atmosferze Naszym pracownikom oferujemy: • umowę o pracę lub długoterminowy kontrakt (z pakietem benefitów) • przyjazne środowisko pracy, wsparcie merytoryczne i szkolenia wewnętrzne • elastyczne godziny pracy, • promujemy: pisanie czystego kodu, nacisk na testowalność kodu, wzorce projektowe Kluczowe kompetencje na stanowisku: · dobra znajomość języka Java i technologii JEE, · znajomość Spring, Hibernate, · doświadczenie w wykonywaniu rozwiązań na podstawie wymagań, · znajomość relacyjnych baz danych i SQL ze szczególnym uwzględnieniem bazy Oracle, · znajomość XML oraz technologii z nim związanych, · znajomość wzorców projektowych i architektonicznych, · znajomość serwerów aplikacyjnych Tomcat, Jetty, · znajomość narzędzi do automatyzacji procesu budowania oprogramowania MAVEN2, Ant, · umiejętność organizacji pracy własnej oraz współpracy w zespole, · Dobra znajomość języka angielskiego Lokalizacja: Warszawa, Poznań lub Lublin Chętnie opowiem o szczegółach oferty. Jeśli znają Państwo kogoś, kto byłby zainteresowany, również proszę o kontakt. CV proszę przesyłać na adres: edyta.zarzeczna@impaqgroup.com Pozdrawiam serdecznie, Edyta Zarzeczna
  2. Witam, Piszę w związku z ofertą pracy na stanowisko Java Developera. : ) Polecam podjęcie pracy u nas osobom, które są zmęczone korporacjami ze sztywnymi procedurami postępowania lub małymi firmami, które nie dają możliwości rozwinięcia skrzydeł. U nas odnajdą się również osoby, które chcą pracować w zespole doświadczonych programistów i mieć różne możliwości rozwoju przy projektach realizowanych w nowych technologiach i przede wszystkim w przemiłej atmosferze! Naszym pracownikom oferujemy: • umowę o pracę lub długoterminowy kontrakt (z pakietem benefitów) • przyjazne środowisko pracy, wsparcie merytoryczne i szkolenia wewnętrzne • elastyczne godziny pracy, • promujemy: pisanie czystego kodu, nacisk na testowalność kodu, wzorce projektowe Kluczowe kompetencje na stanowisku: · dobra znajomość języka Java i technologii JEE, · znajomość Spring, Hibernate, · doświadczenie w wykonywaniu rozwiązań na podstawie wymagań, · znajomość relacyjnych baz danych i SQL ze szczególnym uwzględnieniem bazy Oracle, · znajomość XML oraz technologii z nim związanych, · znajomość wzorców projektowych i architektonicznych, · znajomość serwerów aplikacyjnych Tomcat, Jetty, · znajomość narzędzi do automatyzacji procesu budowania oprogramowania MAVEN2, Ant, · umiejętność organizacji pracy własnej oraz współpracy w zespole, · Dobra znajomość języka angielskiego Lokalizacja: Warszawa, Poznań lub Lublin. Chętnie opowiem o szczegółach oferty. Jeśli znają Państwo kogoś, kto byłby zainteresowany, również proszę o kontakt. Dziękuję za poświęcony czas! CV proszę przesyłać na maila: edyta.zarzeczna@impaqgroup.com Pozdrawiam serdecznie, Edyta Zarzeczna
  3. baton

    Linq to XML

    Witam, mam takiego xml'a jak poniżej. Próbuje napisać zapytanie dzięki któremu mógłbym uzyskać takiego outputa: 12 10 11 5 01 1 AN 0454741 10 05 06 2 00 1 SW 0729103 26 05 04 2 01 1 G 0264443 Próbowałem zrobić to tak: var xml = XDocument.Load(@"test.xml"); var query = from c in xml.Descendants() // where (string)c.Attribute("name") == "WOJ" select new { name1 = ((string)c.Attribute("name") == "name1")? c.Value : string.Empty, name2 = ((string)c.Attribute("name") == "name2") ? c.Value : string.Empty, name3 = ((string)c.Attribute("name") == "name3") ? c.Value : string.Empty ... }; foreach (var item in query) { Console.WriteLine(item.name1 + " " + item.name2 + " " + item.name3 ...); } ale nie działa:/ Moglibyście pomóc? <?xml version="1.0" encoding="UTF-8"?> <root> <catalog name="test" type="all" date="2016-01-01"> <row> <col name="name1">12</col> <col name="name2">10</col> <col name="name3">11</col> <col name="name4">5</col> <col name="name5">01</col> <col name="name6">1</col> <col name="name7">AN</col> <col name="name8">0454741</col> <col name="name9">0454741</col> <col name="name10">2016-01-01</col> </row> <row> <col name="name1">10</col> <col name="name2">05</col> <col name="name3">06</col> <col name="name4">2</col> <col name="name5">00</col> <col name="name6">1</col> <col name="name7">SW</col> <col name="name8">0729103</col> <col name="name9">0729095</col> <col name="name10">2016-01-01</col> </row> <row> <col name="name1">26</col> <col name="name2">05</col> <col name="name3">04</col> <col name="name4">2</col> <col name="name5">01</col> <col name="name6">1</col> <col name="name7">G</col> <col name="name8">0264443</col> <col name="name9">0264443</col> <col name="name10">2016-01-01</col> </row> </catalog> </root>
  4. baton

    Linq to XML

    Witam, mam takiego xml'a jak poniżej. Próbuje napisać zapytanie dzięki któremu mógłbym uzyskać takiego outputa: 12 10 11 5 01 1 AN 0454741 10 05 06 2 00 1 SW 0729103 26 05 04 2 01 1 G 0264443 Próbowałem zrobić to tak: var xml = XDocument.Load(@"test.xml"); var query = from c in xml.Descendants() // where (string)c.Attribute("name") == "WOJ" select new { name1 = ((string)c.Attribute("name") == "name1")? c.Value : string.Empty, name2 = ((string)c.Attribute("name") == "name2") ? c.Value : string.Empty, name3 = ((string)c.Attribute("name") == "name3") ? c.Value : string.Empty ... }; foreach (var item in query) { Console.WriteLine(item.name1 + " " + item.name2 + " " + item.name3 ...); } ale nie działa:/ Moglibyście pomóc? <?xml version="1.0" encoding="UTF-8"?> <root> <catalog name="test" type="all" date="2016-01-01"> <row> <col name="name1">12</col> <col name="name2">10</col> <col name="name3">11</col> <col name="name4">5</col> <col name="name5">01</col> <col name="name6">1</col> <col name="name7">AN</col> <col name="name8">0454741</col> <col name="name9">0454741</col> <col name="name10">2016-01-01</col> </row> <row> <col name="name1">10</col> <col name="name2">05</col> <col name="name3">06</col> <col name="name4">2</col> <col name="name5">00</col> <col name="name6">1</col> <col name="name7">SW</col> <col name="name8">0729103</col> <col name="name9">0729095</col> <col name="name10">2016-01-01</col> </row> <row> <col name="name1">26</col> <col name="name2">05</col> <col name="name3">04</col> <col name="name4">2</col> <col name="name5">01</col> <col name="name6">1</col> <col name="name7">G</col> <col name="name8">0264443</col> <col name="name9">0264443</col> <col name="name10">2016-01-01</col> </row> </catalog> </root>
  5. Software QA Engineer - Nr ref. (02/152) Kraków Job description As a Test Automation on this team you will be responsible for: designing, coding and executing automated test scripts, preparing reports and documentation updates, technical consulting on automation issues, tools and processes. You may take part in researching best practices, new tools and technology. You will interact with senior internal and external personnel. You will develop and execute software test plans as well as analyze and write test standards and procedures. You will maintain documentation of test results to assist in debugging and modification of software. For more information or to apply, please contact Patrycja Pałacka-Wilk: ppw[at]infolet.pl Requirements Degree in engineering, preferably in the specialization of software, telecommunications or electronics, Min. 2 years of experience in software testing, Working knowledge of test automation, Practical experience in a modern programming or scripting language (Python, Bash, Perl), Knowledge of XML, XPath, Experience in using software testing tools (QTP, White, Loadrunner, FitNesse, Quality Center) and defect tracking systems. Offer Large development possibilities with the latest technologies, Work in international environment, The budget for this position is between 11 000 - 13 300 PLN and depends on the chosen form of the agreement (standard work agreement or B2B), Personal development and training, Medical care, Benefit Multisport, Home office option (up to 8 days, after adaptation period), Relocation package.
  6. Java Software Developer - Nr ref. (02/222) Kraków Job description Working as a Java Software Developer you will be responsible for designing, developing and testing software using IDE of choice (IntelliJ IDEA, Eclipse or any other) with good level of Unit Tests coverage. You will spent 80% of time to build new functionality and 20% of time to maintain products. Also, you will support DevOps in an effort to evolve CI/CD processes. Working on this position you will take part in researching best practices, new tools, technology or building prototype applications and help creating documentation for web services users. For more information, please contact Kinga Baran: kinga.baran[at]infolet.pl Requirements Minimum 2 years of experience in developing Java/J2EE applications. Experience with Spring framework. Experience in XML/Web Services, JMS technologies. Experience with Tomcat or other application servers. Good knowledge of Unix/Linux operating systems. Good communication skills in English, written and verbal. Very good interpersonal skills. Additional requirements Ability to think outside the box. Initiative and creativity. Willing to develop and learn new areas/technologies. Dedication to TDD and Agile Development practices. Positive attitude and good sense of humor. Offer Large development possibilities with the latest technologies. Work in international environment. The budget for this position is between 11 000 - 13 000 PLN and depends on the chosen form of the agreement (standard work agreement or B2B). Personal development and training. Medical care. Benefit Multisport. Home office option (up to 8 days, after adaptation period). Relocation package.
  7. Software Quality Engineer – Regular - Nr ref. (02/186) Kraków Job description As a Test Automation Specialist on this team you will be responsible for: designing, coding and executing automated test scripts, preparing reports and documentation updates, technical consulting on automation issues, tools and processes. You may take part in researching best practices, new tools and technology. You will interact with senior internal and external personnel and you will be responsible for developing and executing software test plans. The person on this position will also analyze and write test standards and procedures. Moreover the responsibilities contain maintenance of test documentation results to assist in debugging and modification of software. For more information or to apply, please contact Patrycja Pałacka-Wilk: ppw[at]infolet.pl Requirements Minimum 3 years of experience in Quality Assurance testing, writing and executing test plans; Scripting experience including JAVA, Python or Shell; Experience with testing in Agile/ Iterative Development; Experience in working with XML; Basic knowledge of SQL; Unix at user level; Knowledge of bug tracking tools such as JIRA; Strong problem solving skills; Very Good English communication skills, written and verbal. Additional requirements Basic knowledge of testing domain; Experience in backend system testing; Knowledge of regular expressions; Knowledge of SVN (or another version control tool); Experience in test automation tools (e.g. JMeter, Selenium, Fitnesse, QTP); Experience in using Quality Center (ALM) or other test management tool. Our offer Large development possibilities with the latest technologies. Work in international environment. The budget for this position is between 11 000 - 13 300 PLN and depends on the chosen form of the agreement (standard work agreement or B2B). Personal development and training. Medical care. Benefit Multisport. Home office option (up to 8 days, after adaptation period). Relocation package.
  8. Team Lead Java Developer - Nr ref. (02/216) Kraków Job description Working on this position you will lead a team responsible for developing, coding, testing and debugging new highly complex software solutions. What is more, you will be resposible for enhancements to existing software in a maintenance capacity or providing directions for entire project and a project team. You should understand the business requirements and translate them into the necessary designs and documentation. You will be also responsible for assuring code quality and adherence to coding standards on projects and appling advanced skills and concepts to oversee large, complex projects. Additionally, troubleshooting issues in staging/testing and production environments will be also one of a duty. Working as a Team Lead Java Developer you will be doing performance and load analysis of application on network and database. A part of a job will be cooperation with other development teams (both local and remote) and introduction innovations to improve application stability. For more information, please contact Kinga Baran: kinga.baran[at]infolet.pl Requirements Excellent Java knowledge and programming skills, at least 5-6 years of experience as Java Developer. Expert knowledge in: Spring, Hibernate, XML Web Services, RDBMS, Java Messaging. Excellent analysis and problem solving skills. Bachelor’s Degree in IT or similar engineering specialties. Commitment to achieving projects goals and orientation to improve quality. Ability to learn new and complex technologies quickly. Willingness to work and guide other people on a team. Good communication skills in English, written and verbal. Very good interpersonal skills. Desire to be part of an elite and growing software development Team. Our offer Large development possibilities with the latest technologies. Work in international environment. The budget for this position is between 12 000 - 18 000 PLN and depends on the chosen form of the agreement (standard work agreement or B2B). Personal development and training. Medical care. Benefit Multisport. Home office option (up to 8 days, after adaptation period). Relocation package.
  9. Java Developer - Nr ref. (02/210) Kraków Job description Java Software Developer will be responsible for developing, coding, testing and debugging new moderately complex software solutions or making enhancement to existing software in a maintenance capacity. The person on this position should have good understanding of business application. He will work with technical staff to understand problems with software and resolve them. He will be also responsible for resolving customer complaints with software and responding to suggestions for improvements and enhancements. He may assist in development of software technical documentation, create optimization programs to resolve problems and finally he may design and build prototype applications. For more information or to apply, please contact Kinga Baran: kinga.baran[at]infolet.pl Requirements Minimum 3-4 years of experience in developing Java applications. Experience with Service-Oriented Architecture, web services, SOAP, XML, Spring. Experience with RESTful services development. Knowledge of Agile, Test-Driven Development. Knowledge of the OOP and design patterns. Good English communication skills. Team working skills. Capability of working with minimal supervision. Additional requirements Experience with Jetty, Tomcat, Camel, JMS and NoSQL databases (e.g. MongoDB). Experience in Maven, Gradle. SQL, Linux knowledge. Experience in back-end applications development. Our offer Large development possibilities with the latest technologies. Work in international environment. The budget for this position is between 11 000 - 15 600 PLN and depends on the chosen form of the agreement (standard work agreement or B2B). Personal development and training. Medical care. Benefit Multisport. Home office option (up to 8 days, after adaptation period). Relocation package.
  10. C++ Software Developer - Nr ref. (02/220) Kraków Job description C++ Software Developer will be responsible for developing, coding, testing and debugging new moderately complex software solutions or making enhancement to existing software in a maintenance capacity. The person on this position should have good understanding of business application. He/She will work with technical staff to understand problems with software and resolve them. Developer will be also responsible for resolving customer complaints with software and responding to suggestions for improvements and enhancements. C++ Software Developer may assist in development of software technical documentation, create optimization programs to resolve problems and finally he may design and build prototype applications. For more information or to apply, please contact Kinga Baran: kinga.baran[at]infolet.pl Requirements Advanced C++ (C++11, C++14) programming skills, minimum 2-3 years of experience. Advanced knowledge of Object Oriented Analysis and Design. Understanding of TDD practices and experience with JUnit/Unit Testing. Experience in XML/Web Services technologies. Understanding of relational databases (Oracle, SQL). Advanced knowledge of Linux operating systems. Strong communication skills in English, written and verbal. Additional requirements Java Development experience. Experience in Agile Development. Experience with build tools Ant/Maven/Gradle. Experience with Spring framework. Advanced knowledge of Subversion or other Software Configuration Management (SCM). Experience with Apache Camel and/or ServiceMix. Our offer Large development possibilities with the latest technologies. Work in international environment. The budget for this position is between 11 000 - 13 000 PLN and depends on the chosen form of the agreement (standard work agreement or B2B). Personal development and training. Medical care. Benefit Multisport. Home office option (up to 8 days, after adaptation period). Relocation package.
  11. Quality Assurance Engineer - Nr ref. (02/153) Kraków Job description As a Quality Assurance Engineer on this team you'll be responsible for: designing, coding and executing automated test scripts, preparing reports and documentation updates, technical consulting on automation issues, tools and processes. May take part in researching best practices, new tools and technology. Interact with senior internal and external personnel. Develops and executes software test plans. Analyzes and writes test standards and procedures. Maintains documentation of test results to assist in debugging and modification of software. For more information or to apply, please contact Patrycja Pałacka-Wilk: ppw[at]infolet.pl Requirements Bachelor or Master degree in a technology area, Minimum 2 years of experience in testing application software, Experience in specifying, estimating and planning tests, Experience with bug tracking tools such as JIRA, Bugzilla, Experience in testing Java and C++ applications, Experience in programming at least one language (Java, JavaScript, VBScript, Python), Knowledge of SQL, Oracle, SQL Server, Knowledge of XML, XPath. Our offer Large development possibilities with the latest technologies, Work in international environment, The budget for this position is between 11 000 - 13 300 PLN and depends on the chosen form of the agreement (standard work agreement or B2B), Personal development and training, Medical care, Benefit Multisport, Home office option (up to 8 days, after adaptation period), Relocation package.
  12. Senior Java Software Developer - Nr ref. (02/223) Kraków Job description Java Software Developer will be responsible for developing, coding, testing and debugging new moderately complex software solutions or making enhancement to existing software in a maintenance capacity. The person on this position should have good understanding of business application. He will work with technical staff to understand problems with software and resolve them. He will be also responsible for resolving customer complaints with software and responding to suggestions for improvements and enhancements. He may assist in development of software technical documentation, create optimization programs to resolve problems and finally he may design and build prototype applications. For more information or to apply, please contact Kinga Baran: kinga.baran[at]infolet.pl Requirements Core technical skills required: Java, common Java frameworks (Spring, Hibernate) minimum 3-4 years of experience. Working knowledge on scripting languages. Working knowledge of Oracle or other relational database. Excellent communication skills (written and verbal). Unix/Linux experience on user level is a must. Additional requirements Expertise in XML, XSD and XSLT is highly desirable. Knowledge of ServiceMix/Camel. Knowledge of Web technologies (HTML5, JS frameworks, CSS). Core technical skills on JMS, JDBC, SOA, Swing. Exposure to Agile programming methodologies is most welcome. Experience with Git/Subversion would be a plus. Our offer Large development possibilities with the latest technologies. Work in international environment. The budget for this position is between 11 000 - 15 600 PLN and depends on the chosen form of the agreement (standard work agreement or B2B). Personal development and training. Medical care. Benefit Multisport. Home office option (up to 8 days, after adaptation period). Relocation package.
  13. Software Quality Engineer – Regular - Nr ref. (02/186) Kraków Job description As a Test Automation Specialist on this team you'll be responsible for: designing, coding and executing automated test scripts, preparing reports and documentation updates, technical consulting on automation issues, tools and processes. You may take part in researching best practices, new tools and technology. You will Interact with senior internal and external personnel and you will be responsible for developing and executing software test plans. The person on this position will also analyze and write test standards and procedures. Moreover the responsibilities contain maintenance of test documentation results to assist in debugging and modification of software. For more information or to apply, please contact Patrycja Pałacka-Wilk[at]infolet.pl Requirements Minimum 3 years of experience in Quality Assurance testing, writing and executing test plans; Scripting experience including JAVA, Python or Shell; Experience with testing in Agile/ Iterative Development; Experience in working with XML; Basic knowledge of SQL; Unix at user level; Knowledge of bug tracking tools such as JIRA; Strong problem solving skills; Very Good English communication skills, written and verbal. Additional requirements Basic knowledge of testing domain; Experience in backend system testing; Knowledge of regular expressions; Knowledge of SVN (or another version control tool); Experience in test automation tools (e.g. JMeter, Selenium, Fitnesse, QTP); Experience in using Quality Center (ALM) or other test management tool. Our offer Large development possibilities with the latest technologies, Work in international environment, Work in international environment;The budget for this position is between 11 000 - 13 300 PLN and depends on the chosen form of the agreement (standard work agreement or B2B); Personal development and training; Medical care; Benefit Multisport; Home office option (up to 8 days, after adaptation period); Relocation package.
  14. iOS Developer - Nr ref. (68/11) Kraków Job description Design, build and test applications for the iOS platform. Development and maintenance custom web/mobile applications and API’s using REST API, AngularJS, Grunt. Develop custom features based on specifications and technical designs. Create rich web user interfaces using CSS/ SASS. For more information or to apply, please contact Kinga Baran: kinga.baran[at]infolet.pl Requirements Experience with mobile applications and mobile development environments. Solid understanding of IOS min. 2 years of experience. Utilizing the knowledge to build iOS apps using Objective C, Swift. Familiar with Cocoa. Experience with Web Communications (REST API's, XML, JSON etc.). GIT Source Control knowledgde. Apple Testing and Review process/tools experience. Additional requirements Development and maintenance custom web/mobile applications and API’s using AngularJS, Grunt, WebSockets. Comfortable working with CSS/ SASS. WEB Development or Java knowledge. Agile methodologies. Experience building high performance products in a team environment. Our offer Large development possibilities with the latest technologies. Work in international environment. The budget for this position is up to 13 000 PLN. Personal development and training. Medical care.
  15. Senior Software Developer C++ - Nr ref. (02/221) Kraków Job description The main duty on this position is to create, then to translate the created ideas into working, efficient functionalities developed in C++ language. Also deep understanding of the problem is a key to providing good solution, so candidate will need to gather information and learn the functional areas of assignments. The written code should be logical, clean, well-organized, and covered with unit tests. Developer may be asked to participate in code reviews as well as to resolve issues with the application reported by customers or other parties. Senior C++ Developer will be accountable for given projects and expected to bring measurable results. For more information or to apply, please contact Kinga Baran: kinga.baran[at]infolet.pl Requirements Excellent knowledge of C++ programming. Passion for puzzles, algorithms and optimizations. Excellent knowledge of generic and object oriented programming. Excellent knowledge of STL. Very good knowledge of multithreaded programming concepts. Very good English communication skills, written and verbal, technology-related. Additional requirements Knowledge of C++11 and C++14 standard. Knowledge of Boost libraries. Knowledge of GCC, Make, CMake, Git. Knowledge of C++ debugging/profiling methods and tools. Knowledge of TCP/IP networking and programming. Basic knowledge of XML and SQL. Our offer Large development possibilities with the latest technologies. Work in international environment. The budget for this position is between 11 000 - 15 600 PLN and depends on the chosen form of the agreement (standard work agreement or B2B). Personal development and training. Medical care. Benefit Multisport. Home office option (up to 8 days, after adaptation period). Relocation package.
  16. C++ Software Developer - Nr ref. (02/220) Kraków Job description C++ Software Developer will be responsible for developing, coding, testing and debugging new moderately complex software solutions or making enhancement to existing software in a maintenance capacity. The person on this position should have good understanding of business application. He/She will work with technical staff to understand problems with software and resolve them. Developer will be also responsible for resolving customer complaints with software and responding to suggestions for improvements and enhancements. C++ Software Developer may assist in development of software technical documentation, create optimization programs to resolve problems and finally he may design and build prototype applications. For more information or to apply, please contact Kinga Baran: kinga.baran[at]infolet.pl Requirements Advanced C++ (C++11, C++14) programming skills, minimum 2-3 years of experience. Advanced knowledge of Object Oriented Analysis and Design. Understanding of TDD practices and experience with JUnit/Unit Testing. Experience in XML/Web Services technologies. Understanding of relational databases (Oracle, SQL). Advanced knowledge of Linux operating systems. Strong communication skills in English, written and verbal. Additional requirements Java Development experience. Experience in Agile Development. Experience with build tools Ant/Maven/Gradle. Experience with Spring framework. Advanced knowledge of Subversion or other Software Configuration Management (SCM). Experience with Apache Camel and/or ServiceMix. Our offer Large development possibilities with the latest technologies. Work in international environment. The budget for this position is between 11 000 - 13 000 PLN and depends on the chosen form of the agreement (standard work agreement or B2B). Personal development and training. Medical care. Benefit Multisport. Home office option (up to 8 days, after adaptation period). Relocation package.
  17. Java Developer - Nr ref. (02/210) Kraków Job description Java Software Developer will be responsible for developing, coding, testing and debugging new moderately complex software solutions or making enhancement to existing software in a maintenance capacity. The person on this position should have good understanding of business application. He will work with technical staff to understand problems with software and resolve them. He will be also responsible for resolving customer complaints with software and responding to suggestions for improvements and enhancements. He may assist in development of software technical documentation, create optimization programs to resolve problems and finally he may design and build prototype applications. For more information or to apply, please contact Kinga Baran: kinga.baran[at]infolet.pl Requirements Minimum 3-4 years of experience in developing Java applications. Experience with Service-Oriented Architecture, web services, SOAP, XML, Spring. Experience with RESTful services development. Knowledge of Agile, Test-Driven Development. Knowledge of the OOP and design patterns. Good English communication skills. Team working skills. Capability of working with minimal supervision. Additional requirements Experience with Jetty, Tomcat, Camel, JMS and NoSQL databases (e.g. MongoDB). Experience in Maven, Gradle. SQL, Linux knowledge. Experience in back-end applications development. Our offer Large development possibilities with the latest technologies. Work in international environment. The budget for this position is between 11 000 - 15 600 PLN and depends on the chosen form of the agreement (standard work agreement or B2B). Personal development and training. Medical care. Benefit Multisport. Home office option (up to 8 days, after adaptation period). Relocation package.
  18. Database Developer - Nr ref. (05/54) Kraków Job description The Database Developer is responsible for assisting with the design, implementation, and maintenance of a technical infrastructure that supports organizational reporting objectives, that ensures the security of systems and data, that is scalable, available, reliable, and effective. This role requires a high sense of ownership of the environment, issues and assigned requests with a focus on managing and resolving issues in alignment with deliverables. Scope of the role includes initiating and performing changes on production systems and proactively identifying alternative solutions or escalating issues that cannot be resolved within the established timeframes. Designing, writing and troubleshooting SQL queries and code including stored procedures, functions, tables, views, triggers, indexes, constraints is what the Database Developer is responsible for. His task will be also planning and coordinating data migrations between systems. For more information or to apply, please contact Joanna Kempińska: joanna.kempinska[at]infolet.pl Requirements Minimum 3+ years working as a database developer or a related role. Strong knowledge of Oracle database, PLSQL, materialized views and data refresh techniques. Ability to write complex and nested queries and optimize them. Strong knowledge of web services and development frameworks including Oracle APEX, XML, JSON, SOAP and RESTful APIs. Strong knowledge of windows shell scripting (wsh, vbs and powershell). Knowledge of Microsoft SQL server, data import and export automation, SSIS packages. Experience with Windows server configurations, IIS, FTP, ssh, windows job scheduler. Good communication skills in English. Our offer Competitive salary package. Strong team-oriented culture. Comfortable work conditions (high class offices, parking space) . Private medical coverage and life insurance. Access to wellness facilities and integration events. Trainings and broad development opportunities.
  19. Software QA Engineer - Nr ref. (02/152) Kraków Job description As a Test Automation on this team you'll be responsible for: designing, coding and executing automated test scripts, preparing reports and documentation updates, technical consulting on automation issues, tools and processes. May take part in researching best practices, new tools and technology. Interacts with senior internal and external personnel. Develops and executes software test plans. Analyzes and writes test standards and procedures. Maintains documentation of test results to assist in debugging and modification of software. For more information or to apply, please contact Patrycja Pałacka-Wilk: ppw[at]infolet.pl Requirements Degree in engineering, preferably in the specialization of software, telecommunications or electronics, Min. 2 years of experience in software testing, Working knowledge of test automation, Practical experience in a modern programming or scripting language (Python, Bash, Perl), Knowledge of XML, XPath, Experience in using software testing tools (QTP, White, Loadrunner, FitNesse, Quality Center) and defect tracking systems. Our offer Large development possibilities with the latest technologies, Work in international environment, The budget for this position is between 11 000 - 13 300 PLN and depends on the chosen form of the agreement (standard work agreement or B2B), Personal development and training, Medical care, Benefit Multisport, Home office option (up to 8 days, after adaptation period), Relocation package.
  20. Java Software Developer - Nr ref. (02/194) Kraków Job description Develops, codes, tests and debugs new moderately complex software solutions or enhancements to existing software in a maintenance capacity. Has good understanding of business application. Works with technical staff to understand problems with software and resolve them. Resolves customer complaints with software and responds to suggestions for improvements and enhancements. May assist in development of software technical documentation. Designs and codes moderately complex applications using routine and/or advanced technology. May create optimization programs to resolve problems. May design and build prototype applications. For more information or to apply, please contact Kinga Baran: kinga.baran[at]infolet.pl Requirements Must be fully proficient with Java programming language and various Java EE technologies, min. +3 years of experience. Thorough knowledge and hands on experience with Spring, Hibernate and web services is a must. Demonstrated knowledge of Object Oriented Analysis and Design. Experience in XML/Web Services technologies. Understanding of relational databases (Oracle, SQL). Demonstrated knowledge of Linux operating systems. Strong communication skills in English, written and verbal. Experience with build tools Ant/Maven/Gradle. Experience with Apache Camel and/or ServiceMix. Experience in JMS/MOM, JBoss, JMX, Drools a plus. Additional requirements Agile experience is a plus. Understanding of TDD practices and experience with JUnit/Unit Testing. Our offer Large development possibilities with the latest technologies. Work in international environment. The budget for this position is between 11 000 - 15 600 PLN and depends on the chosen form of the agreement (standard work agreement or B2B). Personal development and training. Medical care. Benefit Multisport. Home office option (up to 8 days, after adaptation period). Relocation package.
  21. Team Lead Java Developer needed Who?: IT Kontrakt Where?: Kraków Industry: air/ travel Polish is not required What you'll be doing? Leading a team responsible for developing, coding, testing and debugging new highly complex software solutions or enhancements to existing software in a maintenance capacity. Providing directions for entire project or a project team. Understanding business requirements and translating them into the necessary designs and documentation Assuring code quality and adherence to coding standards on projects he/she leads Appling advanced skills and concepts to oversee large, complex projects. Troubleshooting issues in staging/testing and production environments Performance and load analysis of application on network and database Cooperating with other development teams (both local and remote) Innovating to improve application stability and performance Who are we looking for? The ideal Candidate would have: Excellent Java knowledge and programming skills Expert knowledge in: Spring, Hibernate, XML Web Services, RDBMS, Java Messaging Excellent analysis and problem solving skills Commitment to achieving projects goals and orientation to improve quality Bachelor’s Degree in IT or similar engineering specialties At least 5-6 years of experience as Java developer Ability to learn new and complex technologies quickly Willingness to work and guide other people on a team Good communication skills in English, written and verbal Very good interpersonal skills Desires to be part of an elite and growing software development Team We offer: Constant improvement of professional qualifications Nice atmosphere in an ambitious and professional team Challenging and supportive working environment Benefits package If you are interested or have any questions, feel free to contact me: sonia.fijalkowska@itkontrakt.pl
  22. Team Lead Java Developer needed Who?: IT Kontrakt Where?: Kraków Industry: air/ travel Polish is not required What you'll be doing? Leading a team responsible for developing, coding, testing and debugging new highly complex software solutions or enhancements to existing software in a maintenance capacity. Providing directions for entire project or a project team. Understanding business requirements and translating them into the necessary designs and documentation Assuring code quality and adherence to coding standards on projects he/she leads Appling advanced skills and concepts to oversee large, complex projects. Troubleshooting issues in staging/testing and production environments Performance and load analysis of application on network and database Cooperating with other development teams (both local and remote) Innovating to improve application stability and performance Who are we looking for? The ideal Candidate would have: Excellent Java knowledge and programming skills Expert knowledge in: Spring, Hibernate, XML Web Services, RDBMS, Java Messaging Excellent analysis and problem solving skills Commitment to achieving projects goals and orientation to improve quality Bachelor’s Degree in IT or similar engineering specialties At least 5-6 years of experience as Java developer Ability to learn new and complex technologies quickly Willingness to work and guide other people on a team Good communication skills in English, written and verbal Very good interpersonal skills Desires to be part of an elite and growing software development Team We offer: Constant improvement of professional qualifications Nice atmosphere in an ambitious and professional team Challenging and supportive working environment Benefits package If you are interested or have any questions, feel free to contact me: sonia.fijalkowska@itkontrakt.pl
  23. Java Developer - Nr ref. (83/01) Gdańsk Opis stanowiska Osoba zatrudniona na tym stanowisku będzie współpracowała z analitykami oraz departamentami biznesowymi. Będzie odpowiedzialna za przygotowanie oprogramowania oraz implementację aplikacji. Dodatkowe obowiązki to tworzenie dokumentacji technicznej oraz implementacja testów jednostkowych i integracyjnych. Więcej informacji na temat oferty udzieli Patrycja Pacocha: patrycja.pacocha[at]infolet.pl Wymagania minimum roczne doświadczenie na podobnym stanowisku bardzo dobra znajomość JAVA oraz specyfikacji JEE (JSP/Servlets, EJB, JMS, XML) znajomość Spring Framework znajomość Maven znajomość TOMCAT, JBOSS znajomość technologii webowych HTML+CSS, podstawy JavaScript znajomość zasad TDD doświadczenie z systemami kontroli wersji (SVN/GIT/CVS) znajomość baz danych dobra znajomość języka angielskiego Mile widziane znajomość Framework GWT lub AngularJS znajomość WebServices Oferujemy zatrudnienie w oparciu o umowę o pracę lub B2B budżet do 11 000 PLN netto pakiet prywatnej opieki zdrowotnej (dla siebie i rodziny) ubezpieczenie na życie karta Multisport Benefit wsparcie merytoryczne dla zakładających działalność gospodarczą
  24. Software QA Engineer - Nr ref. (02/152) Kraków Job description As a Test Automation on this team you'll be responsible for: designing, coding and executing automated test scripts, preparing reports and documentation updates, technical consulting on automation issues, tools and processes. May take part in researching best practices, new tools and technology. Interacts with senior internal and external personnel. Develops and executes software test plans. Analyzes and writes test standards and procedures. Maintains documentation of test results to assist in debugging and modification of software. Requirements Degree in engineering, preferably in the specialization of software, telecommunications or electronics, Min. 2 years of experience in software testing, Working knowledge of test automation, Practical experience in a modern programming or scripting language (Python, Bash, Perl), Knowledge of XML, XPath, Experience in using software testing tools (QTP, White, Loadrunner, FitNesse, Quality Center) and defect tracking systems. Our offer Large development possibilities with the latest technologies, Work in international environment, The budget for this position is between 11 000 - 13 300 PLN and depends on the chosen form of the agreement (standard work agreement or B2B), Personal development and training, Medical care, Benefit Multisport, Home office option (up to 8 days, after adaptation period), Relocation package. To apply please send your CV in Polish or English: praca@infolet.pl
  25. Quality Assurance Engineer - Nr ref. (02/153) Kraków Job description As a Quality Assurance Engineer on this team you'll be responsible for: designing, coding and executing automated test scripts, preparing reports and documentation updates, technical consulting on automation issues, tools and processes. May take part in researching best practices, new tools and technology. Interact with senior internal and external personnel. Develops and executes software test plans. Analyzes and writes test standards and procedures. Maintains documentation of test results to assist in debugging and modification of software. Requirements Bachelor or Master degree in a technology area, Minimum 2 years of experience in testing application software, Experience in specifying, estimating and planning tests, Experience with bug tracking tools such as JIRA, Bugzilla, Experience in testing Java and C++ applications, Experience in programming at least one language (Java, JavaScript, VBScript, Python), Knowledge of SQL, Oracle, SQL Server, Knowledge of XML, XPath. Our offer Large development possibilities with the latest technologies, Work in international environment, The budget for this position is between 11 000 - 13 300 PLN and depends on the chosen form of the agreement (standard work agreement or B2B), Personal development and training, Medical care, Benefit Multisport, Home office option (up to 8 days, after adaptation period), Relocation package. To apply please send your CV in Polish or English: praca@infolet.pl
×
×
  • Utwórz nowe...