• Photography basics: Production Rendering Resolution Charts

    , , ,
    https://www.urtech.ca/2019/04/solved-complete-list-of-screen-resolution-names-sizes-and-aspect-ratios/

     

    Resolution – Aspect Ratio 4:03 16:09 16:10 3:02 5:03 5:04
    CGA 320 x 200
    QVGA 320 x 240
    VGA (SD, Standard Definition) 640 x 480
    NTSC 720 x 480
    WVGA 854 x 450
    WVGA 800 x 480
    PAL 768 x 576
    SVGA 800 x 600
    XGA 1024 x 768
    not named 1152 x 768
    HD 720 (720P, High Definition) 1280 x 720
    WXGA 1280 x 800
    WXGA 1280 x 768
    SXGA 1280 x 1024
    not named (768P, HD, High Definition) 1366 x 768
    not named 1440 x 960
    SXGA+ 1400 x 1050
    WSXGA 1680 x 1050
    UXGA (2MP) 1600 x 1200
    HD1080 (1080P, Full HD) 1920 x 1080
    WUXGA 1920 x 1200
    2K 2048 x (any)
    QWXGA 2048 x 1152
    QXGA (3MP) 2048 x 1536
    WQXGA 2560 x 1600
    QHD (Quad HD) 2560 x 1440
    QSXGA (5MP) 2560 x 2048
    4K UHD (4K, Ultra HD, Ultra-High Definition) 3840 x 2160
    QUXGA+ 3840 x 2400
    IMAX 3D 4096 x 3072
    8K UHD (8K, 8K Ultra HD, UHDTV) 7680 x 4320
    10K  (10240×4320, 10K HD) 10240 x (any)
    16K (Quad UHD, 16K UHD, 8640P) 15360 x 8640

     

    (more…)

  • SourceTree vs Github Desktop – Which one to use

    ,

    Sourcetree and GitHub Desktop are both free, GUI-based Git clients aimed at simplifying version control for developers. While they share the same core purpose—making Git more accessible—they differ in features, UI design, integration options, and target audiences.


    Installation & Setup

    • Sourcetree
      • Download: https://www.sourcetreeapp.com/
      • Supported OS: Windows 10+, macOS 10.13+
      • Prerequisites: Comes bundled with its own Git, or can be pointed to a system Git install.
      • Initial Setup: Wizard guides SSH key generation, authentication with Bitbucket/GitHub/GitLab.
    • GitHub Desktop
      • Download: https://desktop.github.com/
      • Supported OS: Windows 10+, macOS 10.15+
      • Prerequisites: Bundled Git; seamless login with GitHub.com or GitHub Enterprise.
      • Initial Setup: One-click sign-in with GitHub; auto-syncs repositories from your GitHub account.

    Feature Comparison

    FeatureSourcetreeGitHub Desktop
    Branch VisualizationDetailed graph view with drag-and-drop for rebasing/mergingLinear graph, simpler but less configurable
    Staging & CommitFile-by-file staging, inline diff viewAll-or-nothing staging, side-by-side diff
    Interactive RebaseFull support via UIBasic support via command line only
    Conflict ResolutionBuilt-in merge tool integration (DiffMerge, Beyond Compare)Contextual conflict editor with choice panels
    Submodule ManagementNative submodule supportLimited; requires CLI
    Custom Actions / HooksDefine custom actions (e.g., launch scripts)No UI for custom Git hooks
    Git Flow / Hg FlowBuilt-in supportNone
    PerformanceCan lag on very large reposGenerally snappier on medium-sized repos
    Memory FootprintHigher RAM usageLightweight
    Platform IntegrationAtlassian Bitbucket, JiraDeep GitHub.com / Enterprise integration
    Learning CurveSteeper for beginnersBeginner-friendly
    (more…)