intellij reopen list delete

Direct way: File -> Open Recent -> Clear List   Elegant way: However as far as I found, There is no way to remove individual projects from the UI. We need to find the other.xml file: On Windows 7:  C:\Users\<username>\.IntelliJIdea12\config\options\other.xml On Mac OS, the full path of this file is /Users/<username>/Library/Preferences/IntelliJIdea12/options/other.xml Then manually edit the list…

How nth-child Works (HTML list)

a way to control specific element in a HTML list.   Original Arcitle   There is a CSS selector, really a pseudo-selector, called nth-child. Here is an example of using it: ul li:nth-child(3n+3) {   color: #ccc; }