Skip to content

Instantly share code, notes, and snippets.

History of Offline Web Applications

This document describes the chronology of key events, that impacted on development of online web applications, that can work offline.

The Reasons

User cannot continue working with online applications without connection (he cannot read emails, see calendar and working on presentations without connection. At the same time, desktop application allows user to do it (read emails from cache, see calendar events from cache).

javascript:(f = (function $(){ return ["javascript:(f = ", "(", $, ")(), open(f))"].join("") })(), open(f))
@Tims101
Tims101 / Top 50 Universities List.md
Last active October 15, 2023 18:13
Top 50 Computer Science Universities

Universities

Massachusetts Institute of Technology (MIT)

###phd###

  • MIT Graduate Admissions link
  • PhD Program - MIT Sloan School of Management link
  • MIT - Massachusetts Institute of Technology link
  • to view contact information for all departments. - MIT link
@Tims101
Tims101 / gist:7299361
Created November 4, 2013 07:47
Headhunter: css.
/* 1 */
body {color: red;}
p {color: blue;}
/* Answer: blue. Тут ничего особого(нет "борьбы" селекторов)*/
/* 2 */
p {color: red;}
.bar {color: blue;}
/* Answer: blue. вес селектора по классу (0,0,1,0) больше, чем вес по тегу (0,0,0,1)*/
@Tims101
Tims101 / gist:7299347
Last active December 27, 2015 08:49
HeadHunter: css
<!DOCTYPE>
<html>
<head>
<meta charset="utf-8">
<style>