2030-е годы

Multi tool use
XXI век: 2030—2039 годы
|
- 2030
- 2031
- 2032
- 2033
- 2034
- 2035
- 2036
- 2037
- 2038
- 2039
|
- 2010-е
- 2020-е
- 2030-е
- 2040-е
- 2050-е
|
2030-е годы — десятилетие, включающее года с 2030 по 2039[1].
Ожидаемые события |
- Прекращение радиоконтакта с межпланетным зондом Вояджер-2.
19 января 2038 года — 32-битные UNIX-часы откатятся к 1970 году.
Полёт человека на Марс[2].
- Прогноз Артура Кларка: Китай превзойдёт США по валовому внутреннему продукту.
См. также |
Примечания |
↑ Ответ № 244413 Архивировано 21 августа 2012 года. // Справочное бюро «Грамоты.ру»
↑ НАСА испытало двигатель ракеты для полетов к Марсу (неопр.). LENTA.RU (14 августа 2015). Проверено 10 июня 2017.
2DqZ,FAeU1DogqlFpmBeJlhdB9B278dm,qGTWraCN GU3MkwdEnkq7N5AoU7HlUxZ,5Sy7xuz2r,nxjtvMO7jk22pY1Hcr6Bfxd Dj
Popular posts from this blog
up vote
0
down vote
favorite
Good day all. I have a window that pops up saying Fatal Program Failure (AnyDesk). This is what I have done so far: Uninstalled AnyDesk and reinstalled it. ( The window still appeared ) I disabled AnyDesk start up in Msconfig and the window seems to have disapeared. Lastly I made sure that AnyDesk worked by remoting into it, and it worked. Today the same window appeared. How do I get rid of this window?
remote-desktop
share | improve this question
edited 10 hours ago
Tomasz Jakub Rup
552 3 13
...
up vote
0
down vote
favorite
I need help with an issue we're facing in a project where we are moving from a Windows-based POS environment to one running on CentOS7. The problem consists of a number of factors, please find the details below: The supplier of our POS application will only deliver an application that is hard-coded to run in a 1024:768 4:3 format. The hardware we are using is a POS unit from HP that has a built-in 16:9 touch-screen. The employees using this solution is not supposed to see nor have access to anything but the POS application. Our sales organization demands that touch is an available feature when going live with the new POS environment. Going further into this, allow me to explain what we have encountered on the way trying to achieve the goal of having a touch-screen: We've simply change...
up vote
9
down vote
favorite
2
This question already has an answer here:
error: incompatible types: unexpected return value Char compare to String
3 answers
I have written a simple method which returns the boolean value. private boolean isActionAvailable(Collection<StudentConfiguration> studentConfigs){ if(studentConfigs != null) { studentConfigs.forEach(studentConfig -> { if(studentConfig.action() == null || !studentConfig.action().equals(Action.DELETE)) { return true; } }); } return false; } The method is throwing the following exception . error: incompatible types: unexpected return value ...