written by KIM NOVAK
Wouldn’t it be great if all of the code we work with was written in a way that it’s completely clear what it does? And that we could easily make changes without breaking it? Sounds good, but it’s not that easy to do so. To get to that level we need to change our mindset a bit.
React apps grow very fast. The project gets more and more components, the codebase grows, and just when you think you are done with a component and forget about it, there are change requirements for it. You analyse the code of that component, try to understand what the author had in mind, even if the author is you, and you stumble upon a condition that you have no idea why the author put it there. You start trying to understand why that condition is there and which use-case can trigger that path and that takes some time. Could all of that be escaped? Yes, at least partially. As a React developer, with or without experience we encounter these situations on a daily basis. What can we do to improve code quality and make our components reusable and maintainable?
You can improve naming by analyzing how the libraries you use named and designed the API you are consuming. Sometimes we tend to use names that are too descriptive, and you (most likely) won’t see such cases in the libraries you use. When naming functions or variables I ask myself these questions:
useLayout({ useLayout({
columns, columns,
rows, → rows,
spacing spacing
}); }, [columns, spacing]);
We can borrow the idea from built-in React hooks and design our hooks in the same way. We can pass a list of dependencies to our custom hook as a separate parameter. This way, in one component we can have this hook triggered onMount only, while in the other component it can be triggered whenever column or rows data changes. Since we are passing the list of dependencies as a separate parameter the same way that built-in hooks do, it will be intuitive to React developers what our intention was.
The Component will be easier to maintain if the JSX part or the Presentational part of the component contains as little logic as possible. If we had the need to refactor or modify the component for some reason, we could do it a lot faster if most of the logic comes from non-JSX parts of the app.
If you have worked with Redux you’ve probably heard of the Selector pattern. This pattern lowers the amount of effort we have to put in when the data structure changes. A selector is a simple function that receives some data and returns only a (selected) piece of that data.
Data structures tend to change in the early days of development. When that happens, if we are using the selector instead of accessing the data directly in our components, we only have to make a single change. That change would be inside of the selector. If we didn’t use the selector we would have to make changes at each place the data was directly accessed.
What if we were to do something similar everywhere in our components?
If we don’t depend on the data structure or the source where that data came from, every change that occurs will be easy to implement. The goal is having to make changes in a single place only.
How can we achieve this?
We could write selectors and/or use object and array destructing. Note that this takes up more memory, but the code becomes easier to maintain.
You probably read that comments are bad and that code should be self-documenting. My opinion is that code can’t say everything. I have been in so many situations where I had no idea WHY the programmer wrote some piece of code. Not to be confused with WHAT the code does because that we can read and understand. What we cannot know is which use-cases the developer had in mind when the code was written. Maybe we will break something if we modify that code. There could be some business rules that cannot be explained with code or at least the person who wrote the code didn’t manage to do so. If the author of the code had left comments on why that piece of code is there, it would have saved our time. The problem with comments is that they usually aren’t maintained. People modify the code and not the comment. So the comment ends up having false statements. Thus, maintaining comments would be another tip. A stale comment could be worse than no comment if it misleads you.
When the component has more than a couple of hundred lines of code it gets harder to read (I prefer to keep it under 300 lines of code). More often than it happens in smaller components, the order of defining things gets easily messed up. It’s easier to maintain logical units when the component is fairly small. From my experience the bigger the component gets, the messier the code will become.
How can you ensure that your components stay small? By extracting! You can extract utility functions, custom hooks, new components, constants, type declarations and/or mock data to separate files.
Establish rules when it comes to organizing code. Make sure each directory and each file are organized the same way. Strive for consistency. Organized and consistent code will boost your performance because you won’t have to scroll through the whole file to find something, you will know exactly where to look first.
We can always apply these tips inside our React components and make them easier to maintain and reuse.
Using React to it's fullest potential is not an easy task, but Quantox React developers are up to the task. Their goal is to improve the code quality and make the components reusable and maintainable, and create strong React apps and solutions for our clients. Do you want to build a React app? Let's Talk!
written by N. Stevanović
Grid is a very useful CSS tool. It is a two-dimensional system for website layout organisation and it helps a lot to present and place elements on it. It can be compared to flexbox which is a one-dimensional system. The one-dimensional layout has elements in one row or column, and in a two-dimensional system elements have to be arranged in various columns or rows. Otherwise, both systems are better than the old ways of arranging layouts. The old way involved the use of float and in-line block options, within which the appearance of a website was often very uncertain. By using the Grid tool, you can solve layout problems and develop your website more efficiently.
In most cases, Grid is combined with a flexbox tool. This combination can improve the whole layout organisation through the website development process.
Example
This completes the initial creation of the container with the grid elements and you get a nicely planned layout of the site. As with flexbox, the way grid elements are arranged is not crucial because CSS itself allows their reallocation. This is why creating a mobile layout application is much easier, because, through just a few lines of code in CSS, a grid layout made for a desktop can be adapted to a mobile one.
Problems can occur if older versions of browsers that don’t support Grid are used. Fortunately, there is a Can I use website so that can be easily checked. Whether you are a beginner or an experienced programmer, you should carefully study the documentation before using this tool to avoid making any room for possible errors.
Quantox has the best way of implementing complex design layouts with CSS Grid. Masters of all trades, we know what to use and when to use it for incredible web development results that will promote and boost your business. No web design is to complicated for Quantox. Let's Talk!
As the title itself says, Ivan is a man with many talents. Besides coding, his passion is also fishing. He is a former amateur actor but also a painter, so when inspiration knocks on the door, it often means that his family will soon enjoy one more beautiful canvas.For the past 5 years, he has been part of our team in Čačak. In his opinion, colleagues would probably characterize him as a strenuous man, but just so you know - when we asked our designer to do graphics for Ivan’s interview, her instant reaction was - Đorđević? The best team lead ever :)Thank you for your commitment. We congratulate you and can not wait to spend many more years working with you.
Absolutely. It was much more relaxed compared to previous jobs.
A friend from college who I tried to overcome, but without success :)
I suppose a lot of things, especially because I am an introverted person.
Coffee.
Stubbornness always helps me to push till the end and not to give up even when it seems that I will not make it.
Probably as a ‘strenuous’ or ‘hard’ man.
Like most of us - with a cup of coffee.
Acting and writing were things that I did a long time ago, and they are part of the past. Nowadays, when I’m not in the best mood, painting is sometimes a choice. When partying with friends is on the menu, me singing on the mike is definitely part of the night (even though I’m not a good singer at all, but others think that is not true :))
Family, nature, fishing, a good movie.
Probably doing some work related to cybersecurity or working in a department of high-tech crime :)
Initial recruitment steps in a fast-growing IT industry can be really challenging. The range of technologies and activities that developers use is really wide, and every day we have additional frameworks or language that show up and promise to put PHP out of use and charm developers, at least temporarily. Our job, as IT recruiters, is to recognize, approach and show interest in a certain profile of the candidate (often in a short time). It is important that we know what the company needs in the first place and that we base our search on that. What makes this process a lot easier is a large number of widely available tools. This time our focus will be on the LinkedIn Premium feature of Smart Search.
Why Premium profile?
Although it increases the initial cost of the recruitment process, it is really helpful to overcome many challenges that this process has. Advanced search and suggestions supported by artificial intelligence are very useful. There is a possibility for the direct contact of candidates without the need for connection and if a larger team uses paid services there is a possibility of organizing and tracking candidates in one place. This way, paid services to facilitate coordination and efficiency.
Advanced search advantages
As with regular search, we use Boolean syntax during the advanced search because it makes it easier to search and target specific profiles. Quotation marks, parentheses, NOT, AND, and OR operators still have significant application.
For example, we will start with the maximum qualifications for the position itself, and use the NOT operator for systematic filtering and finally finish with the minimum qualification. Eg: A,B,C - desired qualification D,E - must have the qualification and finally F - implicitly desired qualification.
Beside Boolean, what else can be used?
Filters are something that a regular LinkedIn account doesn’t allow, at least not to the extent that is available within a Recruiter account. Filters are very useful in narrowing the criteria because we can target specific experience, skills, companies, schools/institutions, years of experience….
Example
We received a request for a new React position. It is stated that knowledge of JavaScript, React, Redux and MaterialUI is mandatory. It is desirable that the candidate knows and understands the Java language (because the Backend project was written in Java), and we want to target candidates from the Serbian market. Since the position is directed towards the medior level, we don’t want to go too much wide in our search, but to determine the years of experience in the industry. In that case, our filters will look something like this:
Advantages of LinkedIn Premium
LinkedIn Premium enables:
When not to use a Premium profile?
If it is available to you, there is no reason why not to use its filters and all other advantages. However, it is a totally independent question whether the scope and specificity of the position you aim to fill justify investing in Premium features.These are just examples of the possibilities offered by Boolean and Premium filters. We encourage you to experiment, add, subtract and modify search parameters. The result will be closer to what you need if you can define what you are looking for. Happy hunting! Igor S & Igor S
At the beginning of this year, we set out a new business venture. After expanding to the foreign market, we are opening another office, the jubilee tenth in a row.We have been advocates of IT decentralization for many years. By opening another office in Serbia, in Ćuprija, we prove that we adhere to our ideology and we continue the trend of developing the potential of young people in local communities.
Why Ćuprija? The reason is simple. Many years ago, an idea was born right there - an idea that would be realized a few years later and become Quantox Technology.With 15 years of experience and a team of over 300 employees, the developers from Ćuprija will have full support in their work and further progress.In the last few years, we have had cooperation with the Gymnasium in Ćuprija.
We reward the best students with scholarships, and we also contributed to the development of the IT department in that school.Students' interest in the new program is great, which is reflected in the growing number of those who attend the new course. That is why we decided to give knowledge as a gift to Ćurpija- we will organize an internship program so that all those who sailed into IT waters have the opportunity to upgrade, expand and learn everything they will need for independent work tomorrow. Our experts from all offices in Serbia will be in charge of implementing the practice in the best possible way.
We invite you to join us. Take the opportunity to improve your skills by working on huge and challenging projects.
As part of the Quantox team, you will also be able to take advantage of the benefits we have provided. Our offices are equipped with special care so that the work runs smoothly and we have many years of experience in mentoring.Do you want to do the job you love in your city, among friends and family? Information about open positions in our company you can find HERE!
We are waiting for you. Join us!
Live templates are predefined functionalities in almost all JetBrains IDE programs.
They are recommended if you want to increase your productivity by placing the code line that you would probably use the most into the Live template. It will save your time in further coding. Most people that are working in IT are looking for ways to cut time spent in development so they could do other stuff. Like working on some personal projects, or, in my case, playing darts with my colleagues. This is one example of achieving that.
My advice is, whenever you come across a block of code that most likely will be used occasionally in a short period of time, take a few minutes to add it inside Live templates in order to save time by calling it with a small change.
Even when you install PHPStorm, you can find some predefined templates which can be a good base for you to learn how to create a structure for new ones.
-Abbreviations (text that you will type in order to call the template)
-Description (description popup)
-Template text (template body)
-Context (the context in which the template applies)
-Edit variables (dynamic part of the template)
-Expand (button to call the template)
By typing template abbreviation that you`ve just created, you will get a popup with a suggestion.
The final look of block code would look like this.
If you are a beginner and want to go through the complete learning process step by step, then it would be better not to use this functionality. Later, when you need to be faster, use Live templates and save your time.
Using Live Templates is just one way how Quantox developers can expedite the software development process. We know how to use IDE programs to increase our productivity, while keeping the code readable, reusable and secure. If you need an IT solutions fast, we have ways of cutting the development process time. Let's Talk!
When we asked how his colleagues would describe him, the answer was simple - Liverpool. Besides being a huge and passionate fan of this club, Sladjan has been part of our team for 5 years, and our Joker - at the masquerade. :) He is working in our office in Čačak as a Backend programmer and he has a lot of experience and achieved results. Hanging and working with Sladjan is a great pleasure, we congratulate him for 5 fantastic years and say a well-known quote - With us, you’ll never walk alone!
Don’t be afraid and have more confidence in yourself.
Yes, I was extremely nervous.
I’m afraid of public speaking.
My family.
First New Year’s celebration with the company and getting know people in the right way :)
Rest. And some beer if the situation with covid allows.
Trying absinth. That green fairy is definitely not for everyone. :)
Bear prosciutto
Definitely some other job that involves working on a computer.
Today, you will see a valuable member of our team in front of you - Miloš. He has been training karate for many years, he loves chess, music, movies and besides all that, he says that his favorite hobby is work. He also participated in our conference and you can see his lecture here.
We did an interview with a guy who knows how to rule the chaos. Yes, we are thinking about the chaos caused by programming. 🙃He is 27 and he works in our Ukraine team. His name is Ivan and he is PHP addicted.
Damjan is a developer, animal lover, horse rider, MTB biker, scuba diver, tennis player (veterans league), and the pilot of ultralight planes. Besides all this, he is part of our fantastic Macedonian team for the past 9 months. Read more about him below, and watch his lecture at Quantox Virtual Conf here.
Petar is a passionate coffee lover and a master at preparing it. So it is with programming. He uses various technologies - Front End, Back End, DevOps. He loves hackathons - he was in the winning team twice. Peter also likes to participate in meetups and conferences, he is the organizer of NišJS meetup.Besides that, he was one of the organizers of our Quantox Virtual Conf and his lecture is available here.
Igor Stamenković comes from Niš. He is part of our HR team and works as a recruiter, and was also a lecturer at our recent conference. He says he has always wanted to be involved in programming and software development. His father was involved in programming and design too, so that love for computers was born at a very young age. He graduated from the high school "Bora Stanković" in the field of informatics, but he realized that it was not his calling and then he decided to enroll at the Faculty of Philosophy - Department of Psychology. His fields of interest are social psychology and learning theory. Quantox was the company that gave him the opportunity to unite his two loves.
„My feelings for work are mixed. I think that it is not emotionally difficult because working with people and the desire to contribute to their success is noble and that is what fulfills me. We, recruiters, are fighting for a better future for people because we give them the opportunity for a new, better job and at the same time for the benefit of the company and the general growth of the IT community in Serbia. But I must admit that it can be hard when the workload is increased.”
„As I mature, I think that cynicism and passive aggression are the hardest for me. When people are not honest in communication and conceal their motives and thoughts. This makes every conversation quite difficult, not only in the professional sphere.”
„I haven't had a chance yet and I hope it will stay that way in the future. Every job has ups and downs, so, sometimes I think I made a mistake but these are brief moments of reconsideration.”
„The truth is, I had prejudices. I thought that everyone had to be university educated and that they necessarily had to learn more about engineering, but as I became more and more involved in IT, I realized that it was not necessary.”
„Both because it is ideal to do tasks for both. It gives me the impression of how we function and on the other hand it brings dynamism to the business and prevents monotony.”
„It used to be remote but now it is not a benefit but a necessity. I liked the attitude of the company, that the health of the employees is in the first place, so with the first signs of the Covid19, the team was sent to work from home. In Nis, we were one of the first companies to decide to take that step.”
„Mixed but definitely positive. I really liked the idea as well as the range of topics. The lecturers were qualified and professional to talk about their topics.”
„Yes, I am. There are things I can improve but overall it was good. I wish I had a live audience.”
„I had experiences when I lectured to college students. I like to have performances and to address people.”
„Although I've watched almost all the lectures, I can't decide on one. Džavrić had a very nice lecture and I also liked Vojo's, which was concise and specific. Uroš explained everything thoroughly and impartially. Petar's lecture was also honest and interesting. They were all great and quality.”
This time, our interlocutor is Vojislav Branović. Vojo is 31 years old and lives in Čačak. He has been working at Quantox for almost 8 years and he has started as a content writer. Two years ago, he decided to study for QA and officially changed his position (and job) a year ago. In his free time, he plays basketball, likes hiking, and reading books.He was also part of our recently held Quantox Virtual Conf and you can see his lecture here.
“At one point in my career as a content writer in the BPO sector, I reached a level where there was no room for advancement and then I realized that I wanted and needed to learn something new in order to improve. and increase earnings, and the company met my needs.”
“It was not difficult, it was very interesting for me and I would do it again.”
“Mentor on the course I attended. I learned the rest myself, from the internet, and the material I got from school.”
“Learn something new every day because in that way you can advance in your career and avoid the monotony of working in the same job forever.”
“To understand what they want because they are generally not precise enough when setting tasks.”
“It's hard to say because things that happen spontaneously and remain as a fond memory for us might not be interesting or funny to others, but I'm happy that I work in a company where situations like that occur on a daily basis.”
“Yes, "Dark Tower" by Stephen King, "Kosingas" - Aleksandar Tesic, and "The Shack" - William P. Young”
“Friends.” 🙂
“Considering that I have never given a lecture before, I think that I was solid. I would love to do the same again.”
“I would be lying if I said that I was not, but I learned in sports to turn it into a positive stage fright that better affects my performance.”
Our colleague Uroš Anđelić from Belgrade took a few minutes and chatted with us. He revealed to us that he has been working as a programmer for 3 and a half years and that he is self-taught. He first learned Java and then PHP, Python, and JavaScript. He also shared his knowledge and experience on Quantox Virtual Conf, and anyone who hasn’t watched it can do so on our Youtube channel.
“I try to keep up with new technologies. At the moment, Node is interesting to me, I would like to learn GoLang as well.”
“I wanted to make Android apps so Java seemed like a good first and generic language. But by chance, I started doing backend with PHP and I stayed on it.”
“I would like to have my own start-up one day, and in order to be able to do that, I need to know how to do "everything". So, yeah, I do think in that direction.”
“The book “You don’t know JS” is one very handy source. There is no single author, but a group of professionals is constantly updating it in accordance with the development. It's free and available on GitHub.”
“You need to pay for a course and give money to learn to program. Plenty of quality content is available online and for free.”
“I bring the best experience from one short project. It was made from scratch and with the latest technologies like Laravel and React. It is in my opinion a kind of ideal project.”
“Laravel.”
“React.”
“Spaces but by pressing the tab.”
“I am. This was my first experience of this type, and I would definitely try again as a lecturer.”
Marko Manojlović is our colleague from Kragujevac. He has been living and working in Belgrade for 7 years, and he has been a part of the Quantox team for two years now. His love for programming is confirmed by the fact that he is a Full Stack programmer. He mostly uses JavaScript and React, but he is always willing to learn something new. Hence his interest in "Deno" and his desire to share his knowledge with us. You can watch his lecture at Quantox Virtual Confhere.
“No, I haven't. I find this job very demanding and challenging but it is equally exciting.”
“Marketing. (laughs) I worked in the previous company for 5 years and I was engaged not only in programming but also in organizational and leadership activities, after which I wanted to fully dedicate myself only to programming and further development of technical skills. Quantox made it possible for me.”
“Generally yes, but under different conditions. I need to be motivated by the job and it needs to fit in with the client's requirements. Also, to always follow new technologies and enter new areas such as AI and machine learning.”
“That they are not social types of people, ie that they are not inclined to socialize with people. And the other is that developers sit and code all the time. That is not true at all. Programming is only one part of the job and there is also planning, software design, and constant learning.”
“Business trips to Germany and Romania. Business trips are always interesting because we get to know the business culture of other countries and we also meet clients in person with whom we usually communicate online on a daily basis.”
“Flexible working hours. Quantox has shown that it can really work, especially at the time of the Covid19. I like the fact that I have the opportunity to organize my own working hours.”
“Currently Node.”
“Positive. I was surprised that so many people signed up. But of course, there is always room for improvement in terms of organization and tools.”
“I was giving a lecture at Quantox and I was also at an Oracle conference, so yeah, I had papers from before.”
“Of course. In general, I think it's great that the conference is organized because people are interested in online learning and podcasts. During the quarantine, people realized that there was quality content on online platforms.”
We are looking for an exchange of experience and ideas that improve the digital world and shape our future!
Gathering together Haufe experts and IT companies, partners, and clients, the Haufe X360 Summit takes place at the Kameha Grand Hotel in Bonn from the 29th to the 30th of March.
Lecturers from Haufe and Acumatica - the platform on which Haufe is based- will discuss planned system innovations and software improvements.
We are looking forward to hearing from great people, meeting other Haufe partners, and sharing experiences and ideas.
The Quantox Crew will be there!
You can meet our people and find out more about our services, advanced digital solutions, and models of cooperation. We are happy to have a chance to network with new potential clients and all new partners ahead!
Summit Agenda and more info can be found at the link
Petar Slović, Chief Innovation Officer @ Quantox Technology, will give a lecture at a workshop organized by DaFED at the Rectorate of the University of Novi Sad on March 1, starting at 6 p.m.
At Peter's workshop "Simplifying Full Stack Serverless Development with tRPC in NextJS" visitors will have the opportunity to learn how to use the power of the T3 stack and tRPC to create scalable full-stack serverless applications.
DaFED is a non-profit organization dedicated to creating educational workshops and networking events for designers, developers, and all tech and innovation enthusiasts.
Discover the benefits of using tRPC in NextJS and learn how tRPC can facilitate the creation of secure and efficient serverless APIs without burdensome infrastructure management.
The workshop is free, and you can find more information, registration, and a link to the live stream at https://dafed.org/
Are your software projects delayed due to a lack of developers?
Are you finding it hard to hire and retain good developers?
Are you trying to reduce costs and increase the flexibility to scale your project?
Are you looking for a partner you can trust?
Complete software development from scratch and all-round IT support services.
The Oitavos Hotel, Cascais/Lisbon, Portugal
Quantox Booth Location: MMT6
Schedule a Meeting
If you are looking for a man who will answer your questions about potential partnership opportunities, look no further. Alek is our CDO with solid skills in leading teams and running projects developed over the years. Do you have projects that need reinforcement, and engineering support or do you need a partner for brand-new software solutions? Talk to Alek and find out more.
He is your guy if you have a major project planned or ongoing but don't know quite yet how to ensure your software development is running smoothly. As our COO, with more than 15 years of experience in the IT industry, Dan can understand you and optimize your software development process.
A new milestone in the IT world! Building the future with strong partnerships!
Quantox Technology and Sandberg Capital have signed a partnership for the further expanding growth of the company, bringing it to a higher level! A €20 million investment is aimed at making a significant leap for Quantox’s future sustainable development, talent acquisition, and strategic global expansion.
Sandberg Capital is a Slovak private equity company established in 2014 with an AUM exceeding €340 million. It focuses on investments in small and medium businesses in the Slovak Republic and the region of Central and Eastern Europe, including among investors institutional ones, such as the European Investment Fund.
This partnership is one of the top 5 investments in the region so far, signed with companies from Serbia.
With Sandberg’s support, Quantox Technology plans to make successful breakthroughs in new markets, building even stronger client relationships with greater freedom and creativity in creating new software solutions.
“By entering into a partnership, we want to broaden our expertise and further strengthen our position as a leading IT employer in the region. Also, this investment will enable us to have a greater presence in the European and US markets, which will mean a lot to our clients by increasing the range of services in delivering high-end digital solutions and providing comprehensive IT support”
The company’s focus remains the same – discovering new perspectives and empowering the Q team. The partnership is an additional lift that will bring Quantox even closer to long-term growth, sustainability and stability.
“Given Sandberg’s multiple investments in the IT sector, we see an increasingly strong push for digitalization across the economy. At the same time, we perceive a severe shortage of IT professionals that may be preventing companies from growing and achieving their strategic goals. The investment in Quantox reflects our long-term strategy of partnering with ambitious entrepreneurs in sectors that directly or indirectly help with the digital transformation of the economy,”
Matej Klenovsky, Investment manager at Sandberg Capital, believes that Quantox and Sandberg share a similar growth mindset and have the same ambitions and perspectives for future achievements.
“Quantox, in addition to employing a large number of IT professionals and having a great ability to attract clients from various industries, is truly committed to the development of the local IT community. We believe that this company is more than ready for the next step and we are eager to follow them along the way, giving support through our experience, knowledge, and capital.“
Both partners will be focused on strengthening Quantox’s business – establishing a local presence, expanding the spectrum of services to respond to clients’ demands from all parts of the world, and improving internal processes and organizational structure.
“We are extremely grateful for the trust and support of our new partners – this is a kind of confirmation for everything we have done so far, as well as the opportunity to be even better and grow together. Following the shared vision for Quantox, we strive for global expansion and adoption of new knowledge, skills, and experiences while preserving the values and culture of the company itself”
With 16 years of experience, Quantox is recognized as a reliable partner in the world of digital technologies. After three successful acquisitions in the last year, this is an important step and kind of “wind at our back” that will lead us closer to our vision – to grow in expertise, nurture people as the priority value and become one of the most trusted and efficient partners in the digital world.
Quantox was advised by Grubišič & Partners – Corporate Finance as financial advisor and Four Legal as legal advisor and Sandberg Capital was advised by ESFA as financial advisor, EY as financial & tax due diligence advisors, and BDK Advokati as their legal support.
A new digital era is at our doorstep. By supporting clients worldwide and developing IT potential in our region – we continue making ideas and vision possible!
Proud to announce that our team has received another reinforcement! We are introducing Marko Nikolić – the New Head of Finance at Quantox.
With many years of experience in various senior positions and expertise in the financial sector, Marko brings a unique set of skills. He is highly creative, innovative, and well-versed in the latest financial trends and strategies.
His passion for finance and enthusiasm for achieving results and high goals make him the perfect person for this position at Quantox. With his expertise in the financial sector, Marko will bring fresh ideas that will help the company develop and grow even more.
My primary expectation is to grow professionally together with the company. The biggest challenge of working in a large company like Quantox is coordinating activities with many colleagues from several countries.
My experience is complementary to colleagues from the finance sector. I expect that it will contribute to the realization of new initiatives, such as, for example, the implementation of the new budget.
Quantox has a concrete and straightforward business model, and we should stick to it – “back to basics”!
This can be a competitive advantage in the current global financial trends and can be used in both cases – to expand in the markets where Quantox already operates and to win new ones.
In the Finance and Accounting sector, a sudden jump in the application of Business Intelligence tools for reporting to management and investors was noticeable in the previous years. As a result, CFO-s and their teams had to adapt and improve their reporting. Modern platforms and programs help them in these endeavors; technology is progressing and taking an important place, so constant adjustments are also needed in this sector.
I believe that the current global situation on the market is simultaneously the biggest risk – it can lead to a decrease in demand for our services – but also the biggest opportunity to expand into new markets under more favorable conditions than before.
I like to innovate, propose and create new things, and constantly look for ways to improve and upgrade that creation.
Quantox is dedicated toward providing organizations with a solution for system monitoring and management that will help dispose of the break-fix approach. As a managed IT services provider, we aim to simplify IT management for other companies efficiently and affordably.
Dušan Milojević has the expertise and experience to make Quantox a leading managed IT services vendor in Europe, implement new IT technologies and build worldwide-applicable solutions with his team.
I started from the university and Microsoft Academy, and then went through the positions of Consultant, Developer and Analyst. Right now my official role means leading three different teams for the implementation of various products. The biggest challenge for me to get the company as a leading vendor for managed services as Quantox is for custom development.
The goals of the managed IT services department are to accumulate as much expertise and projects from various vendors like Microsoft, Salesforce, even IBM, and Oracle. The people in our department and their work are very strongly connected, no matter which team they depend on.
In the future, Quantox will expand its business areas and build solutions that can be implemented worldwide. So, the power this department gives to the company is being able to cover all needs that come from one customer. Custom development and managed services have a great tendency to work well together and bring new opportunities to each other.
I’m thrilled to be a part of Quantox. At the moment, I’m still trying to get all procedures lined up and getting to know the on-boarding team members while working with other colleagues on our first potential projects.
Companies in some sectors, like Fintech and Telco, use more than fifty systems in their daily business. All of those need to be integrated into one place, and that’s where we come in – we can fully cover all these processes with our team. Having a corporation as a client is a great opportunity that can lead us to long-term partnerships.
Of course, we need to follow all new approaches and technologies. From the last conference in Munich, I’ve realized that we can integrate PowerApp with Business Central as an app that can be the solution for warehouse management with fewer costs instead of building the app by itself from scratch. We also plan to get RPA (robot process automation) part of the integration team and start working with machine learning. Quantox’s managed service department is pretty good at keeping up with the latest technology trends.
The most interesting things about working in Managed Services will be the projects and the possibility of having a proven team working for one of the biggest customers in their branches globally. However, the biggest challenge will be to put Quantox on the managed services market for this part of Europe which is our goal for the next two years.
What drives me forward is having new opportunities on a daily level – new employees, technologies, countries, projects, and approaches. I also firmly believe that people can improve their skills only if they step out of their comfort zone, which is what my team and I are doing right now.
Having ideas is great - getting know-how is a step to another level!
QLab Accelerator aim is to support fresh ideas, build strong teams and make innovative startups possible. And we are starting from our own house!
Quantox launched an internal call for Quantox people with the most promising start-up ideas with a goal to support it and transform it into marketable digital solutions.
From professional guidance and mentoring support, specialized business & start-up knowledge, through networking and funding opportunities - QLab is designed to give major support during the idea development from scratch.
By joining the contest and submitting their ideas, our people have a chance to get an opportunity for a 3 months educational program this summer, specially designed to turn their brainchild into a successful product, and get a chance for funding.
The most promising concepts and teams will be chosen for the program to gain essential business, expert, technical knowledge, and guidance from experienced mentors from all core fields, needed to kick off their start-up idea. Furthermore, the best idea on the final pitch will get a grant of 10.000 EUR to provide a smooth start and push for further development.
Lead by the mission to be a generator of internal knowledge, skills, and ideas to create value and make a leap in the digitalization era, and create an environment that encourages quality and innovative approaches to digital challenges, Quantox decided to start QLab Accelerator as an innovative tech nest for all those who aim to go further.
It is possible to turn ideas into reality with proper support and experienced people behind you. We believe in the ideas and knowledge that make a difference!
We truly believe in the potential of this program to discover remarkable solutions from our people and we are thrilled about the possibility to expand it beyond the internal hub in the future.
It’s not just about ideas.
It’s about MAKING IDEAS HAPPEN!
Dare to innovate, we are here to support you!
Expectations of Frontend developer have significantly increased in past years, and the main reasons for that is a bigger power of browsers as well as the appearance of holistic Frontend frameworks and various kinds of tools that raise the scale of opportunities to the one much higher level. A good Frontend programmer today is not somebody who knows how to create a navigation menu and popup dialogs, but it is a person that is expected to have a diverse skill set - in demands are logic and creativity, precision and flexibility.So, what are the skills that one good frontend developer should have? What follows is a list of 20 useful tools that can help you to upgrade your existing skill set
The development and use of smartphones in everyday life have led to the fact that almost all websites have more visits via mobile devices than over PCs. Therefore, it has never been more important to develop a web application in an away to provide an excellent user experience on the screen of all sizes and shapes. In this respect, media queries could help us a lot to adjust different styles depending on the type of screen.
Using these two layout systems significantly improves the quality of HTML code writing, saves us unnecessary duplication of elements (for each type/screen width) and contributes to the flexibility of styling the application. If this seems too complicated, there are also frameworks that make it easy to set up a grid layout, and the most popular among them is Bootstrap.
The utilization of standard CSS to stylize applications requires a lot of repetition in writing, which is one of the bad practices in general in programming. If you, at the end of the project, decide that you don't want the main color of the theme to be blue, but for example, green, you will have to go through the entire code manually and make changes. And as soon as you do something manually, it's not good either from the aspect of speed or from the aspect of avoiding mistakes. This problem is solved by CSS preprocessors (SASS, LESS ...) which broadly extend the functionality of standard CSS.
An easy and powerful way to impress visitors on your page is by using animations. CSS offers many possibilities for this - you can choose when, how, how often and with how long delay a certain animation is to take place. It is important to note that only some CSS properties are animatable.
jQuery is a very popular and potent JavaScript library that allows easy manipulation of DOM elements. It owes its popularity to the fact that the syntax itself is much more readable than classic JavaScript, so it will also suit beginners.
JavaScript is a language whose basics are easy to learn, but by deeper learning, its complexity grows. In order to become attractive to a larger developers community, it was created to "forgive" small mistakes, and his leniency just leads to a misunderstanding of the essence of the code. Therefore, in order to understand why something in the JS does not work as expected, we need to understand its true foundations.
Databases are not the prime Frontend developer area per se, but there is an exception, which is when certain data should be stored in the user's own browser. Why would there be a need for that tools? Let's say that, from the aspect of user experience, it is good that he does not have every time he visits our website to type in the username and password, but it only needs to be done for the first time, after which the data is stored in its storage, to which only the user can access. Here you need to distinguish three popular storage types: localStorage, sessionStorage, and the cookies.
One of the key advantages of modern browsers is that they have built-in debuggers that help us detect errors in our code by allowing us to pass through our JS code a step-by-step while creating breakpoints on the lines where we suspect we made a mistake.
Frameworks are tools that entirely alter the way our code works. Their goal is to simplify and upgrade JavaScript functionality, often by replacing the complete code structure and writing design. There is a large number of JS frameworks that compete with each other for dominance in the JS world, releasing periodically new and more powerful upgrades. The most popular among them are React, Angular, and VueJS.
Asynchronous programming represents tools which allow web applications to remain responsive even when multiple tasks are processed simultaneously. Events related to user interaction, such as filter search or mouse click, occur regardless of the standard flow of the application. Therefore, the application waits for user action and then reacts depending on it. Various techniques (promises, observables, callbacks) support the process of asynchronous programming.
NodeJS is a modern platform that allows you to use JavaScript on the server. Yes, it is now possible to make a complete application using JavaScript only. In fact, on the market, there are complete stacks based on JavaScript as a programming language and JSON as a data storage format, such as MEAN(mongo + express + angular + node) and MERN (mongo + express + react + node). The popularity of the NodeJS is on the upward path so you will not be wrong if you start reading NodeJS documentation right now.
Is it really necessary to lose a few hours for, say, making a calendar for selecting a date, when simple, ready-made solutions and tools exist on the web, that is free and can be used in a few minutes? It's exactly where that package manager such as npm, bower or yarn, enters the scene, with their simple commands to import someone else's code from the Internet. Of course, you should always take care of the correctness and security of the entered code, but certainly, this type of help is well-suited in certain situations.
Good communication and planning significantly affect the quality of every business, and the development of web applications is not the exception. To make sure that we understand the client's requirements (or even our personal requirements), it is advisable to make a wireframe (prototype) before the start of the code writing, where the basic app structure will be displayed with emphasis on the functionality and users' needs. Creating these drawings is easier with the use of one of the many tools available on the web (Axure, UXPin ...). Although the UX design does not strictly apply to the frontend, there are situations where a client expects his developer to know the basics.
When we finish with wireframes and app structure, we can move to the aesthetic appearance of the application - the user interface. This design area is much more familiar to the frontend developer than the previous one, but it does not mean it is less demanding and that it requires less effort to learn the basics. UI design is a step before coding, a setup of a complete visual appearance of the future application, and it could be made by using some of the software tools that enable it (Adobe Photoshop, Sketch, GIMP ...).
For a good design you should have idea and inspiration, but in addition, it is necessary to know certain rules. What is the meaning of certain colors, how colors interact with each other, the use of lines of different shapes and thicknesses, the use of empty (negative) space, typography, symmetry and asymmetry, and the harmony of the parts are just some of the things that you must be aware of if you want to be successful in graphic design.
Icons are more important part of the application than it maybe seems. Apart from being good looking, they also have functional advantages. They take less space than text, so there is more room left for other things. And if you have visited a site in a foreign language, the icon can help a lot in understanding what is behind the link. For the correct use of images, you should know the advantages and disadvantages of certain formats (jpg, png, gif, svg...), as well as the rules of optimization.
Numerous tools exist for the purpose of code versioning, but often the first association for most developers is GIT. Whether you work alone or in a team, it's important that you keep your code on one of the software specializing in code versioning and that you have an insight into the changes that occur over time. Another significant advantage of GIT is the ability to branch code in order to make the building of the specific functionality isolated until it is finished when it can be returned to the master branch.
REST is an architecture that has become the standard for communication between client and server. The basis of REST is the use of HTTP protocols and its standardized operations (GET, PUT, POST, DELETE ...) that allow data exchange. Another standard in this area concerns the format in which a particular data is sent from one side to another - JSON.
One of the main coding standards is, regardless of the field of speech, the writing of the code in English. This is important because all programming terms are in English, most tutorials, documentation and video materials are in English, and after all, if the client does not have the same native language as you, it is expected that you will communicate in English. Therefore, if you are a programmer, there is no reason not to start learning it immediately.
Although it is advised for all beginners in programming to use Notepad to learn the basics of programming without using shortcuts, it is absolutely necessary to use more advanced editor for serious projects, which does not only allow faster and more transparent code writing, but also checks for frequent syntax errors, offers the ability to complement the code depending on programming language used, offers element definition, helps to debug the code, and has an integrated versioning control. At the moment, the most popular frontend editors on the market are VS Code, WebStorm, Atom and Sublime Text.
With +500 developers Quantox is known for having some of the best front-end developers in the region. With a goal to share our knowledge and teach developers a proper approach to the technologies used in front-end, Quantox is often holding meet-ups, lectures and courses and presenting the knowledge that allows us to build effective and efficient IT solutions. Do you need a front-end developer to create an amazing digital product for you? Let's Talk!
Have you ever had a feeling that you are the victim of discrimination? In your workplace, among your friends, even in your own home? Unfortunately, discrimination has deep roots in every aspect of today's people and we are not even aware of that fact! When we are speaking of discrimination, we can tell that women are more often its victims than men, right? Our colleague Ivana will give you a little deeper insight into this topic, and what she thinks about all this, read below:"In many ways, we can be victims of prejudice.One way is when we are personally victims of discrimination. The other is when we have some prejudices that limit us. For example, we believe that there are certain conditions or exact steps for reaching happiness, and if we do not fit into that picture, we refuse to be happy. There is also a third way that prejudices are impacting our lives, which is when we look at people who have prejudices, as well as those who are discriminated against, and we are sorry that people are not able to take everything that is good and nice from life to enjoy and use it to its maximum!
The phrase "Woman Programmer - not a woman, nor a programmer." was spoken by an educated man.This suggests that even educated people can be the victims of prejudice. I think it is careless to say who is a better programmer, because someone may have speed, other, knowledge of the field, third, a persistence, and fourth may better understand the needs of the client ... And everyone can be "better" in different situations. And it is absolutely unnecessary to spread the story to the sexes, because there is no point, and it is individual.
Among engineers, there are significantly fewer women than men, which is a consequence of our nature, but also of our upbringing. I personally know few women who, according to their programming skills, can stand side by side with the best male programmers, while also being feminine and beautiful, and some also cook perfectly. I add this about beauty and cooking, not because I think that this is something that makes a woman a woman, but because I believe that’s what the quote above alluded to. But it is true that there are some differences in quality brought about by each side, in programming, and in relationships with people, which, again, should not be generalized. Everything, of course, is individual.
My observations are that, even among developers, men appear more confident in themselves. I deliberately say "appear" because I know that we are being confronted by the same doubts, but we deal with them differently. Let's say, when we get a problem which we have not met with before and we do not know if we will solve the problem within the timeframe, it is more likely that a man will say that he knows how to solve the problem (even he doesn’t), while the woman will openly convey her doubts to the superior.
Also, if there is a barrier to solving a problem, a man will ask for assistance freely, while the woman will try once, possibly twice, and if someone is prevented from helping her at that moment, she will no longer try, as to not be a nuisance. (At least no one can say that we weren’t raised right...)I also noticed that men are more focused on the amount of work they do during a working day, while women want to make sure that the job is well done, and to pay enough attention to the details. The entire process is essential to women, including the needs of the client, the needs of colleagues ... They try to give everyone their best, if possible. Empathy is not our weakness, but it’s what gives quality to our work.
As I have already said, I believe that these differences are the result of different education and not a difference in our abilities. Both male and female programmers can equally write a good code, and there is no room for prejudice. I would love to see the desertion of these rules of what makes the woman a woman, and the man a man because it would make it easier for everyone. And I look forward to meeting every new female colleague, welcome!
Even though we can not see it with our bare eyes, we live in the time of yet another revolution, and this one is more advanced than all the others in the long history of mankind. Of course, we are talking about a technological revolution which has begun in the previous century and which never ceases to amaze us with its progress. The most important thing about this revolution it that it affects us all! But, how much the technology and new trends will affect and change our life, depends just on ourselves. Man as an intelligent being has a power of decision, freedom, and thinking, and with these powers, man can choose a way he will use a new technology. It can be a good and bad purpose, which can help him improve himself or go to the extreme of which is very hard to return - it is all a part of man's habits, lust, desire, and motivation.But, every sane person aims to use all of the new technologies for good purposes, in order to help him improve, and be a better version of himself. So, check out which new technologies will be a significant thing in every day's routine.
The main purpose of these body sensors is health. We, as a mankind, are slowly approaching the age when we will all have a real-time information about our body. Scientists are doing their best to make things so small that they can fit anywhere in our body. Because of their effort, in a certain time, we'll be able to have one rounded unity of information considering our body and health, which will be recorded and available for ourselves and the doctors. Even now, we have watches and bracelets which can measure our pulse, heart bit rate, distance covered, and which can actually give us the tips in order to keep us well-shaped. There are many applications, connected with these gadgets which give us the wider picture of what we need to do and what we need to eat in order to say healthy.Now, imagine the future, and how easy the tracking of our complicated mechanism will be, when one micro or nano-robot will be able to collect all the data, from our blood test results, blood pressure, to amount of bacteria or virus appearances. Imagine how much this will make everything easier: you won't have to go to doctors, and wait for a long time just to get these results. This is a simple example of how technology can make our life easier, but, on the other hand, some people say that we are getting lazy because of such an advanced technology. It all depends on how you look at this topic! I think that technology makes our life easier and helps us achieve our main goal - our progress.
Let's take biohacking for example - it represents a desire to become a better version of yourself! What we put into ourselves, what we eat or drink, has an enormous impact on how we feel. Things we put into our belly such as all kinds of food or music we listen to are all the relevant factors of our biology. Biohackers are just using devices to measure these inputs and outputs in order to improve their health.Also, imagine that you can see in the dark (have some sort of night vision) in your lens, or know where the North is, or how to install a sonar, feel something is radioactive in your surroundings... The possibilities are literally limitless.
The future in which the car will be completely automatized, smart, which will make our life easier and which will allow us to work on ourselves while we are traveling (watch a movie, read a book, or simply take a rest) is on our doorsteps. The car that can take your child from the school by itself, the car that will save lives, that's what we need! Now, let's connect health sensors with this smart car, shall we?! With the interaction between these two technological wonders, your car will be able to notice if you're feeling sleepy so it will play some gentle music, or it can notice that you're not feeling well, so it will take you to the nearest hospital, or notice that you're hungry and take you to the best restaurants...
Can you imagine the world without cables? With the energy that circles everywhere? Electricity and power supply which will be controlled wireless and won't be dangerous for living beings. Wireless charging has already made its first steps, small but pretty significant. In the future, we will be able to connect all the smart devices, everything that has a battery, and to charge them via wireless, with no need for cable. The wireless charging will be available, just like the phones are able to transfer files and receive the signal via wireless.
Having drones which can be programmed to serve as a delivery unit, to be able to monitor using the camera, is already here! But, having a drone which will record things in nature, for example, each tree, so we can easily see if the forest is illegally cut, or drone which will collect information in different part of atmosphere and which will allow us to better understand the weather, which will report if the percentage of pollution is above normal, is something else! All this will be available in the following decades and it will help us to understand our planet and its nature better, on a whole another level.
Some of these things may not happen soon, but we will be the witnesses of their beginnings. Moreover, Quantox is dedicating to being a part of the technological progress by constantly innovating and creating IT solutions one step closer to the future. Your innovation idea can become a reality with us. Let's Talk!
During the previous year, we have organized several meet ups where we gave our best to offer the most quality information and to share the most valuable knowledge with all the interested people. In the time to come, these meetups and lectures will be available on our youtube channel so the all of you who have seen them live will have the opportunity to refresh your memory and the rest of you will have a chance to learn something new.A great lecture by PHP programmer Milan Popovic was just a first in a row, and he has spoken on a topic titled "Good code is worth a fortune". In these 45 minutes, he has pointed out the examples where the most of the programmers make mistakes, but you can also see the examples and references which will help you improve your code and make your job easier on a daily basis. This lecture is intended for less-experienced programmers but it constitutes a very good basis for all those striving to become excellent developers.https://www.youtube.com/watch?v=SZJuxtwwFHA&t=438s
Over the years, I have learned that the best way of predicting the future is to observe and follow the people who are creating it! Future is now interweaved into code and science, IT and robotics, IT trends of things of nano and others pretty small sizes, but large enough to make people's life easier.
We've talked a lot about this topic, right, so, what is AI?
AI is the ability of a computer to act like a human being. We can divide understanding of artificial intelligence into two parts, where the first part about strong and weak AI and for the second part example is from Arend Hintze.
First part - We have a weak AI design for the specific task, like Apple Siri or Google Assistant, while stronger AI represents a general intelligence or the ability that machine has a conscience like a human being
Second part - Arend Hintze, an assistant professor of integrative biology and computer science and engineering at Michigan State University has categorized AI into four types, from AI systems that exist today to sentient systems, which do not yet exist. His categories are as follows:
Type 1: Reactive machines. An example is Deep Blue, the IBM chess program that beat Garry Kasparov in the 90's. Deep Blue can identify pieces on the chess board and can also make predictions, but it has no memory and cannot use past experiences to make the future ones. In simple words, this machine analyzes possible moves.
Type 2: Limited memory. These AI systems can use past experiences to make future decisions. Some of the decision - making functions in autonomous vehicles have been designed this way.
Type 3: Theory of mind. This is a psychology term. It refers to the understanding that others have their own beliefs, desires, and intentions that impact the decisions they make. This kind of AI does not yet exist.
Type 4: Self-awareness. In this category, AI systems have a sense of themselves, have consciousness. Machines with self-awareness understand their current state and can use the information to infer what others are feeling. This type of AI also doesn't exist yet.
Today, the artificial intelligence is most commonly used in video games, where the computer is made to act as another player, and of course, we are talking about the weak type of AI. We can find AI in healthcare - best-known healthcare technologies is IBM Watson. AI also finds its purpose in business: machine learning algorithms are being integrated into analytics and CRM platforms to uncover information on how to better serve the customers. AI in education can assess students and adapt to their needs, helping them work at their own pace.
Manufacturing is another field where AI is widely used -this is an area that has been at the forefront of incorporating robots into the workflow. Industrial robots were used to perform single tasks and were separated from human workers, but as the technology advanced that changed.
In the years, decades to come, AI will definitely become smarter, faster, more fluid and human-like thanks to the inevitable rise of quantum computing. In the future, not so far away, quantum computers will be able to solve all of life's most complex problems and mysteries regarding the environment, aging, disease, war, poverty, famine, the origins of the universe and deep-space exploration...
Virtual reality (VR) is a computer-generated scenario that simulates a realistic experience. According to the American Heritage Dictionary, virtual means "existing or resulting in essence or effect though not in actual fact, form or name". Therefore, virtual reality is best described as an illusion of reality created by a computer system.
So, let's talk about where virtual reality is used today? Here are a list and short descriptions, so we can all get a little bit deeper into this topic.
5G is a type of wireless technology that you may have heard about in recent headlines - Verizon selecting Samsung as the provider for its 5G commercial launch and similar.
One reason why it's such a big deal is that it will result in higher wireless speeds, capacities, and lower latency - which generally means that there will be far fewer delays or "technical hesitancies" in some of the things it powers, like wireless VR or autonomous vehicles.
That benefit is two-fold. It doesn't only enrich a user experience when it comes to something like AR or VR by providing higher data rates, but its also practical when it comes to safety - which is the part where the latency piece comes in.
During the presentation, the example of a two-hour movie download was used. On a 3G network, for example, that would take 26 hours. On 4G, it would be lowered to six minutes. But on 5G, it's lowered to 3.6 seconds.
Quantox is dedicated to following the latest technology landscape, not just from an IT perspective but also from a perspective of a leader in the industry. By looking at IT trends from a very angle, to our clients we can offer IT solutions and expertise, but also our business knowledge to help them benchmark their organization and reshape their IT strategy. Are you an IT expert looking for a partner or a tech-curious businessperson wanting to understand all that buzz around the latest IT trends? Let's Talk!
Content providers have to move where the audience is.When traffic moved from over the air television and radio audiences with rabbit ear antennas to cable television and proprietary satellite systems many businesses were suddenly faced with a slew of corporate regulations governing what kinds of content they could produce, and turning those walled garden systems into powerful gateways that could dictate the direction studios needed to go in if they wanted to reach a mass market. In the last few years, that paradigm is shifting as an ever-increasing number of customers cuts their cords and decides to self-determine exactly the kind of content they want to consume.
Studies are showing that the percentage of US adults in 2015 who have never subscribed to cable or satellite TV will reach 12.9%
A recent study by DigitalSmiths showed that in 2014 roughly 8.2% of pay-TV subscribers had ditched their services to become early adopters of smart TV apps, set-top boxes, and the web to television services. According to Nielsen, there were 116.4 million homes in the US expected to watch TV during the 2015-16 season, which works out to be about 9.5 million of those homes converting. That number is validated by a study done by Statista regarding Pay-TV subscribers in 2016 that estimated that there would only be 96.4 million Pay-TV households left by 2019. eMarketer went even further and concluded that in 2015 4.9 million US households will cut the cord, a spike in ratios that is almost 11% more than last year. Perhaps even more importantly, studies are showing that the percentage of US adults in 2015 who have never subscribed to cable or satellite TV will reach 12.9% as Millennials leading the shift and have become the largest demographic globally.
What does all this mean to a commercial business creating or marketing digital content?There are now a massive amount of people who were previously inaccessible, seeking the kind of content you create – but many are likely using services to access content that your company is not yet connected to for whatever reason.When you are ready to increase your reach, expand the platforms your content can be access from and want to do it in the most efficient way possible, contact Quantox and our experts in cord cutting conversions can assist you as your company joins the next generation of distributors in new media channels many aren’t even monetizing yet!
Here at Quantox, we had a few different iterations of our logo before we settled on the one we have right now. Our final logo portrays everything about us that we want you to know. It says that we are a forward-thinking, tech-savvy and well-organized company. What you may not know about many logos is that there is a hidden message in it. The upper two portions of the “Q” actually represent the brackets that programmers use when coding in HTML and PHP. We modified them to fit the idea and added the details to make it recognizable as the letter Q. Of course, coming up with a logo idea is a process that takes a little while, and requires the input of quite a few people, however, once you find the one that you know represents exactly what you are looking for, you will know it.
We created a video in order to closely illustrate the inspiration for our logo and we want to share it with everyone. This also gives you an idea of the type of ingenious thinking that could go into our collaboration when you go with us for your branding and consulting needs. We have over 100 people working with us who have different expertise in software and web development who can give you a unique and interesting perspective. This video about the origins of our logo gives you an idea of just how easy it is for our teams to get creative together, and come up with the best possible ideas for you and your brand!
[embed]https://www.youtube.com/watch?v=QBzRhAouh74[/embed]
We’re a full-service web development and information company who can bring the future right to your website and web presence. Nowadays, your web presence is everything and it is almost always the first way a potential client will interact with your brand. Don’t you want it to be completely perfect and creative? You can trust us to make your vision a reality so your company’s forward facing look is exactly as you want it. Let's Talk!
There are some myths floating around about hiring remote workers to get any type of job done. With the internet the way it is today, you don’t need to have someone in your office to get work done. They can be anywhere all across the globe, as long as they have a good wireless connection. Some people don’t like this idea and these "Negative Nancys" have started to spread rumors about the reasons why people shouldn’t outsource web work, but the truth is, those myths and rumors are simply false.First of all, many people believe that when the cat’s away the mice will play - a proverb which means that if the boss isn’t overseeing everything, the employees will not be productive. However, a study by the Harvard Business Review showed that remote employees were actually more products - by 13.5% to be exact. The truth is that when people have the freedom to eat lunch whenever they want, take a break to enjoy the sunshine for a little while in the afternoon, and work when they feel most productive, they get a lot more done because they are happier. Plus, with remote workers, there’s no pesky office gossip and water cooler time to distract!
Other people worry a lot about communication with remote workers. Either they fear that they will be out of contact, or that something gets lost in the fray when you don’t have that workplace friendship with someone. However, there are so many online communication methods that it’s not a problem. There are contained networks like Slack which allow remote workers to connect to anything they want, and of course, video conferencing is much easier than it used to be, not to mention the countless instant messaging services that make it so easy to send off a message to someone in a second.Finally, the last fear that many have about working with someone who is not on site is that their data will not be secure. However, any good company will have measures in place to protect the security of data. There are many services that can be used to encrypt data as it is being sent along, and even more, ways to ensure that only the correct person is accessing the data you want to share.Hiring a remote worker for your web services makes sense. It’s secure, easy and can save you money, so contact us today to see what we can do for you.
Depending on how old you are, you may think that the year 2017 sounds pretty futuristic, even though that’s where we are right now. The web development trends for this time period do seem like something that even just 10 years ago would have been just a pipe dream or perhaps even something you might see on a science fiction television show. Watch out for these trends, and ask us how we can help you make these a reality for your business.
The 360-degree video is revolutionizing certain industries. It’s applicable to education, where students can really see what a particular environment is like without having to visit it. They can see a full view of the rain forest or outer space for much cheaper than a trip in a rocket ship! It’s also doing great things for the real estate industry. Realtors can save a lot of time by showing potential clients 360-degree videos of a space before visiting it to make sure it will be something they are interested in.
Virtual reality takes the idea of a 360-degree video one step further. There have been some amazing headset devices released onto the market in the past year, and different industries are exploring how virtual reality can best benefit them. Of course, video games and adult video are the things that people have been focusing on the most, but a virtual reality video advertisement to give potential clients an immersive experience can put you a cut above the rest.
When you think of AI you might think of robots that take over the world or something like that, but AI is really a lot more simple than that right now. Even many search engine algorithms are already using artificial intelligence to help determine what a person means when they type in a particular query. In addition, digital assistants are assisted greatly by AI, and all of the big tech companies are doing some heavy research into this field.
Any web development trend for 2017 is worth your time and you should not be hesitant to put them in practice as soon as possible. Ensure your software stays up to date with the latest trends with Quantox a company that always works with the latest technologies and solutions. Let's Talk and discuss how to upgrade your digital product.
If you own a business or even if you just have a hobby, chances are that you have some kind of website. Whether or not you are a tech guru or just someone who needs to have a web presence, there are some terms relating to web development that just about everyone should know. This will allow you to communicate your needs to the team who is going to be working with you and will make you feel comfortable doing so.
A CMS or content management system is also sometimes called the “back end” of a site. This is where you can input blog posts, products, and updates to your site yourself. Most backends aim to be user-friendly so that even the most Luddite among us can use them to update the site. There are “out of the box” CMS’, but it’s always much better and more convenient to have us build you a custom one that can be exactly what you want.
You know that little square icon that shows up in your browser tab that lets you know which website you are on? That is called a favicon. It’s an aspect of a site that is pretty important even though it is so tiny! Make sure your favicon represents your brand, and that resembles your logo but isn’t so detailed that people can’t figure out what it is.
A responsive website design is one that will automatically detect what device or screen size a person is using and adjust itself accordingly. This is the best type of design because these days there are so many different devices like tablets and smartphones that people can be used to access the internet - and they all have different screens! It used to be that you would have to make a full mobile site version, but with responsive design, you can get an all in one package.
Most people will probably find your company through a search engine, and that is why SEO is so important. It used to be that only the content mattered on your site for SEO, but now there are many factors involved including how simply your site is to use and how secure it is too. Make sure you take these factors into consideration!
Whether it's responsive design, or having a fast website that follows all SEO website building guidelines, Quantox is known for exceptional web development your can leverage for your business. With our UI/UX design and a clean code, we ensure top-notch user experience and performance that will rank your business high in search results. You need a website for your business? Let's Talk!
When creating a website for a company, many people go with out of the box solutions that are made by large entities like Wordpress or Wix. While these systems are excellent because they allow just about anyone to create their own website with minimal knowledge of coding, if you’re a company of a certain caliber, or want to have full control over your website, you really should have your own custom CMS, which is another word for back end of the site.This way you have full ownership of the back end, and whether or not things are working isn’t dependent on a company feeding you updates and comparable apps that function well only some of the time. Our PHP programmers can make this a reality for you. We’ve got a great team of people who are experts in this field, who can easily make pretty much anything you want on your website using PHP.
This is especially relevant for those who are selling specific things online. Do you need to have certain fields available for specific information that you want to customize and make it easy to input? Or maybe you simply want your website to be easily exactly the way you want. You shouldn’t have to compromise and that’s where PHP comes in. We can make you anything you want and do a custom job for you and your website. There’s a lot of possibilities, so the only limit is your imagination and what you have been envisioning for your site. Using PHP as the framework of a website makes things more flexible and it’s a great idea, so contact us to get started on the PHP project you’ve been dreaming about.
Find out what the talk is all about and talk to one of our consultants today about the web services you need. Quantox PHP developers are the rare combination of affordable and fast with high-quality output that will impress both you and your users. With expertise in many fields, you can only go right with us! Let's Talk!
Nowadays, if you want to be a successful company, the most important thing you must achieve is to please your clients the best possible way! If you do that, the word will spread and in a blink of an eye your company's name will become pretty famous. It is not important what kind of job you are working, it is important how you do your job! Ok, this is a sentence which many writers, bloggers and all other related will gladly have on their posts if they are writing about their companies. But, is this really true? Let's think a bit, shall we? Ok, it IS really important to make your clients satisfied and pleased with your service, but, maybe, just maybe, there is one more important thing. Can't remember? Let me help you! Your employees! In order to make your client satisfied, the first thing you need to do is to make your employees happy and satisfied in all kinds of ways! This is not such a common sight, but, not all the companies are successful, right?
We are happy to announce that our company policy is pointed in this direction and that we are doing all we can to provide the best possible conditions for our employees! That's why we have so many team gatherings, Happy Fridays, funny games in the office and so much more... But, we are most proud of our Teambuildings! Yeah, once again, Quantox Team has been sent to a beautiful place for 3 days and we all had such a great time! Teambuilding is more than just a free day you know! It's a golden opportunity for everybody to get to know their colleagues better. And that's just what we did.Due to fact that we are fast-growing company and that we have offices in different cities, not all members of our team knew each other! But that was before we had this phenomenal trip to one of the most beautiful mountains in Serbia. The Old Mountain, the jewel of the South-eastern Serbia is such a fantastic place and as soon as we arrived, we've encountered so many great things.The hotel we were staying at was off the charts and we were all stunned by the variety of things that were offered to us by the hotel itself and the pleasant stuff! Of course, the places we have visited were remarkable and I'm assured that we will always remember time spent on this wonder of nature! But, that's just a part of our trip! One general part, every company has this kind of trip, but not every company has what we in Quantox Technology have! Friends! The level of friendship in our community is something that I simply can not describe using just words! You have to be part of it to feel it! That is the main reason for our success and on this trip, all of us made new friends and consolidate the old ones.Having a 4-hours-long walk through the mountain, climbing to its biggest peak, swimming in the beautiful pool, sunbathing and chit chatting, using spa, sauna, playing basketball and football, were just an accompanying things on this trip of friendship (I would call it that way). That's why our gatherings are special and this one was probably the best we have ever had! Of course, there are much more to come and we are all looking forward to the new places and new faces in our team! Take a look at the photos below and you will maybe have a glance of the relationships we have here! Enjoy, just like we did there!
That's the word you hear every single day, no matter what is your profession and what are you currently doing, right? So, let's say a few words about this...
When thinking of creating or updating a website, you need both web design and web development. However, unless you’re working in the field, you may get these two confused. It’s really easy for non-professionals to make this mistake because of these two things really sound lot a like, and heck, they both even have the word “web” in it and start with the same letters, so the chance for a mistake is really big!However, even though web design and web development are related, they’re not the same thing, though one is required for the other. Stay with us and learn the difference and the real meaning of these two very important concepts.
When we talk about web design, we are only talking about the visual aspect of a website. When a web designer works on their project, they use programs like Photoshop or other tools which allow them to create skins and templates for a website. They work hard to ensure that everything looks perfect, and they may also create logos and other graphics for a site’s online presence. When they are done, they often hand off their designs to a developer to implement on the site.
Web development, on the other hand, is using different programming languages to actually implement many different things on a site - from the design to widgets and interactive features that show up on the website. On a very basic level, they can create a site, but more advanced developers can also create a custom content management system for a site, or even develop plugins and apps for existing out of the box content management systems like Joomla or Wordpress. Development is essential because it is used to implement the design. Of course, a developer can make up their own website design, but it is often helpful to have both because you’ll get someone with an artistic eye working on your site, as well as a coding whiz to implement it.
Both web design and web development are a very important parts building your web solution. You need design because you want your site to look amazing, and you need development because you want everything to work smoothly. Luckily for you, Quantox is a full-service agency and we can help you with both. We have a huge team of professionals who are experts in their fields, who will work hard to make sure that your web presence is great in all different aspects. Let's Talk!
The year is 2017, and you still don’t have a website for your small business?!
It probably even sounds a little bit outrageous to you. Small business owners come up with many excuses to avoid building a website, but we’ll tell you the truth: all those excuses are completely bunk. There’s a tough truth to learn and it is that there is absolutely no excuse to not have a website! The good news is, it’s never too late to start, and we’re here to help you along the way.
Some people use the excuse that they simply don’t need a website. However, that’s just not true. Almost everyone uses the internet and the people who don’t are complete weirdos. When was the last time you did anything without first consulting the internet from ordering food, researching a product to buy or looking up the address of a physical place you wanted to go? By not having a website you are missing out on a lot of opportunities, and you are also missing out on making things more convenient for your customers and clients!Other people say that they have enough customers. This is great for you, but wouldn’t you like to make it even easier for your customers to get information about your products and give you money? With a website you can provide online payment portals, and have a website will also help with customer retention so you will continue to have enough customers.A very common excuse for business owners is to say that they use social media instead of having a website. This is a fine idea because social media is very important to any marketing mix, but it’s hard to capture your followers as customers without a website. Especially in the millennial generation, users judge company’s without websites harshly because they know how easy it is to create one, and how convenient it is to use one to get information.
Still, others say they don’t have time to maintain a website. Luckily for you, that’s where we come in! We are a full-service web development agency and we can help you with everything from making a website to maintaining it on a day to day level. Whether you just need someone to make the website or run it, we’re here for you. Contact us today to see how you can get started!
When I came to the office this morning, I had one really pleasant surprise waiting for me on my desk. And, the most of you would probably ask what kind of surprise an employee can get on Wednesday, right? Well, let me tell you a short story about it...As you already know and as you have already experienced on your own skin (if you have some kind of full-time job), we live in a very fast and advanced age. Some of you may not see it that way, but just imagine how things were done just a 20 or 30 years ago and how they are done now and you will see that this age is far more advanced than all the others ages in the history of mankind combined! Our age, our (I can freely say post-modern and technological) age is something we can't fight against. We have to dance by the notes of the age and these notes are crystal clear: A lot of work in order to achieve success and earn as much money as you can and a not so much free time!
OK, we, as a generation, have accepted this concept and we are going shoulder by shoulder with our age. But, at some point of your life, you simply have to ask yourself is this enough? Success and money, expensive cars, exclusive restaurants and similar stuff... Is that enough for you to be happy on a long term basis? Sometimes, the only thing we need is another person's company, a warm word, and a pleasant hug! Money can't buy these things, but we can not live without the money, right... So, what is the best option for us? What can we do to have both free time for love and the friends and success in the business?Maybe answer to this question lies in the words of the famous Chinese sage, Confucius: "Choose a job you love, and you will never have to work a day in your life". The job is one of the most important things nowadays and if you choose it wisely, it's like you've won the lottery! That's exactly what we in the Quantox Technology can say about our job! This is not only our job, this is a way of life and that's why my colleagues and I come to the office with a big smile on our faces! So, I can finally talk about this great surprise I found on my desk.
It's Wednesday (I mean, Wednesday, the most unimportant day of the week), I come in the office and I find beautiful and delicious donuts on my desk! Early in the morning! To make my coffee better! How cool is that? This small thing, this little sign of appreciation and respect for employees is what makes our company so great! That's why we all have it all here: Sucess in the business, friends and warm words! We are more a family than a company and that makes us fight our age with ease!
Sometimes, I think we can even win this fight...