What are the various banner size for a website?

I was looking for an article that could give me the recommended size if I had to create advertisements for my own website.

I found this useful to start with. Kindly explore and I did manage to try a few variations with a tool called Inkscape.

SizeStyleGif WeightFlash Weight
468 x 60Full Banner20 KB30 KB
728 x 90Leaderboard25 KB35 KB
336 x 280Square25 KB35 KB
300 x 250Square25 KB35 KB

Credits : http://designerstoolbox.com/designresources/banners/

http://tim-stanley.com/post/standard-web-digital-image-sizes/

What are the alternatives to Java Swing?

I was going through some educational videos and found this interesting:
These are the alternatives to Java Swing - 1998. Sun/Oracle, part of SE.

  • AWT 1996 , Sun Oracle, part of SE
  • SWT 2001 - IBM, now open source ( Eclipse foundation )
  • QT Jambi 2006 Troltech, Nokia
  • Pivot WTK 2010, Open Source ( Apache Foundation )
  • Java Fx (2.x) 2011. Sun/Oracle, part of SE - rolled with Java 7 update 6
    • version 2,3,4,5,6,7 were skipped and Java FX 8 was release with Java 8.
Following are the Look and Feels a.k.a L&F's that come with Java Swing
  • Metal
  • Nimbus
  • CDE/Motif
  • Windows
  • Mac
  • GTK+ - Unix where GTK is installed.
Metal, Number and CDE can run cross platform.

UIManager.getInstalledLookAndFeel

Drawing Animations for youtube video

Try VideoScribe
https://www.quora.com/What-are-some-open-source-or-free-softwares-for-video-scribing-or-whiteboard-animations

Excel Object Model - Part1



Excel Object Model

Application, Workbook, Worksheet, Range



Ctrl+Y - deletes an entire line
Declaring Variables

Dim Age as Integer
Age= 77777 Integer - error 6 - overflow error
Dim decimals as a Double
Dim DOB as Date
Dim
false = 0 = No
True - not zero

Dim SuperRange as Range
Dim SuperWorksheet as Worksheet

variable names

s- string - Dim sFname as String
i- Integer
d- decimal
dt-Date
b - boolean
r - range
wk - worksheet
wb - workbook

Option Explicit - Declare your variables

Module based variable
Option Explicit

Private miAge as Integer

Private miAge as Integer ' Available across modules

Documentation

'Define variables
'Set Variables
' Change comments with green or highlight


Constant

const cFIRST  as Integer =0
You cannot define Dim sName as String = "Tim" - not allowed

Concatenation

Public Function FullName()
    ' Define Variables
    Dim sFirstName As String
    Dim sLastName As String
 
    'Set Variables
    sFirstName = "Ajith"
    sLastName = "Moni"
 
    'Combine variables
    FullName = sFirstName & sLastName
End Function


' Provide a # pound sign to signify the date to the parser #7/9/1965#

vbDefaultButton2

Public Sub Tester()
'Define Varibales
Dim sName As String

' Prompt the user for input data
sName = InputBox("Please enter your name", "Test", "First Name")

' Ask the user if the information is correct?
MsgBox "Are you sure this information is correct", vbQuestion + vbYesNoCancel + vbDefaultButton2, Verification

Src: http://techbus.safaribooksonline.com/video/office-and-productivity-applications/00022cworks

Excel Object Model VBA - Part2 - MsgBox and Functions

Public Sub msgBoxTester()
'Define Varibales
Dim sName As String

' Prompt the user for input data
sName = InputBox("Please enter your name", "Test", "First Name")

' Ask the user if the information is correct?
'MsgBox "Are you sure this information is correct", vbQuestion + vbYesNoCancel + vbDefaultButton2, Verification = vbIgnore

MsgBox Left(sName, 3)
MsgBox Right(sName, 3)
MsgBox Mid(sName, 3, 5)
MsgBox Mid(sName, 3)

'InStr - In string - search
' VB - We count 0,1,2,3,4,5
' InStr - Value > 0 - position starts from 1
MsgBox InStr(1, sName, " ")

' Get First Name
MsgBox Left(InStr(1, sName, " "))

' Get Last Name
MsgBox Right(InStr(1, sName, " "))

' Gives this with spaces
MsgBox Mid(InStr(1, sName, " "))

' Trim Function
' Ltrim, Trim, RTrim
MsgBox Mid(Trim(InStr(1, sName, " ")))



End Sub

What font size should i use for billboards, Desktop or mobile?

I wanted to find out the font size and readability of the font size to decide a comfortable distance which people can read. Example a project text.


What I learnt is we use pt or points in our PPT. This is the line height.
1 inch is 72 points. Or 72 points make an inch.


Now take a look at the table and choose what font size in inches or points is required when read at a distance measured in feet.


Example : if I am at a distance of 240 feet, I would need a 24 inch font for easier readability.
A 1 inch font size or 72 pt will serve the purpose of reading it from a 10 feet distance.


I found a multiplication factor or 10 when u convert inches to feet as described in the article below.


http://www.meadowoutdoor.com/billboard-design/good-vs-bad/font-size

How to design a logo? What should be the correct image size for web or mobile?

Day in and day out, we see a lot of images, some in the form or logos, some as icons, images in the form of advertisements.

I had been wondering as to what would it take for me to design a logo, a pamphlet, a billboard and following are some key takeaways as part of my learning's across the web.

1. Do read about raster graphics vs Vector graphics. Don't get into it too much. Summary is : Design in vector graphics and convert to raster graphics. Spend not more than 30 mins to understand the difference.

2. What should be the size of my image when viewed on a desktop, mobile or any other media output?
Learn about pixels. Again, material design takes a lot of reading but in simple terms, create a vector graphic image. Convert them into pixels of 16px x16px, 32px x 32px upto 196px x 196px.
Browers and mobile apps have their own way of rending as long as we manage to have muleiple images created to help them choose which to display for what screen size (mobile, desktop/laptop screens).

Note: Basic point, choose designing in Vector graphic and then convert to various sizes (16x x 16x to 96px x 96px) in PNG, JPEG or any format or your choice to avoid losing image quality. Allocate 30 mins to an hour for reading.

192x192 Pixel (XXHDPI)144x144 Pixel (XXHDPI)96x96 Pixel     (XHDPI)72x72 Pixel     (HDPI)48x48 Pixel     (MDPI)36x36 Pixel     (LDPI)


Do go through material design anything to get the basics of creating a logo and editing images. They own rendering images and text. Let's stick to their well designed and defined principles as a start. Read about font em,pt and % if you wanna know more. ( 2 articles. This heats your brain. 30 mins at max to an hour)

3. What software can I use to create a logo, edit an image?
Remember, a logo is complicated and consists of multiple images layered one above the other to materilize your idea of thousand words as a picture. ( Download and play around).

If you plan on designing one, you will need software's like photoshop, Adobe Illustrator, Paint.Net, Corel Draw etc., if you can afford
or
thank open source tools such as GIMP and an recent alternative "InkScape".
Note: Each of these tools does take a loooooong time to get a feel of creating one.

Summary:

I spend about 6 man hours to read and 15 mins to write this article.
However, my search to get to this stage has been a constant thought over a period of 5 years to get to this. Wish me good luck in self design of a logo, not to be a professional, but to own what i do and understand what it takes.

Disclaimer:
I am not promoting any of the tools mentioned above. My knowledge is limited to what I have read and I claim no expertise in the mention of the tools and companies in this article. I don't want to forget what I learnt, so I have documented the same on a shared platform in the form of blog for me and my fellow beings who in the same way have helped me gain the deeper understanding to what I am here today.

Additional Read:
http://tim-stanley.com/post/standard-web-digital-image-sizes/


Analytics