Skip to content

Instantly share code, notes, and snippets.

@AliMD
Created October 1, 2012 11:23
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save AliMD/3811059 to your computer and use it in GitHub Desktop.
CIW Last sessions

CIW Des Idea for last sessions

  • Google Map
  • Base64
  • Custome Animations
  • SVG
  • Canvas
  • Adobe CS Pack
  • photoshop save4web
  • sizes
  • photoshop actions
  • Bridge
  • Flash
  • PHP Intro
  • UnderDev
  • favicon
  • .com domain
  • Rubic

CIW Pro Idea for last sessions

  • htacces
  • Sham :(
  • ajax $('div.content').load('home.php');
  • underdev
  • robot.txt, sutemap, analytics
  • db view
  • db insert
  • db search query
@AliMD
Copy link
Author

AliMD commented Oct 3, 2012

Graphic Files

  1. Vector
    1. SVG (Scalable Vector Graphics)
    2. SWF (Shock Wave Flash)
    3. Fonts (like WOFF)
    4. ...
  2. Pixels
    1. Lossy
      1. JPG (JPEG)
    2. LostLess
      1. GIF
      2. PNG8
      3. PNG24

@AliMD
Copy link
Author

AliMD commented Oct 4, 2012

Monitors Type

  1. CRT (Cathode Ray Tube)
  2. LCD (Liquid Crystal Display)
    1. Normal (Gradient light)
    2. BLED (Backlight LED)
  3. LED (Light Emitting Diode) more
    1. Old LED Display
    2. OLED (Organic LED)
      1. PMOLED (Passive Matrix)
      2. AMOLED (Active Matrix)
        1. AMOLED+
        2. FAMOLED+ (Flexible AMOLED)

@AliMD
Copy link
Author

AliMD commented Oct 4, 2012

Screen Size

  1. Aspect Ratio
    1. 4:3 (Old Display)
    2. 16:10 (Width Monitor Display)
    3. 16:9 (Cinema Display, TV)
  2. Image Size (height)
    1. 240p
    2. 360p
    3. 480p
    4. 640p (16:9, iphone5)
    5. 720p
    6. 768p (4:3)
    7. 1080p
    8. 1800p (Retina 5.1M)

note: width (16:9) = 1080p * 16 / 9

more

@AliMD
Copy link
Author

AliMD commented Oct 6, 2012

Redirect all url (without type) to .php

** => .php

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f [OR]
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^([A-z0-9/_+-]+)$ /$1.php [L]
</IfModule>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment