<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Lavender</title>
    <description>The latest articles on DEV Community by Lavender (@lavenderyellowbellie).</description>
    <link>https://dev.to/lavenderyellowbellie</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1180544%2Fa991eed4-ce90-47d2-a4cc-f31adc220725.png</url>
      <title>DEV Community: Lavender</title>
      <link>https://dev.to/lavenderyellowbellie</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/lavenderyellowbellie"/>
    <language>en</language>
    <item>
      <title>C: Strings</title>
      <dc:creator>Lavender</dc:creator>
      <pubDate>Fri, 15 Dec 2023 08:53:03 +0000</pubDate>
      <link>https://dev.to/lavenderyellowbellie/c-strings-2edb</link>
      <guid>https://dev.to/lavenderyellowbellie/c-strings-2edb</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;char greetings[] = "Hello World!";
printf("%s", greetings);
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;access string&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;char greetings[] = "Hello World!";
printf("%c", greetings[0]);
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;modify string&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;char greetings[] = "Hello World!";
greetings[0] = 'J';
printf("%s", greetings);
// prints "Jello World!"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Another way to create a string&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;char greetings[] = {'H','e','l','l','\0'};
printf("%s", greetings);
// print "Hell!"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Creating String using character pointer (String Literals)&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;char *greetings = "Hello";
printf("%s", greetings);
// print "Hello!"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;NOTE&lt;/strong&gt;: String literals might be stored in read-only section of memory. Modifying a string literal invokes undefined behavior. You can't modify it.!&lt;br&gt;
&lt;code&gt;C&lt;/code&gt; &lt;strong&gt;does not&lt;/strong&gt; have a String type, use &lt;code&gt;char&lt;/code&gt; type and create an &lt;code&gt;array&lt;/code&gt; of characters&lt;/p&gt;

&lt;blockquote&gt;
&lt;h2&gt;
  
  
  Useful links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://simplecheatsheet.com/"&gt;Create Online cheatsheet&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://simplecheatsheet.com/c"&gt;C Cheatsheet&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;

</description>
      <category>c</category>
      <category>cheatsheet</category>
    </item>
    <item>
      <title>Laravel: Optimization</title>
      <dc:creator>Lavender</dc:creator>
      <pubDate>Fri, 15 Dec 2023 08:40:22 +0000</pubDate>
      <link>https://dev.to/lavenderyellowbellie/laravel-optimization-2a5p</link>
      <guid>https://dev.to/lavenderyellowbellie/laravel-optimization-2a5p</guid>
      <description>&lt;h4&gt;
  
  
  #Composer's autoloader map
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;composer install --optimize-autoloader --no-dev
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  #Configuration Loading
&lt;/h4&gt;

&lt;p&gt;Be sure that you are only calling the &lt;code&gt;env&lt;/code&gt; function from within your configuration files.&lt;br&gt;&lt;br&gt;
Once the configuration has been cached, the &lt;code&gt;.env&lt;/code&gt; file will not be loaded and all calls&lt;br&gt;
to the &lt;code&gt;env&lt;/code&gt; function for &lt;code&gt;.env&lt;/code&gt; variables will return &lt;code&gt;null&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;php artisan config:cache
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  #Route Loading
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;php artisan route:cache
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  #View Loading
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;php artisan view:cache
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;h2&gt;
  
  
  Useful links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://simplecheatsheet.com/"&gt;Create Online cheatsheet&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://simplecheatsheet.com/laravel"&gt;Laravel Cheatsheet&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;

</description>
      <category>laravel</category>
      <category>cheatsheet</category>
    </item>
    <item>
      <title>RegEX: Anchors</title>
      <dc:creator>Lavender</dc:creator>
      <pubDate>Wed, 13 Dec 2023 03:29:47 +0000</pubDate>
      <link>https://dev.to/lavenderyellowbellie/regex-anchors-200j</link>
      <guid>https://dev.to/lavenderyellowbellie/regex-anchors-200j</guid>
      <description>&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Pattern&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;\G&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Start of match&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;^&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Start of string&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;$&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;End of string&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;\A&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Start of string&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;\Z&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;End of string&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;\z&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Absolute end of string&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;\b&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;A word boundary&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;\B&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Non-word boundary&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;blockquote&gt;
&lt;h2&gt;
  
  
  Useful links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://simplecheatsheet.com/"&gt;Create Online cheatsheet&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://simplecheatsheet.com/regex"&gt;RegEX Cheatsheet&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;

</description>
      <category>regex</category>
      <category>cheatsheet</category>
    </item>
    <item>
      <title>Adobe Photoshop: Use Curves</title>
      <dc:creator>Lavender</dc:creator>
      <pubDate>Wed, 13 Dec 2023 03:29:45 +0000</pubDate>
      <link>https://dev.to/lavenderyellowbellie/adobe-photoshop-use-curves-42jb</link>
      <guid>https://dev.to/lavenderyellowbellie/adobe-photoshop-use-curves-42jb</guid>
      <description>&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Shortcut&lt;/th&gt;
&lt;th&gt;Action&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Ctrl&lt;/code&gt; &lt;code&gt;M&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Open the Curves dialog box&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;+&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Select next point on the curve&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;-&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Select the previous point on the curve&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Ctrl&lt;/code&gt; &lt;code&gt;D&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Deselect a point&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;Del&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Delete a point on the curve&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;Arrows&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Move the selected point 1 pixel&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Shift&lt;/code&gt; &lt;code&gt;Arrows&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Move the selected point 10 pixels&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;blockquote&gt;
&lt;h2&gt;
  
  
  Useful links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://simplecheatsheet.com/"&gt;Create Online cheatsheet&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://simplecheatsheet.com/adobe-photoshop"&gt;Adobe Photoshop Cheatsheet&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;

</description>
      <category>adobephotoshop</category>
      <category>cheatsheet</category>
    </item>
    <item>
      <title>Vim: Insert Mode</title>
      <dc:creator>Lavender</dc:creator>
      <pubDate>Tue, 12 Dec 2023 17:00:36 +0000</pubDate>
      <link>https://dev.to/lavenderyellowbellie/vim-insert-mode-1ei</link>
      <guid>https://dev.to/lavenderyellowbellie/vim-insert-mode-1ei</guid>
      <description>&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Shortcut&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;i&lt;/code&gt; &lt;em&gt;/&lt;/em&gt; &lt;code&gt;a&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Insert before/after cursor&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;I&lt;/code&gt; &lt;em&gt;/&lt;/em&gt; &lt;code&gt;A&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Insert start/end of line&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;o&lt;/code&gt; &lt;em&gt;/&lt;/em&gt; &lt;code&gt;O&lt;/code&gt; &lt;em&gt;(letter)&lt;/em&gt;
&lt;/td&gt;
&lt;td&gt;Insert new line below/above&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;s&lt;/code&gt; &lt;em&gt;/&lt;/em&gt; &lt;code&gt;S&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Delete char/line and insert&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;C&lt;/code&gt; &lt;em&gt;/&lt;/em&gt; &lt;code&gt;cc&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Change to end of/current line&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;gi&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Insert at last insert point&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Esc&lt;/code&gt; *&lt;/td&gt;
&lt;td&gt;* &lt;code&gt;&amp;lt;C-[&amp;gt;&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;blockquote&gt;
&lt;h2&gt;
  
  
  Useful links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://simplecheatsheet.com/"&gt;Create Online cheatsheet&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://simplecheatsheet.com/vim"&gt;Vim Cheatsheet&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;

</description>
      <category>vim</category>
      <category>cheatsheet</category>
    </item>
    <item>
      <title>Fortnite: Communication</title>
      <dc:creator>Lavender</dc:creator>
      <pubDate>Tue, 12 Dec 2023 17:00:29 +0000</pubDate>
      <link>https://dev.to/lavenderyellowbellie/fortnite-communication-2eo3</link>
      <guid>https://dev.to/lavenderyellowbellie/fortnite-communication-2eo3</guid>
      <description>&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Shortcut&lt;/th&gt;
&lt;th&gt;Action&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;Enter&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Chat&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;B&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Emote&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;blockquote&gt;
&lt;h2&gt;
  
  
  Useful links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://simplecheatsheet.com/"&gt;Create Online cheatsheet&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://simplecheatsheet.com/fortnite"&gt;Fortnite Cheatsheet&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;

</description>
      <category>fortnite</category>
      <category>cheatsheet</category>
    </item>
    <item>
      <title>C: Operator Examples</title>
      <dc:creator>Lavender</dc:creator>
      <pubDate>Mon, 11 Dec 2023 04:00:53 +0000</pubDate>
      <link>https://dev.to/lavenderyellowbellie/c-operator-examples-jm1</link>
      <guid>https://dev.to/lavenderyellowbellie/c-operator-examples-jm1</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;unsigned int a = 60; /\*60 = 0011 1100 \*/
unsigned int b = 13; /\*13 = 0000 1101 \*/
int c = 0;
c = a &amp;amp; b; /\*12 = 0000 1100 \*/
printf("Line 1 -the value of c is %d\n", c);
c = a | b; /\*61 = 0011 1101 \*/
printf("Line 2 -the value of c is %d\n", c);
c = a ^ b; /\*49 = 0011 0001 \*/
printf("Line 3 -the value of c is %d\n", c);
c = ~a; /\*-61 = 1100 0011 \*/
printf("Line 4 -The value of c is %d\n", c);
c = a &amp;lt;&amp;lt; 2; /\*240 = 1111 0000 \*/
printf("Line 5 -the value of c is %d\n", c);
c = a &amp;gt;&amp;gt; 2; /\*15 = 0000 1111 \*/
printf("Line 6 -The value of c is %d\n", c);
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;h2&gt;
  
  
  Useful links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://simplecheatsheet.com/"&gt;Create Online cheatsheet&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://simplecheatsheet.com/c"&gt;C Cheatsheet&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;

</description>
      <category>c</category>
      <category>cheatsheet</category>
    </item>
    <item>
      <title>XPath: Descendant selectors</title>
      <dc:creator>Lavender</dc:creator>
      <pubDate>Sun, 10 Dec 2023 06:18:14 +0000</pubDate>
      <link>https://dev.to/lavenderyellowbellie/xpath-descendant-selectors-5dan</link>
      <guid>https://dev.to/lavenderyellowbellie/xpath-descendant-selectors-5dan</guid>
      <description>&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Xpath&lt;/th&gt;
&lt;th&gt;CSS&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;//h1&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;h1&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;//div//p&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;div p&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;//ul/li&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;ul &amp;gt; li&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;//ul/li/a&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;ul &amp;gt; li &amp;gt; a&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;//div/*&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;div &amp;gt; *&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;/&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;:root&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;/html/body&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;:root &amp;gt; body&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;blockquote&gt;
&lt;h2&gt;
  
  
  Useful links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://simplecheatsheet.com/"&gt;Create Online cheatsheet&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://simplecheatsheet.com/xpath"&gt;XPath Cheatsheet&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;

</description>
      <category>xpath</category>
      <category>cheatsheet</category>
    </item>
    <item>
      <title>Adobe Photoshop: Use the Camera Raw dialog box</title>
      <dc:creator>Lavender</dc:creator>
      <pubDate>Sat, 09 Dec 2023 12:19:46 +0000</pubDate>
      <link>https://dev.to/lavenderyellowbellie/adobe-photoshop-use-the-camera-raw-dialog-box-2kl8</link>
      <guid>https://dev.to/lavenderyellowbellie/adobe-photoshop-use-the-camera-raw-dialog-box-2kl8</guid>
      <description>&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Shortcut&lt;/th&gt;
&lt;th&gt;Action&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;Z&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Zoom tool&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;H&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Hand tool&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;I&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;White balance tool&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;S&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Color sampler tool&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;C&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Crop tool&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;A&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Straighten tool&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;B&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Spot removal tool&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;E&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Red eye removal tool&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Ctrl&lt;/code&gt; &lt;code&gt;Alt&lt;/code&gt; &lt;code&gt;1&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Basic panel&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Ctrl&lt;/code&gt; &lt;code&gt;Alt&lt;/code&gt; &lt;code&gt;2&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Tone curve panel&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Ctrl&lt;/code&gt; &lt;code&gt;Alt&lt;/code&gt; &lt;code&gt;3&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Detail panel&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Ctrl&lt;/code&gt; &lt;code&gt;Alt&lt;/code&gt; &lt;code&gt;4&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;HSL/Greyscale panel&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Ctrl&lt;/code&gt; &lt;code&gt;Alt&lt;/code&gt; &lt;code&gt;5&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Split toning panel&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Ctrl&lt;/code&gt; &lt;code&gt;Alt&lt;/code&gt; &lt;code&gt;6&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Lens corrections panel&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Ctrl&lt;/code&gt; &lt;code&gt;Alt&lt;/code&gt; &lt;code&gt;7&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Camera calibration panel&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Ctrl&lt;/code&gt; &lt;code&gt;Alt&lt;/code&gt; &lt;code&gt;8&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Presets panel&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Ctrl&lt;/code&gt; &lt;code&gt;Alt&lt;/code&gt; &lt;code&gt;9&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Open snapshots panel&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Ctrl&lt;/code&gt; &lt;code&gt;Alt&lt;/code&gt; &lt;code&gt;Shift&lt;/code&gt; &lt;code&gt;T&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Parametric curve targeted adjustment tool&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Ctrl&lt;/code&gt; &lt;code&gt;Alt&lt;/code&gt; &lt;code&gt;Shift&lt;/code&gt; &lt;code&gt;H&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Hue targeted adjustment tool&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Ctrl&lt;/code&gt; &lt;code&gt;Alt&lt;/code&gt; &lt;code&gt;Shift&lt;/code&gt; &lt;code&gt;S&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Saturation targeted adjustment tool&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Ctrl&lt;/code&gt; &lt;code&gt;Alt&lt;/code&gt; &lt;code&gt;Shift&lt;/code&gt; &lt;code&gt;L&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Luminance targeted adjustment tool&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Ctrl&lt;/code&gt; &lt;code&gt;Alt&lt;/code&gt; &lt;code&gt;Shift&lt;/code&gt; &lt;code&gt;G&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Grayscale mix targeted adjustment tool&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;T&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Last-used targeted adjustment tool&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;K&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Adjustment brush tool&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;G&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Graduated filter tool&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;Alt&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Temporarily switch from Add to Erase mode for the Adjustment brush tool, or from Erase to Add mode&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Alt&lt;/code&gt; &lt;code&gt;]/[&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Increase/decrease temporary adjustment brush tool size&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Alt&lt;/code&gt; &lt;code&gt;Shift&lt;/code&gt; &lt;code&gt;]/[&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Increase/decrease temporary adjustment brush tool feather&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Alt&lt;/code&gt; &lt;code&gt;=/-&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Increase/decrease temporary adjustment brush tool size flow in increments of 10&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;N&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Switch to New mode from Add or Erase mode of the Adjustment Brush tool or Graduated filter&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;M&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Toggle Auto Mask for Adjustment Brush tool&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;Y&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Toggle Show Mask for Adjustment Brush tool&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;V&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Toggle pins for Adjustment Brush tool&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;L&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Rotate image left&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;R&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Rotate image right&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;Ctrl&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Temporarily switch to zoom in tool&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;Alt&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Temporarily switch to zoom out tool and change the image open button to open copy&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;P&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Toggle preview&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;F&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Full screen mode&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;Shift&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Temporarily activate the White Balance tool and change the open image button to open object&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;Arrows&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Move selected point in curves panel 1 pixel&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Shift&lt;/code&gt; &lt;code&gt;Arrows&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Move selected point in curves panel 10 pixels&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Ctrl&lt;/code&gt; &lt;code&gt;R&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Open selected images in Camera Raw dialog box from Bridge&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;O&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Highlight clipping warning&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;U&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Shadows clipping warning&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Ctrl&lt;/code&gt; &lt;code&gt;1-5&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Add 1-5 star rating (filmstrip mode)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Ctrl&lt;/code&gt; &lt;code&gt;./,&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Increase/decrease rating (filmstrip mode)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Ctrl&lt;/code&gt; &lt;code&gt;6&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Add red label (filmstrip mode)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Ctrl&lt;/code&gt; &lt;code&gt;7&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Add yellow label (filmstrip mode)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Ctrl&lt;/code&gt; &lt;code&gt;8&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Add green label (filmstrip mode)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Ctrl&lt;/code&gt; &lt;code&gt;9&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Add blue label (filmstrip mode)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Ctrl&lt;/code&gt; &lt;code&gt;Shift&lt;/code&gt; &lt;code&gt;0&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Add purple label (filmstrip mode)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Ctrl&lt;/code&gt; &lt;code&gt;K&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Camera Raw preferences&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Ctrl&lt;/code&gt; &lt;code&gt;Alt&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Delete Adobe Camera Raw preferences (on open)&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;blockquote&gt;
&lt;h2&gt;
  
  
  Useful links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://simplecheatsheet.com/"&gt;Create Online cheatsheet&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://simplecheatsheet.com/adobe-photoshop"&gt;Adobe Photoshop Cheatsheet&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;

</description>
      <category>adobephotoshop</category>
      <category>cheatsheet</category>
    </item>
    <item>
      <title>SoundCloud: General II</title>
      <dc:creator>Lavender</dc:creator>
      <pubDate>Sat, 09 Dec 2023 01:57:55 +0000</pubDate>
      <link>https://dev.to/lavenderyellowbellie/soundcloud-general-ii-5fjm</link>
      <guid>https://dev.to/lavenderyellowbellie/soundcloud-general-ii-5fjm</guid>
      <description>&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Shortcut&lt;/th&gt;
&lt;th&gt;Action&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;G&lt;/code&gt; &lt;code&gt;H&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Navigate to history&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Shift&lt;/code&gt; &lt;code&gt;S&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Shuffle&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Shift&lt;/code&gt; &lt;code&gt;Down&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Decrease volume&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;Shift&lt;/code&gt; &lt;code&gt;Up&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Increase volume&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;M&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Mute volume&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;Left&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Seek backwards&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;0-9&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Seek to position&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;P&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Navigate to playing track&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;H&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Show keyboard shortcuts&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;G&lt;/code&gt; &lt;code&gt;S&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Navigate to stream&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;G&lt;/code&gt; &lt;code&gt;P&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Navigate to profile&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;Q&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Show next up&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;blockquote&gt;
&lt;h2&gt;
  
  
  Useful links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://simplecheatsheet.com/"&gt;Create Online cheatsheet&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://simplecheatsheet.com/soundcloud"&gt;SoundCloud Cheatsheet&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;

</description>
      <category>soundcloud</category>
      <category>cheatsheet</category>
    </item>
    <item>
      <title>AI Directory: Email assistant</title>
      <dc:creator>Lavender</dc:creator>
      <pubDate>Sat, 09 Dec 2023 01:57:51 +0000</pubDate>
      <link>https://dev.to/lavenderyellowbellie/ai-directory-email-assistant-22lc</link>
      <guid>https://dev.to/lavenderyellowbellie/ai-directory-email-assistant-22lc</guid>
      <description>&lt;ul&gt;
&lt;li&gt;&lt;a href="https://missiveapp.com"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--tRryjWsU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://icon.horse/icon/missiveapp.com" alt="Favicon" width="180" height="180"&gt; Missive&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://magicreach.ai"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--pSbnbNfY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://icon.horse/icon/magicreach.ai" alt="Favicon" width="32" height="32"&gt; Magicreach&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://ellieai.com"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--grqSXpAK--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://icon.horse/icon/ellieai.com" alt="Favicon" width="32" height="32"&gt; Ellie&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://superreply.co"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--bYne1kjk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://icon.horse/icon/superreply.co" alt="Favicon" width="512" height="512"&gt; Superreply&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://chatgptwriter.ai"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--QEUCgdPM--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://icon.horse/icon/chatgptwriter.ai" alt="Favicon" width="512" height="512"&gt; Chatgpt writer&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://superhuman.com"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--qNHV6Zky--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://icon.horse/icon/superhuman.com" alt="Favicon" width="32" height="32"&gt; Superhuman&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;h2&gt;
  
  
  Useful links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://simplecheatsheet.com/"&gt;Create Online cheatsheet&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://simplecheatsheet.com/ai-directory"&gt;AI Directory Cheatsheet&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;

</description>
      <category>aidirectory</category>
      <category>cheatsheet</category>
    </item>
    <item>
      <title>Neo4j: List predicates</title>
      <dc:creator>Lavender</dc:creator>
      <pubDate>Fri, 08 Dec 2023 17:05:17 +0000</pubDate>
      <link>https://dev.to/lavenderyellowbellie/neo4j-list-predicates-1gh3</link>
      <guid>https://dev.to/lavenderyellowbellie/neo4j-list-predicates-1gh3</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;all(x IN coll WHERE x.property IS NOT NULL)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Returns true if the predicate is true for all elements in the list.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;any(x IN coll WHERE x.property IS NOT NULL)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Returns true if the predicate is true for at least one element in the list.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;none(x IN coll WHERE x.property IS NOT NULL)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Returns true if the predicate is false for all elements in the list.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;single(x IN coll WHERE x.property IS NOT NULL)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Returns true if the predicate is true for exactly one element in the list.&lt;/p&gt;

&lt;blockquote&gt;
&lt;h2&gt;
  
  
  Useful links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://simplecheatsheet.com/"&gt;Create Online cheatsheet&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://simplecheatsheet.com/neo4j"&gt;Neo4j Cheatsheet&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;

</description>
      <category>neo4j</category>
      <category>cheatsheet</category>
    </item>
  </channel>
</rss>
