Tuesday, January 21, 2014

Windows Effects - Registry list

  • Display in Control Panel.
    • Effects tab.
      • Visual effects group box.

Change the Menu Show Delay
  • Animate windows when minimizing and maximizing.
    • Show transition effects for windows, menus and lists / Control the Windows Animation Function

 

Windows Effects - Registry

Display in Control Panel. Effects

Show transition effects for windows, menus and lists
[HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics]
MinAnimate
0=disabled
1=enabled

Reference:
 http://www.pctools.com/

Saturday, January 18, 2014

Label Singkatan KBBI

Label Istilah Singkatan Lema dalam Kamus Besar Bahasa Indonesia (KBBI)
Kamus Besar Bahasa Indonesia

Daftar label ragam bahasa, Label kelas kata, Label penggunaan bahasa, Label bidang kehidupan dan bidang ilmu, Singkatan-singkatan lain dalam Kamus Besar Bahasa Indonesia (KBBI)

a
adjektiva
adm
administrasi
anat
anatomi
adv
adverbia
akr
akronim
antr
antropologi
ar
arab
ark
arkeologi
bl
bali
bio
biologi
bld
belanda
bt
batak
cak
percakapan
cn
cina
dag
perdagangan
dem
demografi
dik
pendidikan
dok
kedokteran
dy
dayak
ek
ekonomi
el
elektronika
far
farmakologi
fil
filasafat
filol
filologi
fis
fisika
geo
geologi
graf
grafika
hid
hidrologi
hidm
hidrometerologi
huk
hukum
hut
kehutanan
ikn
perikanan
ing
inggris
isl
islam
it
italia
jk
jakarta
jp
jepang
jw
jawa
kap
perkapalan
kas
kasar
kat
katolik
ki
kias
kim
kimia
kl
klasik
kom
komunikasi
komp
komputer
kp
kependekan
kris
kristen
lay
pelayaran
lih
lihat
ling
linguistik
lp
lampung
lt
latin
mal
malaysia
man
manajemen
mat
matematika
mdr
madura
met
meteorologi
metal
metalurgi
mik
mikologi
mil
militer
min
mineralogi
mk
minangkabau
mnd
manado
n
nomina
num
numerologi
olr
olahraga
p
partikel
pb
peribahasa
pet
petrologi
pol
politik
pron
pronomina
psi
psikologi
publ
publikasi
sas
sastra
sd
sunda
sen
kesenian
skr
sanskerta
sos
sosiologi
sp
spanyol
stat
statistika
tan
pertanian
tek
teknik
tern
peternakan
v
verba
zool
zoologi

Label Istilah Singkatan Lema dalam Kamus Besar Bahasa Indonesia (KBBI)
Panduan singkatan dalam KBBI Offline

Friday, January 17, 2014

Web-based Sandbox Tools for Testing Your Code Snippets 2

Web-based Sandbox Tools for Testing Your Code Snippets


Runnable
Full-stack code anyone can run from their browser

open source code editor for web designers and front-end developers.

Ideone
an online compiler and debugging tool which allows you to compile source code and execute it online in more than 60 programming languages.

Reference:
http://sixrevisions.com/
http://www.hongkiat.com/
http://www.techcrunch.com/

Thursday, January 16, 2014

Web-based Sandbox Tools for Testing Your Code Snippets 1

Tinkerbin
can run HTML, CSS and JavaScript, as well as CSS and JavaScript abstraction languages/metalanguages like SASS and CoffeeScript.

JS Bin
JavaScript/HTML code-testing tool. ability to reference (include) popular open source libraries like jQuery, MooTools, YUI, Modernizr, etc.

JS Fiddle
a free sandbox tool for HTML, CSS and JS. ability to reference popular JS libraries/frameworks like jQuery, YUI and MooTools and an Ajax-request-testing functionality for simulating asynchronous calls for your code. command for running JSLint that can check your JavaScript for code quality and the "Tidy Up" code-formatting command for re-indenting your code.
Similar: Kodtest, LiveWeave

CSSDesk
online CSS/HTML sandbox tool is a slick way of testing snippets of your style sheet and markup. You have the option of changing the background of the preview pane.

jsdo.it
sandboxing tool emphasizes on community engagement and collaboration, with features that easily give you the opportunity to share your code on your social networks as well as within the site.

Tryit Editor Instant
If you don’t need all the features that the above tools offer and simply want one for quickly testing HTML, check this one out.
Similar: WriteCodeOnline

PractiCode
online code editor is a supplementary tool for Landofcode.com’s educational web design materials.

JavaScript Sandbox
uncomplicated tool for testing your JavaScript code snippets.

Google Code Playground
free APIs and services for things such as web fonts, Google Analytics and a content distribution network (CDN) for popular, open source JavaScript libraries (such as jQuery), and others.


http://htmledit.squarefree.com/
A very simple HTML previewing tool
Similar: html5snippet

WriteCodeOnline
javascript, php, url encoder.

Online PHP IDE
a free online IDE for editing files on an FTP server.

Full Function Programming Editor

Koding
AmyEditor
ShiftEditCodePen

Others:
SQL Fiddle
which works in the same way, except for SQL database syntax. I have yet to find another alternative for testing database code and this is by far my favorite choice.

Runnable
Full-stack code anyone can run from their browser

Reference:
http://sixrevisions.com/
http://www.hongkiat.com/

Wednesday, January 8, 2014

Job Application Requirement


Job Application Letter

Whether you want to apply paper job application or an online job application.

Resume / Curriculum Vitae (CV)
 A resume may providing personal information, work history, education, qualifications and skills.

Cover Letter / Job Application Letters
  A cover letter is a document that provides information about yourself and your interest in applying for the job.


Reference:
http://jobsearch.about.com/
http://en.wikipedia.org/
http://www.career.vt.edu/JobSearchGuide/
http://hiring.monster.com/hr/hr-best-practices/recruiting-hiring-advice.aspx


Monday, January 6, 2014

String Format JavaScript function

String Format JavaScript function

toUpperCase()
 
toLowerCase()
puts the whole string in lower case
 
Reference:
http://eloquentjavascript.net/
http://www.quirksmode.org/js/
http://jsforcats.com/
http://www.tutorialspoint.com/javascript/

JavaScript Properties

JavaScript Properties


length

length gives you the length of a string.


Reference:
http://www.tizag.com/javascriptT/
http://www.quirksmode.org/js/
http://jsforcats.com/
http://www.tutorialspoint.com/javascript/
http://www.w3schools.com/js/default.asp
http://www.2ality.com/2013/06/basic-javascript.html 

JavaScript String Function - Merge and Split

merge
concat(value1, value2,…)

or you can using Concatenating strings (+) operator
document.write(a + b);

split
split(delimiter, [limit])


notes:
split() does not work in Netscape 2 and Explorer 3.

Reference:
http://www.quirksmode.org/js/
http://jsforcats.com/
http://www.tutorialspoint.com/javascript/
http://www.w3schools.com/js/default.asp
http://www.2ality.com/2013/06/basic-javascript.html 

Favourite Toys

Favourite Toys


  • video games
  • puzzles
  • Model building
  • Scooter
  • Action figures
Reference:
http://www.favouritetoys.com.au/

Find In String - JavaScript

Find In String - JavaScript

 

indexOf

lastIndexOf

charAt

 

Reference:
http://www.tizag.com/javascriptT/
http://www.quirksmode.org/js/
http://jsforcats.com/
http://www.tutorialspoint.com/javascript/
http://www.jquery4u.com/javascript/

Favourite Toys Categories 2

Favourite Toys Categories:



Animals
Arts & Crafts
Baby & Toddler
Bags and Decor
Bath Toys
Bean Bags
Character Toys
Construction Toys
Dinosaurs
Dolls
Dolls House
Dress-Ups
Electronic
Fairy Land
Games
Musical Instruments
Outdoor Toys
Pretend Play
Puzzles
Ride-Ons
Science & Nature
Sport
Trains
Trucks
Travel Toys
Wooden
Xmas

http://8903list.blogspot.com/

Reference:
http://www.myfavtoys.com/

JavaScript String Function 1

substring extraction

  • String.slice( begin [, end ] )
  • String.substring( from [, to ] )
  • String.substr( start [, length ] )
Other string extraction ( split )
http://8903list.blogspot.com/

Reference:
http://www.sitepoint.com/javascript/
http://www.quirksmode.org/js/
http://jsforcats.com/
http://www.tutorialspoint.com/javascript/
http://www.w3schools.com/js/default.asp
http://www.2ality.com/2013/06/basic-javascript.html

Top favorite car colors

Top 10 favorite car colors

 
  • White
  • Black
  • Silver
  • Blue
  • Grey
  • Red
  • Beige/Brown
  • Green
  • Yellow/Gold
  • Orange