On mac:
- Download the latest release.
- Extract the binary and place it in
/usr/local/bin.
| ERKURAN | |
| TÜTEN | |
| YÜZBAŞIOĞLU | |
| ERTEKİN | |
| UYANIK | |
| ORHON | |
| UZ | |
| KULAÇ | |
| SELVİ | |
| ABACIOĞLU |
| JALE | |
| MANSUR KÜRŞAD | |
| MİRAÇ | |
| HAYATİ | |
| BEDRİYE MÜGE | |
| SERDAL | |
| NALAN | |
| BAHATTİN | |
| IRAZCA | |
| REZAN |
| $breakpoints: ( | |
| "phone": 400px, | |
| "phone-wide": 480px, | |
| "phablet": 560px, | |
| "tablet-small": 640px, | |
| "tablet": 768px, | |
| "tablet-wide": 1024px, | |
| "desktop": 1248px, | |
| "desktop-wide": 1440px); |
| /** | |
| * lazyLoader | |
| * Check for elements in the document to be loaded later when visible to the user. | |
| * @see https://developers.google.com/web/fundamentals/performance/lazy-loading-guidance/images-and-video/ | |
| * @example | |
| * <element src="" data-src="/url/" data-srcset="..." /> | |
| */ | |
| (function (ready) { | |
| if (document.readyState === "complete" || document.readyState === "interactive") { |
| const debounce = (callback, wait = 1000) => { | |
| let timeoutId = null; | |
| return (...args) => { | |
| window.clearTimeout(timeoutId); | |
| timeoutId = window.setTimeout(() => { | |
| callback(...args); | |
| }, wait); | |
| }; |
On mac:
/usr/local/bin.| # TO QUIT | |
| launchctl unload /Library/LaunchAgents/com.paloaltonetworks.gp.pangp* | |
| # TO START | |
| launchctl load /Library/LaunchAgents/com.paloaltonetworks.gp.pangp* |
| "Adana", | |
| "Adıyaman", | |
| "Afyonkarahisar", | |
| "Ağrı", | |
| "Aksaray", | |
| "Amasya", | |
| "Ankara", | |
| "Antalya", | |
| "Ardahan", | |
| "Artvin", |
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
| const links = document.querySelectorAll("a"); | |
| links.forEach(link => { | |
| if (!link.href.startsWith(window.location.origin)) { | |
| link.setAttribute("rel", "nofollow noopener noreferrer"); | |
| link.setAttribute("target", "_blank"); | |
| } | |
| }); |