# Cheat sheet

A cheat sheet condenses useful information for quick reference, including programming commands, APIs, syntax, and workflows.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## What is the Super key in Omarchy?

DevFeed: [What is the Super key in Omarchy?](<https://devfeed.tech/articles/what-is-the-super-key-in-omarchy-30884.md>)

Original publisher: [Read original article](<https://www.rogerperkin.co.uk/faq/what-is-the-super-key-in-omarchy/>)

Author: Roger Perkin

Published: 2026-09-11T09:52:11Z

Content type: tutorial

Language: en

Sources: [Roger Perkin Network Automation Consultant](<https://devfeed.tech/sources/roger-perkin-network-automation-consultant.md>)

Topics: [navigation](<https://devfeed.tech/topics/navigation.md>), [Cheat sheet](<https://devfeed.tech/topics/cheatsheet.md>), [configuration](<https://devfeed.tech/topics/configuration.md>), [Terminal](<https://devfeed.tech/topics/terminal.md>), [App](<https://devfeed.tech/topics/app.md>)

Tags: [cheat-sheet](<https://devfeed.tech/tags/cheat-sheet.md>), [commands](<https://devfeed.tech/tags/commands.md>), [faq](<https://devfeed.tech/tags/faq.md>), [shortcuts](<https://devfeed.tech/tags/shortcuts.md>), [terminal](<https://devfeed.tech/tags/terminal.md>), [vim](<https://devfeed.tech/tags/vim.md>), [windows](<https://devfeed.tech/tags/windows.md>)

### AI overview

This tutorial explains that Omarchy uses the Super key as the primary modifier for system navigation and shortcuts. It describes ten shortcut categories, including launching applications, closing windows, opening a terminal, changing layouts, viewing keybindings, navigating windows, switching workspaces, and moving windows between workspaces.

### Source excerpt

In Omarchy, the Super key acts as the primary modifier key for almost all system navigation and shortcuts, functioning as the Windows key on standard keyboards or the Command key on a Mac layout Based on standard Omarchy configurations and recent Hyprland window manager defaults, here are the top 10 essential Super key combinations you need to know for ...

## VAT Compliance for Digital Products: A Country-by-Country Cheat Sheet

DevFeed: [VAT Compliance for Digital Products: A Country-by-Country Cheat Sheet](<https://devfeed.tech/articles/vat-compliance-for-digital-products-a-country-by-country-cheat-sheet-10431.md>)

Original publisher: [Read original article](<https://dodopayments.com/blogs/vat-compliance-digital-products/>)

Author: Ayush Agarwal

Published: 2026-05-05T00:00:00Z

Content type: tutorial

Language: en

Sources: [Dodo Payments Blog](<https://devfeed.tech/sources/dodo-payments-blog.md>)

Topics: [Cheat sheet](<https://devfeed.tech/topics/cheatsheet.md>), [Software as a service](<https://devfeed.tech/topics/saas.md>)

Tags: [compliance](<https://devfeed.tech/tags/compliance.md>), [digital-products](<https://devfeed.tech/tags/digital-products.md>), [guides](<https://devfeed.tech/tags/guides.md>), [merchant-of-record](<https://devfeed.tech/tags/merchant-of-record.md>), [saas](<https://devfeed.tech/tags/saas.md>), [tax](<https://devfeed.tech/tags/tax.md>), [vat](<https://devfeed.tech/tags/vat.md>)

### AI overview

A country-by-country guide to VAT compliance for digital products, covering taxable product categories, destination-based taxation, thresholds, registration, B2B and B2C treatment, and practical compliance options such as using a Merchant of Record.

### Source excerpt

VAT compliance for digital products explained country-by-country. Thresholds, rates, registration paths, and when a Merchant of Record is the right call.

## Notes on clarifying man pages

DevFeed: [Notes on clarifying man pages](<https://devfeed.tech/articles/notes-on-clarifying-man-pages-21125.md>)

Original publisher: [Read original article](<https://jvns.ca/blog/2026/02/18/man-pages/>)

Author: Julia Evans

Published: 2026-02-18T00:00:00Z

Content type: opinion

Language: en

Sources: [Julia Evans](<https://devfeed.tech/sources/julia-evans.md>)

Topics: [Documentation](<https://devfeed.tech/topics/documentation.md>), [Cheat sheet](<https://devfeed.tech/topics/cheatsheet.md>), [Tool](<https://devfeed.tech/topics/tool.md>), [ASCII](<https://devfeed.tech/topics/ascii.md>), [Git](<https://devfeed.tech/topics/git.md>), [ls](<https://devfeed.tech/topics/ls.md>), [Perl](<https://devfeed.tech/topics/perl.md>)

Tags: [ascii](<https://devfeed.tech/tags/ascii.md>), [cheat-sheet](<https://devfeed.tech/tags/cheat-sheet.md>), [documentation](<https://devfeed.tech/tags/documentation.md>), [examples](<https://devfeed.tech/tags/examples.md>), [git](<https://devfeed.tech/tags/git.md>), [notes](<https://devfeed.tech/tags/notes.md>)

### AI overview

The article explores ways to make Unix man pages easier to navigate and more useful. It considers embedding concise cheat sheets, using terse SYNOPSIS sections with OPTIONS SUMMARY sections, grouping options by category, providing condensed ASCII layouts, and including practical examples.

### Source excerpt

Hello! After spending some time working on the Git man pages last year, I've been thinking a little more about what makes a good man page. I've spent a lot of time writing cheat sheets for tools (tcpdump, git, dig, etc) which have a man page as their primary documentation. This is because I often find the man pages hard to navigate to get the information I want. Lately I've wondering - could the man page itself have an amazing cheat sheet in it? What might make a man page easier to use? I'm still very early in thinking about this but I wanted to write down some quick notes. I asked some people on Mastodon for their favourite man pages, and here are some examples of interesting things I saw on those man pages. an OPTIONS SUMMARY If you've read a lot of man pages you've probably seen something like this in the SYNOPSIS: once you're listing almost the entire alphabet, it's hard ls [-@ABCFGHILOPRSTUWabcdefghiklmnopqrstuvwxy1%,] grep [-abcdDEFGHhIiJLlMmnOopqRSsUVvwXxZz] The rsync man page has a solution I've never seen before: it keeps its SYNOPSIS very terse, like this: Local: rsync [OPTION...] SRC... [DEST] and then has an "OPTIONS SUMMARY" section with a 1-line summary of each option, like this: --verbose, -v increase verbosity --info=FLAGS fine-grained informational verbosity --debug=FLAGS fine-grained debug verbosity --stderr=e|a|c change stderr output mode (default: errors) --quiet, -q suppress non-error messages --no-motd suppress daemon-mode MOTD Then later there's the usual OPTIONS section with a full description of each option. an OPTIONS section organized by category The strace man page organizes its options by category (like "General", "Startup", "Tracing", and "Filtering", "Output Format") instead of alphabetically. As an experiment I tried to take the grep man page and make an "OPTIONS SUMMARY" section grouped by category, you can see the results here. I'm not sure what I think of the results but it was a fun exercise. When I was writing that I was thinking

## TLS Certificate Cheat Sheet - OpenSSL & Curl

DevFeed: [TLS Certificate Cheat Sheet - OpenSSL & Curl](<https://devfeed.tech/articles/tls-certificate-cheat-sheet-openssl-curl-31866.md>)

Original publisher: [Read original article](<https://www.metachris.dev/2025/09/tls-certificate-cheat-sheet-openssl-curl/>)

Author: Chris Hager

Published: 2025-09-22T00:00:00Z

Content type: tutorial

Language: en

Sources: [Chris Hager](<https://devfeed.tech/sources/chris-hager.md>)

Topics: [TLS (Transport Layer Security)](<https://devfeed.tech/topics/tls.md>), [certificates](<https://devfeed.tech/topics/certificates.md>), [Cheat sheet](<https://devfeed.tech/topics/cheatsheet.md>), [openssl](<https://devfeed.tech/topics/openssl.md>), [cURL](<https://devfeed.tech/topics/curl.md>)

Tags: [certificates](<https://devfeed.tech/tags/certificates.md>), [cheat-sheet](<https://devfeed.tech/tags/cheat-sheet.md>), [curl](<https://devfeed.tech/tags/curl.md>), [openssl](<https://devfeed.tech/tags/openssl.md>), [tls](<https://devfeed.tech/tags/tls.md>), [tools](<https://devfeed.tech/tags/tools.md>)

### AI overview

A cheat sheet for creating, inspecting, signing, validating, and testing TLS certificates and related keys and CSRs using OpenSSL and cURL.

### Source excerpt

https://collective.flashbots.net/t/tls-certificates-know-how-quick-reference/5292

## A Docker Deep-Dive Cheatsheet

DevFeed: [A Docker Deep-Dive Cheatsheet](<https://devfeed.tech/articles/a-docker-deep-dive-cheatsheet-28913.md>)

Original publisher: [Read original article](<https://levelupsoftwareengineering.substack.com/p/docker-cheatsheet>)

Author: Caleb Mellas

Published: 2024-06-19T12:04:00Z

Content type: tutorial

Language: en

Sources: [Level up software engineering](<https://devfeed.tech/sources/level-up-software-engineering.md>)

Topics: [Docker](<https://devfeed.tech/topics/docker.md>), [Cheat sheet](<https://devfeed.tech/topics/cheatsheet.md>), [DevOps](<https://devfeed.tech/topics/devops.md>)

Tags: [cheatsheet](<https://devfeed.tech/tags/cheatsheet.md>), [devops](<https://devfeed.tech/tags/devops.md>), [docker](<https://devfeed.tech/tags/docker.md>)

### AI overview

The article presents a Docker deep-dive cheatsheet and states that Docker has become prominent in the DevOps world, recommending that developers learn it.

### Source excerpt

Docker is something that has taken the devops world by storm the last few years. You are going to need to get good at it sooner rather than later.

## onwebkitplaybacktargetavailabilitychanged?! New exotic events in the XSS cheat sheet

DevFeed: [onwebkitplaybacktargetavailabilitychanged?! New exotic events in the XSS cheat sheet](<https://devfeed.tech/articles/onwebkitplaybacktargetavailabilitychanged-new-exotic-events-in-the-xss-cheat-sheet-7692.md>)

Original publisher: [Read original article](<https://portswigger.net/research/new-exotic-events-in-the-xss-cheat-sheet>)

Author: Gareth Heyes

Published: 2024-06-11T14:58:29Z

Content type: article

Language: en

Sources: [PortSwigger Research](<https://devfeed.tech/sources/portswigger-research.md>)

Topics: [Cheat sheet](<https://devfeed.tech/topics/cheatsheet.md>), [Security](<https://devfeed.tech/topics/security.md>), [Web](<https://devfeed.tech/topics/web.md>), [Mozilla](<https://devfeed.tech/topics/mozilla.md>), [marquee](<https://devfeed.tech/topics/marquee.md>)

Tags: [audio](<https://devfeed.tech/tags/audio.md>), [cheat-sheet](<https://devfeed.tech/tags/cheat-sheet.md>), [code](<https://devfeed.tech/tags/code.md>), [community](<https://devfeed.tech/tags/community.md>), [contribute](<https://devfeed.tech/tags/contribute.md>), [firefox](<https://devfeed.tech/tags/firefox.md>), [marquee](<https://devfeed.tech/tags/marquee.md>), [mozilla](<https://devfeed.tech/tags/mozilla.md>), [security](<https://devfeed.tech/tags/security.md>), [tool](<https://devfeed.tech/tags/tool.md>), [update](<https://devfeed.tech/tags/update.md>), [video](<https://devfeed.tech/tags/video.md>), [web](<https://devfeed.tech/tags/web.md>)

### AI overview

An update to PortSwigger's XSS cheat sheet adds and documents exotic browser event vectors, including Safari audio and video behavior, pointer interaction, autofocus usage, and WebKit trackpad events. The article also credits community contributions and Mozilla's help removing obsolete marquee events from Firefox.

### Source excerpt

The power of our XSS cheat sheet is we get fantastic contributions from the web security community and this update is no exception. We had valuable contributions from Mozilla to remove events that no

## Email DNS Records Cheatsheet

DevFeed: [Email DNS Records Cheatsheet](<https://devfeed.tech/articles/email-dns-records-cheatsheet-30180.md>)

Original publisher: [Read original article](<https://www.netmeister.org/blog/email-dns-records.html>)

Published: 2024-04-12T20:02:49Z

Content type: article

Language: en

Sources: [Signs of Triviality](<https://devfeed.tech/sources/signs-of-triviality.md>)

Topics: [Cheat sheet](<https://devfeed.tech/topics/cheatsheet.md>), [email](<https://devfeed.tech/topics/email.md>)

Tags: [cheatsheet](<https://devfeed.tech/tags/cheatsheet.md>), [email](<https://devfeed.tech/tags/email.md>), [examples](<https://devfeed.tech/tags/examples.md>), [smtp](<https://devfeed.tech/tags/smtp.md>), [summary](<https://devfeed.tech/tags/summary.md>)

### AI overview

A quick summary of SMTP-related DNS records with brief examples.

### Source excerpt

A quick summary of the SMTP related DNS records together with brief examples.

## Top considerations for addressing risks in the OWASP Top 10 for LLMs

DevFeed: [Top considerations for addressing risks in the OWASP Top 10 for LLMs](<https://devfeed.tech/articles/top-considerations-for-addressing-risks-in-the-owasp-top-10-for-llms-7793.md>)

Original publisher: [Read original article](<https://snyk.io/blog/addressing-risks-in-the-owasp-top-10-for-llms/>)

Author: Simon Maple

Published: 2023-09-07T05:00:00Z

Content type: article

Language: en

Sources: [Blog RSS Feed | Snyk](<https://devfeed.tech/sources/blog-rss-feed-snyk.md>)

Topics: [Application Security](<https://devfeed.tech/topics/application-security.md>), [Large Language Model](<https://devfeed.tech/topics/llm.md>), [Security](<https://devfeed.tech/topics/security.md>), [Cheat sheet](<https://devfeed.tech/topics/cheatsheet.md>), [prompt injection](<https://devfeed.tech/topics/prompt-injection.md>), [Natural language processing](<https://devfeed.tech/topics/nlp.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [application-security](<https://devfeed.tech/tags/application-security.md>), [cheat-sheet](<https://devfeed.tech/tags/cheat-sheet.md>), [developer](<https://devfeed.tech/tags/developer.md>), [devrel](<https://devfeed.tech/tags/devrel.md>), [llms](<https://devfeed.tech/tags/llms.md>), [prompt-injection](<https://devfeed.tech/tags/prompt-injection.md>), [security](<https://devfeed.tech/tags/security.md>), [snyk](<https://devfeed.tech/tags/snyk.md>), [snyk-code](<https://devfeed.tech/tags/snyk-code.md>), [snyk-open-source](<https://devfeed.tech/tags/snyk-open-source.md>)

### AI overview

This cheat sheet introduces the OWASP Top 10 for large language models (LLMs), explaining that the list identifies major security risks and attack vectors affecting applications that use LLM technology. It provides context on LLMs, their relationship to natural language processing, and prompt injection as one of the listed risks.

### Source excerpt

Welcome to our cheat sheet covering the OWASP Top 10 for LLMs where we'll explore the top security risks identified by OWASP.

## kubectl Cheat Sheet

DevFeed: [kubectl Cheat Sheet](<https://devfeed.tech/articles/kubectl-cheat-sheet-29733.md>)

Original publisher: [Read original article](<https://goteleport.com/blog/kubectl-cheatsheet/>)

Author: info@goteleport.com (Deborah Ruck)

Published: 2022-04-11T00:00:00Z

Content type: tutorial

Language: en

Sources: [Teleport](<https://devfeed.tech/sources/teleport.md>)

Topics: [kubectl](<https://devfeed.tech/topics/kubectl.md>), [Cheat sheet](<https://devfeed.tech/topics/cheatsheet.md>), [Kubernetes](<https://devfeed.tech/topics/kubernetes.md>), [Kubernetes clusters](<https://devfeed.tech/topics/kubernetes-clusters.md>), [Command-line interface](<https://devfeed.tech/topics/cli.md>), [REST API](<https://devfeed.tech/topics/rest-api.md>)

Tags: [cheat-sheet](<https://devfeed.tech/tags/cheat-sheet.md>), [command-line](<https://devfeed.tech/tags/command-line.md>), [containers](<https://devfeed.tech/tags/containers.md>), [examples](<https://devfeed.tech/tags/examples.md>), [kubectl](<https://devfeed.tech/tags/kubectl.md>), [kubernetes](<https://devfeed.tech/tags/kubernetes.md>), [kubernetes-clusters](<https://devfeed.tech/tags/kubernetes-clusters.md>), [rest-api](<https://devfeed.tech/tags/rest-api.md>)

### AI overview

A practical kubectl cheat sheet explaining how to use Kubernetes' command-line tool to interact with the Kubernetes API, manage cluster resources, deploy applications, and view logs. It covers command syntax, resource types, names, and command-line flags.

### Source excerpt

Quickly interact with Kubernetes clusters using kubectl by leveraging these useful kubectl commands and examples.

## Push Cheatsheet

DevFeed: [Push Cheatsheet](<https://devfeed.tech/articles/push-cheatsheet-19455.md>)

Original publisher: [Read original article](<https://www.codenameone.com/blog/push-cheatsheet/>)

Author: Steve Hannah

Published: 2019-09-27T00:00:00Z

Content type: tutorial

Language: en

Sources: [CodeName One](<https://devfeed.tech/sources/codename-one.md>)

Topics: [Cheat sheet](<https://devfeed.tech/topics/cheatsheet.md>), [Mobile](<https://devfeed.tech/topics/mobile.md>), [Tutorial](<https://devfeed.tech/topics/tutorial.md>), [pdf](<https://devfeed.tech/topics/pdf.md>)

Tags: [apple](<https://devfeed.tech/tags/apple.md>), [cheatsheet](<https://devfeed.tech/tags/cheatsheet.md>), [firebase](<https://devfeed.tech/tags/firebase.md>), [firebase-console](<https://devfeed.tech/tags/firebase-console.md>), [http](<https://devfeed.tech/tags/http.md>), [mobile](<https://devfeed.tech/tags/mobile.md>), [mobile-apps](<https://devfeed.tech/tags/mobile-apps.md>), [notifications](<https://devfeed.tech/tags/notifications.md>), [windows](<https://devfeed.tech/tags/windows.md>)

### AI overview

A quick-reference cheatsheet for configuring push notifications in Codename One mobile apps across iOS, Android, and Windows. It summarizes platform setup requirements, device registration and message-handling code, HTTP requests for sending pushes, and push message types.

### Source excerpt

Push support is one of the most complicated features to set up, due to all of the red tape you have to cut through on each platform. Each platform has its own series of hurdles you have to jump through. Apple (iOS) requires you to generate push certificates. Google (Android) requires you to set up a project in Firebase console. Microsoft requires you to register your app for the Windows store. And that's just the beginning.

## 6 Things to Know Before Migrating An Existing Service to Serverless

DevFeed: [6 Things to Know Before Migrating An Existing Service to Serverless](<https://devfeed.tech/articles/6-things-to-know-before-migrating-an-existing-service-to-serverless-14052.md>)

Original publisher: [Read original article](<https://www.serverless.com/blog/6-things-to-know-before-migrating-an-existing-service-to-serverless>)

Author: Marcia Villalba

Published: 2017-08-07T00:00:00Z

Content type: article

Language: en

Sources: [Serverless Blog](<https://devfeed.tech/sources/serverless-blog.md>)

Topics: [Serverless](<https://devfeed.tech/topics/serverless.md>), [migration](<https://devfeed.tech/topics/migration.md>), [Cheat sheet](<https://devfeed.tech/topics/cheatsheet.md>)

Tags: [aws](<https://devfeed.tech/tags/aws.md>), [aws-lambda](<https://devfeed.tech/tags/aws-lambda.md>), [cheatsheet](<https://devfeed.tech/tags/cheatsheet.md>), [cloud-computing](<https://devfeed.tech/tags/cloud-computing.md>), [customers](<https://devfeed.tech/tags/customers.md>), [engineering](<https://devfeed.tech/tags/engineering.md>), [faas](<https://devfeed.tech/tags/faas.md>), [function-as-a-service](<https://devfeed.tech/tags/function-as-a-service.md>), [infrastructure-as-code](<https://devfeed.tech/tags/infrastructure-as-code.md>), [migration](<https://devfeed.tech/tags/migration.md>), [serverless](<https://devfeed.tech/tags/serverless.md>), [serverless-architecture](<https://devfeed.tech/tags/serverless-architecture.md>), [serverless-framework](<https://devfeed.tech/tags/serverless-framework.md>)

### AI overview

An article outlining six things to know before migrating an existing service to serverless.

### Source excerpt

Your cheatsheet to a seamless migration.

## Polymer 1.x Cheat Sheet

DevFeed: [Polymer 1.x Cheat Sheet](<https://devfeed.tech/articles/polymer-1-x-cheat-sheet-35536.md>)

Original publisher: [Read original article](<https://meowni.ca/posts/polymer-cheatsheet/>)

Author: Monica Dinculescu

Published: 2016-12-13T00:00:00Z

Content type: tutorial

Language: en

Sources: [Monica Dinculescu](<https://devfeed.tech/sources/monica-dinculescu.md>)

Topics: [Cheat sheet](<https://devfeed.tech/topics/cheatsheet.md>), [Library](<https://devfeed.tech/topics/library.md>), [Web Components](<https://devfeed.tech/topics/web-components.md>), [Code](<https://devfeed.tech/topics/code.md>), [JavaScript](<https://devfeed.tech/topics/javascript.md>), [CSS](<https://devfeed.tech/topics/css.md>), [Document Object Model (DOM)](<https://devfeed.tech/topics/dom.md>)

Tags: [browser](<https://devfeed.tech/tags/browser.md>), [cheat-sheet](<https://devfeed.tech/tags/cheat-sheet.md>), [code](<https://devfeed.tech/tags/code.md>), [components](<https://devfeed.tech/tags/components.md>), [css](<https://devfeed.tech/tags/css.md>), [javascript](<https://devfeed.tech/tags/javascript.md>)

### AI overview

A cheat sheet for the Polymer 1.x library covering Web Components development, including element and behavior definitions, lifecycle methods, data binding, observers, listeners, properties, style modules, custom properties, mixins, and template helpers.

### Source excerpt

This is a cheat sheet for the Polymer 1.x library. It helps you write Web Components, which are pretty 🔥🔥🔥. If you're interested in the Polymer 2.0 cheat sheet, it's here. If you think something is missing from this page, tell me about it! Defining an element Defining a behaviour Lifecycle methods Data binding Observers Listeners Properties block Observing added and removed children Style modules Styling with custom properties and mixins Binding helper elements Defining an element Docs: registering an element, behaviours, shared style modules <dom-module id="element-name"> <template> <!-- Use one of these style declarations, but not both --> <!-- Use this if you don't want to include a shared style --> <style></style> <!-- Use this if you want to include a shared style --> <style include="some-style-module-name"></style> </template> <script> Polymer({ is: 'element-name', // All of these are optional. Only keep the ones you need. behaviors: [], observers: [], listeners: {}, hostAttributes: {}, properties: {} }); </script> </dom-module> Defining a behaviour Docs: behaviours. Defining a behavior to share implementation between different elements: <script> MyNamespace.MyFancyBehaviorImpl = { // Code that you want common to elements, such // as behaviours, methods, etc. } MyNamespace.MyFancyBehavior = [ MyFancyBehaviorImpl, /* You can add other behaviours here */ ]; </script> Using the behavior in an element: <dom-module id="element-name"> <template> <!-- ... --> </template> <script> Polymer({ is: 'element-name', behaviors: [MyNamespace.MyCustomButtonBehavior] /* ... */ }); </script> </dom-module> Lifecycle methods Docs: lifecycle callbacks. Polymer({ registered: function() {}, created: function() {}, ready: function() {}, attached: function() {}, detached: function() {} }); There's an attributeChanged callback as well, but that's very rarely used. Data binding Docs: data binding, attribute binding, binding to array items, computed bindings. Don't forget: Polymer camel-c

## AngularJS and Ionic performance cheat sheet

DevFeed: [AngularJS and Ionic performance cheat sheet](<https://devfeed.tech/articles/ultimate-angularjs-and-ionic-performance-cheat-sheet-21249.md>)

Original publisher: [Read original article](<https://juri.dev/blog/2015/08/link-angular-perf-cheatsheet/>)

Published: 2015-08-24T00:00:00Z

Content type: article

Language: en

Sources: [Juri Strumpflohner](<https://devfeed.tech/sources/juri-strumpflohner.md>)

Topics: [Angular](<https://devfeed.tech/topics/angular.md>), [Ionic](<https://devfeed.tech/topics/ionic.md>), [Cheat sheet](<https://devfeed.tech/topics/cheatsheet.md>)

Tags: [angular](<https://devfeed.tech/tags/angular.md>), [article](<https://devfeed.tech/tags/article.md>), [ionic](<https://devfeed.tech/tags/ionic.md>), [performance](<https://devfeed.tech/tags/performance.md>), [v1](<https://devfeed.tech/tags/v1.md>)

### AI overview

A cheat sheet listing performance tips and tricks for Angular v1.x and Ionic, including one-time binding, track by, disabling debug diagnostics, and loop-related considerations.

### Source excerpt

Lorem ipsum dolor sit amet

## Emacs Cheat Sheet

DevFeed: [Emacs Cheat Sheet](<https://devfeed.tech/articles/emacs-cheat-sheet-34427.md>)

Original publisher: [Read original article](<https://tapoueh.org/blog/2011/07/emacs-cheat-sheet/>)

Author: Dimitri Fontaine PostgreSQL Major Contributor; Author

Published: 2011-07-20T08:44:00Z

Content type: article

Language: en

Sources: [Dimitri Fontaine](<https://devfeed.tech/sources/dimitri-fontaine.md>)

Topics: [Cheat sheet](<https://devfeed.tech/topics/cheatsheet.md>), [Emacs](<https://devfeed.tech/topics/emacs.md>)

Tags: [cheat-sheet](<https://devfeed.tech/tags/cheat-sheet.md>), [emacs](<https://devfeed.tech/tags/emacs.md>), [example](<https://devfeed.tech/tags/example.md>)

### AI overview

An Emacs cheat sheet highlights useful default keyboard chords, including C-x C-o for delete-blank-lines and C-M-o for split-line.

### Source excerpt

I stumbled upon the following cheat sheet for Emacs yesterday, and it's worth sharing. I already learnt or discovered again some nice default chords, like for example C-x C-o runs the command delete-blank-lines and C-M-o runs the command split-line. I guess I will use the later one a lot. Hope you'll like it!

## MySQL quick reference

DevFeed: [MySQL quick reference](<https://devfeed.tech/articles/mysql-quick-reference-35436.md>)

Original publisher: [Read original article](<https://darkcoding.net/software/mysql-quick-reference/>)

Author: Graham King

Published: 2008-08-16T00:30:37Z

Content type: tutorial

Language: en

Sources: [Graham King](<https://devfeed.tech/sources/graham-king.md>)

Topics: [Cheat sheet](<https://devfeed.tech/topics/cheatsheet.md>), [MySQL](<https://devfeed.tech/topics/mysql.md>), [SQL](<https://devfeed.tech/topics/sql.md>), [Databases](<https://devfeed.tech/topics/databases.md>)

Tags: [cheat-sheet](<https://devfeed.tech/tags/cheat-sheet.md>), [command-line](<https://devfeed.tech/tags/command-line.md>), [database](<https://devfeed.tech/tags/database.md>), [mysql](<https://devfeed.tech/tags/mysql.md>), [reference](<https://devfeed.tech/tags/reference.md>), [replication](<https://devfeed.tech/tags/replication.md>), [software](<https://devfeed.tech/tags/software.md>), [sql](<https://devfeed.tech/tags/sql.md>), [utf8](<https://devfeed.tech/tags/utf8.md>)

### AI overview

A concise MySQL command reference covering database and table queries, columns, indexes, foreign keys, auto-increment values, character-set variables, command-line database dumps and loads, imports and exports, DDL operations, and replication status commands.

### Source excerpt

"Your go-to MySQL command cheat sheet for quick reference."