JetBrains Intellij IDEA shortcuts

Cmnd + Optn + L = Code reformat Cmnd + Shft + F = Find in path Cmnd + Shft + O = Open file Jump to matching HTML tag or brace Opt+Command+[ (Ctrl+[ for PC) goes to the opening tag or opening brace Opt+Command+] (Ctrl+] for PC) goes to the closing tag or closing ... Read more

Website status

Get info by URL: https://check-host.net/ip-info?host=https://www.bbc.com/ https://viewdns.info/iphistory/?domain=google.com https://www.uptrends.com/tools/uptime https://ping.pe/bbc.com https://2ip.me/en/services/information-service/domain-information https://www.host-tracker.com/en/ic/check-http https://www.zoomeye.org/ https://www.shodan.io/ Get info by IP: https://search.censys.io/hosts/91.189.114.18 https://2ip.me/en/services/information-service/nslookup https://2ip.me/en/services/ip-service/ping-traceroute https://2ip.me/en/services/ip-service/server-check Get DNS info: https://dnschecker.org/all-dns-records-of-domain.php?query=cdek.ru&rtype=ALL&dns=cloudflare https://dnshistory.org Subdomains check: https://subdomains.whoisxmlapi.com/ https://dnsdumpster.com/ Get info by Adsense Pub ID: http://websitesrate.com/website-report-search/adsense-pub-id/7239705

Get the week day later

Variable weekDaysList holds a list of weekdays, which are represented as strings. Write a function that have 2 params: weekDayCurrent (STRING) - representing the day of the week for the current day and weekDaysLater (INTEGER) - representing how many days later For example: if weekDayCurrent = “Tuesday” and weekDaysLater = 4, the function should return ... Read more

Writing for web

Text should be simple, concise, and direct. Avoid the pronoun “we” Focus on the user and what they can do with your app, rather than what you or your app is doing for the user. Do: Get started with these popular posts on Google+ Don't: To get you started, we’re showing you popular posts on ... Read more

jQuery click issue on iPhone/iOS

By default jQuery click event does not work in iPhone/iOS devices in Safari/Chrome for a non-anchor element. Ways to fix it: add {cursor:pointer} CSS property to a clickable element; or add onclick="void(0)" HTML attr; And also don't forget href attr for the anchor element, otherwise it will be not trigger click event in iPhone/iOS devices ... Read more