Posts

Grumman E-2 Hawkeye

Image
E-2 Hawkeye E-2C Тип ДРЛО (АВАКС) Производитель Grumman Aerospace Corporation Northrop Grumman Первый полёт 21 октября 1960 года Начало эксплуатации январь 1964 года Эксплуатанты ВМС США Франция Израиль Япония Единиц произведено 200 [1] Стоимость единицы 80 млн. долларов Варианты C-2 Greyhound  Изображения на Викискладе Грумман E-2 «Хокай» (англ.  Grumman E-2 Hawkeye ) — американский палубный самолёт дальнего радиолокационного обнаружения. Первый полёт совершил 21 октября 1960 года. Поставлялся на экспорт в 7 стран мира, применялся в ряде вооружённых конфликтов. С 1970-х годов основным вариантом является E-2C; планируется замена его на E-2D «Адванст Хокай». Содержание 1 Общие сведения 2 Задействованные структуры 3 Назначение самолёта 4 Боевое применение 5 Эксплуатанты 6 Тактико-технические характеристики 6.1 Технические характеристики 6.2 Лётные характеристики 6.3 Ссылки 7 Литерат...

Timer on modeline: how to update modeline every second?

Image
2 As part of my custom mode-line, I've included a feature that displays a countdown timer (timers are created using the chronos package) when it recognises that there is one running. Works great, but the problem I have is that the mode-line only refreshes when I enter keypresses into emacs. It will not update in the background (say I work in the browser for a bit but emacs is still visible). Is there any good way to force the mode-line to redisplay each second, so that the timer display stays up to date? Screenshot of mode-line Relevant code This is appended to the format-mode-line list: (if (>= (length chronos--timers-list) 2) (list " timer|" (propertize (my-timer-display) 'face 'my-red-face) "| ") "") The my-timer-display decides whether or not to sh...