Code - Cheat Sheet

Friday, June 26, 2020

Panels


Panels are the items at the right side of the Photoshop window that can display layer information and text options


SOURCE:

https://www.solveyourtech.com/how-reset-workspace-panel-layout-photoshop-cs5/#:~:text=Panels%20are%20the%20items%20at%20the%20right%20side,you%20to%20move%2C%20undock%20or%20close%20them%20periodically.

Saturday, May 30, 2020

< track > tag - example

  • A <track> is used as a child of an audio

<video width="640" height="480" src="https://archive.org/download/Popeye_forPresident/Popeye_forPresident_512kb.mp4" controls> <track kind="subtitles" src="subtitles_de.vtt" srclang="de"> <track kind="subtitles" src="subtitles_en.vtt" srclang="en"> <track kind="subtitles" src="subtitles_ja.vtt" srclang="ja"> Sorry, your browser doesn't support HTML5 <code>video</code>, but you can download this video from the <a href="https://archive.org/details/Popeye_forPresident" target="_blank">Internet Archive</a>. </video>



SOURCE:
https://html.com/tags/track/

Wednesday, May 27, 2020



DEMO REEL

,


  • a demo reel I created recently in After Effects highlighting my skills in the software applications that I primarily work in

Linting


  • analyzes source code in a particular programming language and flag potential problems like syntax errors, deviations from a prescribed coding style or using constructs known to be unsafe.
SOURCE:

Table - HTML Tags

SOURCE:
https://its.temple.edu/creating-tables-html




<TABLE>
   <TR>
      <TD>Data 1</TD>
      <TD>Data 2</TD>
   </TR>
   <TR>
      <TD>Data 3</TD>
      <TD>Data 4</TD>
   </TR>
   <TR>
      <TD>Data 5</TD>
      <TD>Data 6</TD>
   </TR>
</TABLE>





<TABLE BORDER="5"    WIDTH="50%"   CELLPADDING="4" CELLSPACING="3">
   <TR>
      <TH COLSPAN="2"><BR><H3>TABLE TITLE</H3>
      </TH>
   </TR>
   <TR>
      <TH>Column A</TH>
      <TH>Column B</TH>
   </TR>
   <TR ALIGN="CENTER">
      <TD>Data 1</TD>
      <TD>Data 2</TD>
   </TR>
</TABLE>



HTML tags

<table border= - listing the size table's border, cell padding, and cell spacing
<tr> - table tag
<th> - table header
<TH COLSPAN> - amount of space




SOURCE:
https://its.temple.edu/creating-tables-html

valid attributes of < textarea > element


  • max
  • from
  • spellcheck

What is the difference between post and get methods?


  • With get, data is included in the form body when send to the server. With post, the data goes through the URL

Panels

Panels are the items at the right side of the Photoshop window that can display layer information and text options SOURCE: https://www...