Skocz do zawartości

Przeszukaj forum

Pokazuję wyniki dla tagów 'gui'.

  • 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

Znaleziono 8 wyników

  1. Dzień dobry/Dobry wieczór! Ostatnio skończyłem tworzyć projekt na potrzeby mojego przyszłego portfolio, ale mam wrażenie, że coś nie gra. Nie potrafię jednoznacznie określić, co może być nie tak. Bardzo zależy mi na szczerej opinii i kilku poradach dotyczących tego, co mogę poprawić, co pasuje, a co raczej nie. Zdjęcie projektu w załączniku.
  2. Jeśli interesuje Cię: - Realizacja nowatorskich projektów dla ciekawych klientów - Wyjątkowa atmosfera pracy w fantastycznym, profesjonalnym zespole - Indywidualna ścieżka rozwoju kompetencji pod okiem mentora - Samodzielność przy wykonywaniu zadań To wiedz, że szukamy samodzielnego Grafika Który: Przynajmniej rok pracował na podobnym stanowisku Bardzo dobrze zna pakiet Adobe (Photoshop / Ilustrator) Posiada bogate portfolio z zakresu mobile, UI/UX, web (pod uwagę będą brani tylko kandydaci, którzy przedstawią swoje portfolio) Zna GUI iOS i material design Android Miejsce pracy: Warszawa Wynagrodzenie: 4000 – 8000 zł. netto Zgłoszenia prosimy kierować bezpośrednio przez stronę http://bit.ly/2kiC1xE Jednocześnie prosimy o zawarcie w swoim CV poniższej klauzuli, co pozwoli nam uruchomić proces rekrutacyjny. „Wyrażam zgodę na przetwarzanie moich danych osobowych przez firmę rivet group spółka z ograniczoną odpowiedzialnością spółka komandytowa z siedzibą w Warszawie (adres: ul. Rybnicka 48, 02-432 Warszawa), w celu prowadzenia procesów rekrutacyjnych z udziałem potencjalnych pracodawców (zgodnie z Ustawą z dnia 29.08.1997 roku o Ochronie Danych Osobowych; tekst jednolity: Dz. U. z 2002r. Nr 101, poz. 926 ze zm.). Ponadto zgadzam się na przekazanie moich danych osobowych – w powyższych celach - innym podmiotom powiązanym lub współpracującym z rivet group oraz potencjalnym pracodawcom. Mam świadomość, iż przysługuje mi prawo dostępu do moich danych osobowych oraz ich poprawiania i że podanie powyższych danych osobowych jest dobrowolne.”
  3. import java.awt.Color; import java.awt.Font; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JTextField; //------------------------------------------------------------------------- public class ReadPesel extends JFrame implements ActionListener{ JButton Przycisksprawdz, Przyciskwyjscie; JLabel NapisRok, NapisMiesiac, NapisDzien, NapisPlec, NapisPesel; JTextField NumerPesel; //------------------------------------------------------------------------- public ReadPesel() { setSize(500,300); setTitle("Aplikacja do sprawdzania nr PESEL"); setLayout(null); NapisPesel = new JLabel ("Wpisz jedenastocyfrowy nr PESEL: "); NapisPesel.setBounds(10,100,100,20); NapisPesel.setForeground(Color.MAGENTA); NapisPesel.setFont(new Font("SansSerif",Font.BOLD,10)); add(NapisPesel); NumerPesel = new JTextField(""); NumerPesel.setBounds(10, 100, 100, 20); add(NumerPesel); Przycisksprawdz = new JButton("Sprawdź"); Przycisksprawdz.setBounds(100,200,100,20); add(Przycisksprawdz); Przycisksprawdz.addActionListener(this); Przyciskwyjscie = new JButton("Wyjście"); Przyciskwyjscie.setBounds(300,200,100,20); add(Przyciskwyjscie); Przyciskwyjscie.addActionListener(this); NapisRok.setBounds(50,100,100,20); NapisRok.setForeground(Color.MAGENTA); NapisRok.setFont(new Font("SansSerif",Font.BOLD,10)); add(NapisRok); NapisMiesiac.setBounds(100,100,100,20); NapisMiesiac.setForeground(Color.MAGENTA); NapisMiesiac.setFont(new Font("SansSerif",Font.BOLD,10)); add(NapisMiesiac); NapisDzien.setBounds(150,100,100,20); NapisDzien.setForeground(Color.MAGENTA); NapisDzien.setFont(new Font("SansSerif",Font.BOLD,10)); add(NapisDzien); NapisPlec.setBounds(200,100,100,20); NapisPlec.setForeground(Color.MAGENTA); NapisPlec.setFont(new Font("SansSerif",Font.BOLD,10)); add(NapisPlec); //------------------------------------------------------------------------- //------------------------------------------------------------------------- final String Numer_Pesel; final String Miesiace; // ----------------------------------------------------------- class PeselRead(String Ciag) { Numer_Pesel = Ciag; } // ----------------------------------------------------------- public String Rok_Urodzenia() { String Rok1 = ""; String Rok2 = Numer_Pesel.substring(0, 2); Miesiace = Numer_Pesel.substring(2, 4); int Mint = 0; String MiesiacArr[] = { "Styczen", "Luty", "Marzec", "Kwiecien", "Maj", "Czerwiec", "Lipiec", "Sierpien", "Wrzesien", "Pazdziernik", "Listopad", "Grudzien" }; if (Miesiace.equals("81")) { Rok1 = "18"; Mint = 0; } else if (Miesiace.equals("82")) { Rok1 = "18"; Mint = 1; } else if (Miesiace.equals("83")) { Rok1 = "18"; Mint = 2; } else if (Miesiace.equals("84")) { Rok1 = "18"; Mint = 3; } else if (Miesiace.equals("85")) { Rok1 = "18"; Mint = 4; } else if (Miesiace.equals("86")) { Rok1 = "18"; Mint = 5; } else if (Miesiace.equals("87")) { Rok1 = "18"; Mint = 6; } else if (Miesiace.equals("88")) { Rok1 = "18"; Mint = 7; } else if (Miesiace.equals("89")) { Rok1 = "18"; Mint = 8; } else if (Miesiace.equals("90")) { Rok1 = "18"; Mint = 9; } else if (Miesiace.equals("91")) { Rok1 = "18"; Mint = 10; } else if (Miesiace.equals("92")) { Rok1 = "18"; Mint = 11; } else if (Miesiace.equals("01")) { Rok1 = "19"; Mint = 0; } else if (Miesiace.equals("02")) { Rok1 = "19"; Mint = 1; } else if (Miesiace.equals("03")) { Rok1 = "19"; Mint = 2; } else if (Miesiace.equals("04")) { Rok1 = "19"; Mint = 3; } else if (Miesiace.equals("05")) { Rok1 = "19"; Mint = 4; } else if (Miesiace.equals("06")) { Rok1 = "19"; Mint = 5; } else if (Miesiace.equals("07")) { Rok1 = "19"; Mint = 6; } else if (Miesiace.equals("08")) { Rok1 = "19"; Mint = 7; } else if (Miesiace.equals("09")) { Rok1 = "19"; Mint = 8; } else if (Miesiace.equals("10")) { Rok1 = "19"; Mint = 9; } else if (Miesiace.equals("11")) { Rok1 = "19"; Mint = 10; } else if (Miesiace.equals("11")) { Rok1 = "19"; Mint = 11; } else if (Miesiace.equals("21")) { Rok1 = "20"; Mint = 0; } else if (Miesiace.equals("22")) { Rok1 = "20"; Mint = 1; } else if (Miesiace.equals("23")) { Rok1 = "20"; Mint = 2; } else if (Miesiace.equals("24")) { Rok1 = "20"; Mint = 3; } else if (Miesiace.equals("25")) { Rok1 = "20"; Mint = 4; } else if (Miesiace.equals("26")) { Rok1 = "20"; Mint = 5; } else if (Miesiace.equals("27")) { Rok1 = "20"; Mint = 6; } else if (Miesiace.equals("28")) { Rok1 = "20"; Mint = 7; } else if (Miesiace.equals("29")) { Rok1 = "20"; Mint = 8; } else if (Miesiace.equals("30")) { Rok1 = "20"; Mint = 9; } else if (Miesiace.equals("31")) { Rok1 = "20"; Mint = 10; } else if (Miesiace.equals("32")) { Rok1 = "20"; Mint = 11; } else if (Miesiace.equals("41")) { Rok1 = "21"; Mint = 0; } else if (Miesiace.equals("42")) { Rok1 = "21"; Mint = 1; } else if (Miesiace.equals("43")) { Rok1 = "21"; Mint = 2; } else if (Miesiace.equals("44")) { Rok1 = "21"; Mint = 3; } else if (Miesiace.equals("45")) { Rok1 = "21"; Mint = 4; } else if (Miesiace.equals("46")) { Rok1 = "21"; Mint = 5; } else if (Miesiace.equals("47")) { Rok1 = "21"; Mint = 6; } else if (Miesiace.equals("48")) { Rok1 = "21"; Mint = 7; } else if (Miesiace.equals("49")) { Rok1 = "21"; Mint = 8; } else if (Miesiace.equals("50")) { Rok1 = "21"; Mint = 9; } else if (Miesiace.equals("51")) { Rok1 = "21"; Mint = 10; } else if (Miesiace.equals("52")) { Rok1 = "21"; Mint = 11; } else if (Miesiace.equals("61")) { Rok1 = "22"; Mint = 0; } else if (Miesiace.equals("62")) { Rok1 = "22"; Mint = 1; } else if (Miesiace.equals("63")) { Rok1 = "22"; Mint = 2; } else if (Miesiace.equals("64")) { Rok1 = "22"; Mint = 3; } else if (Miesiace.equals("65")) { Rok1 = "22"; Mint = 4; } else if (Miesiace.equals("66")) { Rok1 = "22"; Mint = 5; } else if (Miesiace.equals("67")) { Rok1 = "22"; Mint = 6; } else if (Miesiace.equals("68")) { Rok1 = "22"; Mint = 7; } else if (Miesiace.equals("69")) { Rok1 = "22"; Mint = 8; } else if (Miesiace.equals("70")) { Rok1 = "22"; Mint = 9; } else if (Miesiace.equals("71")) { Rok1 = "22"; Mint = 10; } else if (Miesiace.equals("72")) { Rok1 = "22"; Mint = 11; } Miesiace = MiesiacArr[Mint]; return Rok1 + Rok2; } // ----------------------------------------------------------- public String MiesiacUrodzenia() { return Miesiace; } // ----------------------------------------------------------- public String DzienUrodzenia() { return Numer_Pesel.substring(4, 6); } // ----------------------------------------------------------- public String Plec() { int Cyfra = Integer.parseInt(Numer_Pesel.substring(10, 11)); String Plec = ""; if ((Cyfra % 2) == 0) Plec = "Kobiety"; else Plec = "Mezczyzny"; return Plec; } } // ----------------------------------------------------------- } private void RokUrodzenia() { } public static void main(String[] args) { ReadPesel okienko = new ReadPesel(); okienko.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); okienko.setVisible(true); } public void actionPerformed(ActionEvent e) { Object źródło = e.getSource(); if (źródło==Przycisksprawdz) { NapisRok.setText("Rok urodzenia: " + NapisRok); NapisMiesiac.setText("Miesiąc urodzenia: " + NapisMiesiac); NapisDzien.setText("Dzień urodzenia: " + NapisDzien); NapisPlec.setText("Płeć: " + NapisPlec); } else if (źródło==Przyciskwyjscie) { dispose(); } } } Cześć powyżej zamieściłam kod, który stworzyłam... ale mam problem. Pojawiły mi się takie komunikaty: Exception in thread "main" java.lang.Error: Unresolved compilation problems: Syntax error on token "(", { expected Syntax error on token "Ciag", ( expected after this token Syntax error, insert "}" to complete ClassBody at ReadPesel.<init>(ReadPesel.java:70) at ReadPesel.main(ReadPesel.java:302) Proszę o pomoc w opanowaniu tych błędów.
  4. import java.awt.Color; import java.awt.Font; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JTextField; //------------------------------------------------------------------------- public class ReadPesel extends JFrame implements ActionListener{ JButton Przycisksprawdz, Przyciskwyjscie; JLabel NapisRok, NapisMiesiac, NapisDzien, NapisPlec, NapisPesel; JTextField NumerPesel; //------------------------------------------------------------------------- public ReadPesel() { setSize(500,300); setTitle("Aplikacja do sprawdzania nr PESEL"); setLayout(null); NapisPesel = new JLabel ("Wpisz jedenastocyfrowy nr PESEL: "); NapisPesel.setBounds(10,100,100,20); NapisPesel.setForeground(Color.MAGENTA); NapisPesel.setFont(new Font("SansSerif",Font.BOLD,10)); add(NapisPesel); NumerPesel = new JTextField(""); NumerPesel.setBounds(10, 100, 100, 20); add(NumerPesel); Przycisksprawdz = new JButton("Sprawdź"); Przycisksprawdz.setBounds(100,200,100,20); add(Przycisksprawdz); Przycisksprawdz.addActionListener(this); Przyciskwyjscie = new JButton("Wyjście"); Przyciskwyjscie.setBounds(300,200,100,20); add(Przyciskwyjscie); Przyciskwyjscie.addActionListener(this); NapisRok.setBounds(50,100,100,20); NapisRok.setForeground(Color.MAGENTA); NapisRok.setFont(new Font("SansSerif",Font.BOLD,10)); add(NapisRok); NapisMiesiac.setBounds(100,100,100,20); NapisMiesiac.setForeground(Color.MAGENTA); NapisMiesiac.setFont(new Font("SansSerif",Font.BOLD,10)); add(NapisMiesiac); NapisDzien.setBounds(150,100,100,20); NapisDzien.setForeground(Color.MAGENTA); NapisDzien.setFont(new Font("SansSerif",Font.BOLD,10)); add(NapisDzien); NapisPlec.setBounds(200,100,100,20); NapisPlec.setForeground(Color.MAGENTA); NapisPlec.setFont(new Font("SansSerif",Font.BOLD,10)); add(NapisPlec); //------------------------------------------------------------------------- //------------------------------------------------------------------------- final String Numer_Pesel; final String Miesiace; // ----------------------------------------------------------- class PeselRead(String Ciag) { Numer_Pesel = Ciag; } // ----------------------------------------------------------- public String Rok_Urodzenia() { String Rok1 = ""; String Rok2 = Numer_Pesel.substring(0, 2); Miesiace = Numer_Pesel.substring(2, 4); int Mint = 0; String MiesiacArr[] = { "Styczen", "Luty", "Marzec", "Kwiecien", "Maj", "Czerwiec", "Lipiec", "Sierpien", "Wrzesien", "Pazdziernik", "Listopad", "Grudzien" }; if (Miesiace.equals("81")) { Rok1 = "18"; Mint = 0; } else if (Miesiace.equals("82")) { Rok1 = "18"; Mint = 1; } else if (Miesiace.equals("83")) { Rok1 = "18"; Mint = 2; } else if (Miesiace.equals("84")) { Rok1 = "18"; Mint = 3; } else if (Miesiace.equals("85")) { Rok1 = "18"; Mint = 4; } else if (Miesiace.equals("86")) { Rok1 = "18"; Mint = 5; } else if (Miesiace.equals("87")) { Rok1 = "18"; Mint = 6; } else if (Miesiace.equals("88")) { Rok1 = "18"; Mint = 7; } else if (Miesiace.equals("89")) { Rok1 = "18"; Mint = 8; } else if (Miesiace.equals("90")) { Rok1 = "18"; Mint = 9; } else if (Miesiace.equals("91")) { Rok1 = "18"; Mint = 10; } else if (Miesiace.equals("92")) { Rok1 = "18"; Mint = 11; } else if (Miesiace.equals("01")) { Rok1 = "19"; Mint = 0; } else if (Miesiace.equals("02")) { Rok1 = "19"; Mint = 1; } else if (Miesiace.equals("03")) { Rok1 = "19"; Mint = 2; } else if (Miesiace.equals("04")) { Rok1 = "19"; Mint = 3; } else if (Miesiace.equals("05")) { Rok1 = "19"; Mint = 4; } else if (Miesiace.equals("06")) { Rok1 = "19"; Mint = 5; } else if (Miesiace.equals("07")) { Rok1 = "19"; Mint = 6; } else if (Miesiace.equals("08")) { Rok1 = "19"; Mint = 7; } else if (Miesiace.equals("09")) { Rok1 = "19"; Mint = 8; } else if (Miesiace.equals("10")) { Rok1 = "19"; Mint = 9; } else if (Miesiace.equals("11")) { Rok1 = "19"; Mint = 10; } else if (Miesiace.equals("11")) { Rok1 = "19"; Mint = 11; } else if (Miesiace.equals("21")) { Rok1 = "20"; Mint = 0; } else if (Miesiace.equals("22")) { Rok1 = "20"; Mint = 1; } else if (Miesiace.equals("23")) { Rok1 = "20"; Mint = 2; } else if (Miesiace.equals("24")) { Rok1 = "20"; Mint = 3; } else if (Miesiace.equals("25")) { Rok1 = "20"; Mint = 4; } else if (Miesiace.equals("26")) { Rok1 = "20"; Mint = 5; } else if (Miesiace.equals("27")) { Rok1 = "20"; Mint = 6; } else if (Miesiace.equals("28")) { Rok1 = "20"; Mint = 7; } else if (Miesiace.equals("29")) { Rok1 = "20"; Mint = 8; } else if (Miesiace.equals("30")) { Rok1 = "20"; Mint = 9; } else if (Miesiace.equals("31")) { Rok1 = "20"; Mint = 10; } else if (Miesiace.equals("32")) { Rok1 = "20"; Mint = 11; } else if (Miesiace.equals("41")) { Rok1 = "21"; Mint = 0; } else if (Miesiace.equals("42")) { Rok1 = "21"; Mint = 1; } else if (Miesiace.equals("43")) { Rok1 = "21"; Mint = 2; } else if (Miesiace.equals("44")) { Rok1 = "21"; Mint = 3; } else if (Miesiace.equals("45")) { Rok1 = "21"; Mint = 4; } else if (Miesiace.equals("46")) { Rok1 = "21"; Mint = 5; } else if (Miesiace.equals("47")) { Rok1 = "21"; Mint = 6; } else if (Miesiace.equals("48")) { Rok1 = "21"; Mint = 7; } else if (Miesiace.equals("49")) { Rok1 = "21"; Mint = 8; } else if (Miesiace.equals("50")) { Rok1 = "21"; Mint = 9; } else if (Miesiace.equals("51")) { Rok1 = "21"; Mint = 10; } else if (Miesiace.equals("52")) { Rok1 = "21"; Mint = 11; } else if (Miesiace.equals("61")) { Rok1 = "22"; Mint = 0; } else if (Miesiace.equals("62")) { Rok1 = "22"; Mint = 1; } else if (Miesiace.equals("63")) { Rok1 = "22"; Mint = 2; } else if (Miesiace.equals("64")) { Rok1 = "22"; Mint = 3; } else if (Miesiace.equals("65")) { Rok1 = "22"; Mint = 4; } else if (Miesiace.equals("66")) { Rok1 = "22"; Mint = 5; } else if (Miesiace.equals("67")) { Rok1 = "22"; Mint = 6; } else if (Miesiace.equals("68")) { Rok1 = "22"; Mint = 7; } else if (Miesiace.equals("69")) { Rok1 = "22"; Mint = 8; } else if (Miesiace.equals("70")) { Rok1 = "22"; Mint = 9; } else if (Miesiace.equals("71")) { Rok1 = "22"; Mint = 10; } else if (Miesiace.equals("72")) { Rok1 = "22"; Mint = 11; } Miesiace = MiesiacArr[Mint]; return Rok1 + Rok2; } // ----------------------------------------------------------- public String MiesiacUrodzenia() { return Miesiace; } // ----------------------------------------------------------- public String DzienUrodzenia() { return Numer_Pesel.substring(4, 6); } // ----------------------------------------------------------- public String Plec() { int Cyfra = Integer.parseInt(Numer_Pesel.substring(10, 11)); String Plec = ""; if ((Cyfra % 2) == 0) Plec = "Kobiety"; else Plec = "Mezczyzny"; return Plec; } } // ----------------------------------------------------------- } private void RokUrodzenia() { } public static void main(String[] args) { ReadPesel okienko = new ReadPesel(); okienko.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); okienko.setVisible(true); } public void actionPerformed(ActionEvent e) { Object źródło = e.getSource(); if (źródło==Przycisksprawdz) { NapisRok.setText("Rok urodzenia: " + NapisRok); NapisMiesiac.setText("Miesiąc urodzenia: " + NapisMiesiac); NapisDzien.setText("Dzień urodzenia: " + NapisDzien); NapisPlec.setText("Płeć: " + NapisPlec); } else if (źródło==Przyciskwyjscie) { dispose(); } } } Cześć powyżej zamieściłam kod, który stworzyłam... ale mam problem. Pojawiły mi się takie komunikaty: Exception in thread "main" java.lang.Error: Unresolved compilation problems: Syntax error on token "(", { expected Syntax error on token "Ciag", ( expected after this token Syntax error, insert "}" to complete ClassBody at ReadPesel.<init>(ReadPesel.java:70) at ReadPesel.main(ReadPesel.java:302) Proszę o pomoc w opanowaniu tych błędów.
  5. Senior Data & Analytics Solution Architect - Nr ref. (02/214) Kraków Job description Senior Data & Analytics Solution Architect will be collaborate in planning initiatives in strategy, system architecture, future roadmaps and support planning. Also will be work with business teams, technical analysts to understand business requirements and determine how to leverage technology to create solutions that satisfy the business requirements. The person on this position should present solutions to the business, project teams, and other stakeholders with the ability to speak technical and non-technical. He/She will create architecture and technical design documents to communicate solutions that will be implemented by the development team. Additionally will work with development, infrastructure, test, and production support teams to ensure proper implementation of solution or ability to assess the impact of new requirements on an existing suite of complex applications. Moreover candidate will educate organization on available, emerging toolsets and will drive the evolution of infrastructure, processes, products, and services by convincing decision makers. The person on this post should pay the attention to detail, time management, work prioritization, multi-tasking, estimate tasks, on-time deliverables, task delegation & follow-ups. Also will be a mentor team members on best practices in area of expertise and suggest training opportunities for immediate workgroup to help promote bench strength. Also should develop proofs-of-concept and prototypes to help illustrate approaches to technology and business problems. For more information, please contact Kinga Baran: kinga.baran[at]infolet.pl Requirements Experience in building Business Intelligence platforms in an enterprise environment. Minimum of 10 years enterprise IT application experience that includes at least 3 years of architecting strategic, scalable BI, Bigdata solutions with a minimum of 5 years of hands-on software development. Data integration (batch, micro-batches, real-time data streaming) across Hadoop, RDMSs, NoSQL (MongoDB, Hbase), columnar (Vertica) and data warehousing (Teradata) systems. Experience in a GUI based ingestion tool (for example Talend or DataStage or ODI). Hadoop security, data management and governance. Solid understanding of MapReduce and HDFS footprints. Extensive programming experience in Java. Security implementation and data management. Experience in Scrum Driven Development using frameworks. Ability to understand business requirements and building pragmatic/cost effective solutions using Agile project methodologies. Excellent problem solving and analytical skills. Strong verbal and written communications skills. Additional requirements Ability to collaborate with business users to understand requirements. Ability to work effectively across internal and external organizations. Executive speaking and presentation skills – white board, small and large group presentations. 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.
  6. JavaScript Developer - Nr ref. (05/49) Kraków Opis stanowiska Osoba zatrudniona na tym stanowisku stanie się częścią międzynarodowego zespołu pracującego nad tworzeniem i rozwojem oprogramowania oraz wdrażaniem nowych funkcjonalności. Dodatkowo będzie uczestniczyć w testowaniu aplikacji webowych. Wykorzystywane technologie: JavaScript, HTML5, CSS. Więcej informacji na temat oferty udzieli Joanna Kempińska: joanna.kempinska[at]infolet.pl Wymagania Min. 2 lata doświadczenia w technologii JavaScript Doświadczenie w technologiach: HTML5, CSS, GUI Znajomość Web Services Doświadczenie w metodologii Agile Bardzo dobra znajomość języka angielskiego Mile widziane Doświadczenie w technologiach: AngularJS, Node.js, ReactJS Znajomość NoSql DB Oferujemy Stabilne zatrudnienie Wynagrodzenie na poziomie do 8 500 PLN brutto przy umowie o pracę lub do 10 000 PLN na B2B Kartę Multisport Ubezpieczenie na życie Prywatną opiekę medyczną Szkolenia oraz kursy
  7. Senior Data & Analytics Solution Architect - Nr ref. (02/214) Kraków Job description Senior Data & Analytics Solution Architect will be collaborate in planning initiatives in strategy, system architecture, future roadmaps and support planning. Also will be work with business teams, technical analysts to understand business requirements and determine how to leverage technology to create solutions that satisfy the business requirements. The person on this position should present solutions to the business, project teams, and other stakeholders with the ability to speak technical and non-technical. He/She will create architecture and technical design documents to communicate solutions that will be implemented by the development team. Additionally will work with development, infrastructure, test, and production support teams to ensure proper implementation of solution or ability to assess the impact of new requirements on an existing suite of complex applications. Moreover candidate will educate organization on available, emerging toolsets and will drive the evolution of infrastructure, processes, products, and services by convincing decision makers. The person on this post should pay the attention to detail, time management, work prioritization, multi-tasking, estimate tasks, on-time deliverables, task delegation & follow-ups. Also will be a mentor team members on best practices in area of expertise and suggest training opportunities for immediate workgroup to help promote bench strength. Also should develop proofs-of-concept and prototypes to help illustrate approaches to technology and business problems. For more information or to apply, please contact Kinga Baran: kinga.baran[at]infolet.pl Requirements Experience in building Business Intelligence platforms in an enterprise environment. Minimum of 10 years enterprise IT application experience that includes at least 3 years of architecting strategic, scalable BI, Bigdata solutions with a minimum of 5 years of hands-on software development. Data integration (batch, micro-batches, real-time data streaming) across Hadoop, RDMSs, NoSQL (MongoDB, Hbase), columnar (Vertica) and data warehousing (Teradata) systems. Experience in a GUI based ingestion tool (for example Talend or DataStage or ODI). Hadoop security, data management and governance. Solid understanding of MapReduce and HDFS footprints. Extensive programming experience in Java. Security implementation and data management. Experience in Scrum Driven Development using frameworks. Ability to understand business requirements and building pragmatic/cost effective solutions using Agile project methodologies. Excellent problem solving and analytical skills. Strong verbal and written communications skills. Additional requirements Ability to collaborate with business users to understand requirements. Ability to work effectively across internal and external organizations. Executive speaking and presentation skills – white board, small and large group presentations. 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.
  8. JavaScript Developer - Nr ref. (05/49) Kraków Opis stanowiska Osoba zatrudniona na tym stanowisku stanie się częścią międzynarodowego zespołu pracującego nad tworzeniem i rozwojem oprogramowania oraz wdrażaniem nowych funkcjonalności. Dodatkowo będzie uczestniczyć w testowaniu aplikacji webowych. Wykorzystywane technologie: JavaScript, HTML5, CSS. Więcej informacji na temat oferty udzieli Joanna Kempińska: joanna.kempinska[at]infolet.pl Wymagania Min. 2 lata doświadczenia w technologii JavaScript Doświadczenie w technologiach: HTML5, CSS, GUI Znajomość Web Services Doświadczenie w metodologii Agile Bardzo dobra znajomość języka angielskiego Mile widziane Doświadczenie w technologiach: AngularJS, Node.js, ReactJS Znajomość NoSql DB Oferujemy Stabilne zatrudnienie Wynagrodzenie na poziomie do 8 500 PLN brutto przy umowie o pracę lub do 10 000 PLN na B2B Kartę Multisport Ubezpieczenie na życie Prywatną opiekę medyczną Szkolenia oraz kursy
×
×
  • Utwórz nowe...