Wednesday, June 30, 2010

LG Lollipop GD580



I've been browsing through the web, searching for cute cellphones, when these new LG phones caught my eye. The LG Lollipop GD580. It's so eye-candy especially the pink one, maybe that's the reason why they called it Lollipop. LG company sure have sweet tooth for releasing cellphone models with names derived from sweets. Who can forget the released LG models such as: LG CHOCOLATE BL40 & BL-20, LG Cookie series and LG Ice Cream KF 350. Owning these type of phones would surely give you a toothache or a diabetes..hahaha...joke.


I read that the LG Lollipop was first released in Korea. It's kinda obvious that the teens & young adults are the targeted market for having these cute stylish design. Available colors includes: Cutie Pink, Boyish Titanium, and Aqua Blue. I personally loved the cutie pink color. So what's the key features of this model? (Quoted from the LG site)

1. The sweetest design 
     Be charmed by Lollipop's head turning colors. With hidden lighting at the bottom of the phone, you can choose from six colours that light up when you receive calls.
2. Lovable graphics
  Lollipop comes with a variety of delightful wallpapers. Choose graphics to suit your style and give your phone a lovely makeover.

3. Captivating LED Lights
    Dazzle your friends with your creativity by designing your own unique LED lights. Whether you are feeling happy or blue, you can now express it with your phone!

4. Instant Silence
    Uh-oh. Forgot to switch to silent mode? Not a problem as you can instantly switch to slient mode by just turning the phone over so you get all the quiet time you need.

Now, for the techy side, here's the basic specifications:

Display: TFT 2.8 inches with 240x400pixels resolution
Memory: microSD up to 8GB
3G: HSDPA 3.6Mbps
Primary camera: 3.15MP
Video: yes
Secondary camera: 1.3MP for video calls
Browser: WAP 2.0/xHtML, HTML

For the complete specification, you may see it here.

It's already available here in the Philippines for around Php 12k.


TCGB!


Monday, June 28, 2010

Static Routing Activity




Click here to download the packet tracer activity file:


Given Network: 205.200.15.0/29

I. Subnetting:

00000000.00000000.00000000.00000|000
32 8

32-2= 30 usable hosts
256-8= 248 subnet 255.255.255.248
8=1st usable host

205.200.15.8 – 1st – R1 fa0/0
205.200.15.16 – 2nd – 205.200.15.17 (R1) / 205.200.15.18 (R2)
205.200.15.24 – 3rd – R2 fa0/0
205.200.15.32 – 4th – 205.200.15.33 (R2) / 205.200.15.34 (R3)
205.200.15.40 – 5th – 205.200.15.41 (R1) / 205.200.15.42 (R4)
205.200.15.48 – 6th – R3 fa0/0
205.200.15.56 – 7th – 205.200.15.57 (R3) / 205.200.15.58 (R4)
205.200.15.64 – 8th – R4 fa0/0



(IP) (subnet) (network)
*R1: fa0/0= 205.200.15.9 255.255.255.248 205.200.15.8
s0/0/0= 205.200.15.17 255.255.255.248 205.200.15.16
s0/0/1= 205.200.15.41 255.255.255.248 205.200.15.40

*R2: fa0/0= 205.200.15.25 255.255.255.248 205.200.15.24
s0/0/0= 205.200.15.18 255.255.255.248 205.200.15.16
s0/0/1= 205.200.15.33 255.255.255.248 205.200.15.32

*R3: fa0/0= 205.200.15.49 255.255.255.248 205.200.15.48
s0/0/0= 205.200.15.57 255.255.255.248 205.200.15.56
s0/0/1= 205.200.15.34 255.255.255.248 205.200.15.32

*R4: fa0/0= 205.200.15.65 255.255.255.248 205.200.15.64
s0/0/0= 205.200.15.58 255.255.255.248 205.200.15.56
s0/0/1= 205.200.15.42 255.255.255.248 205.200.15.40

*PC1: 205.200.15.10
*PC2: 205.200.15.26
*PC3: 205.200.15.50
*PC4: 205.200.15.66

II. Configuring the Routers:
*R1:

Router>ena
Router#conf t
Router(config)#hostname R1
R1(config)#no ip domain-lookup
R1(config)#enable password cisco
R1(config)#enable secret class
R1(config)#line console 0
R1(config-line)#password cisco
R1(config-line)#login
R1(config-line)#exit
R1(config)#line vty 0 4
R1(config-line)#password cisco
R1(config-line)#login
R1(config-line)#exit
R1(config)#int fa0/0
R1(config-if)#ip addr 205.200.15.9 255.255.255.248
R1(config-if)#no shut
R1(config-if)#exit
R1(config)#int s0/0/0
R1(config-if)#clock rate 56000
R1(config-if)#ip addr 205.200.15.17 255.255.255.248
R1(config-if)#no shut
R1(config-if)#exit
R1(config)#int s0/0/1
R1(config-if)#clock rate 56000
R1(config-if)#ip addr 205.200.15.41 255.255.255.248
R1(config-if)#no shut
R1(config-if)#exit
R1(config)#ip route 205.200.15.24 255.255.255.248 205.200.15.18
R1(config)#ip route 205.200.15.32 255.255.255.248 205.200.15.18
R1(config)#ip route 205.200.15.48 255.255.255.248 205.200.15.34
R1(config)#ip route 205.200.15.56 255.255.255.248 205.200.15.34
R1(config)#ip route 205.200.15.64 255.255.255.248 205.200.15.42
R1(config)#end
R1#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
* - candidate default, U - per-user static route, o - ODR
P - periodic downloaded static route

Gateway of last resort is not set

205.200.15.0/29 is subnetted, 8 subnets
C 205.200.15.8 is directly connected, FastEthernet0/0
C 205.200.15.16 is directly connected, Serial0/0/0
S 205.200.15.24 [1/0] via 205.200.15.18
S 205.200.15.32 [1/0] via 205.200.15.18
C 205.200.15.40 is directly connected, Serial0/0/1
S 205.200.15.48 [1/0] via 205.200.15.34
S 205.200.15.56 [1/0] via 205.200.15.34
S 205.200.15.64 [1/0] via 205.200.15.42
R1#copy run start


*R2:

Router>ena
Router#conf t
Router(config)#hostname R2
R2(config)#no ip domain-lookup
R2(config)#enable password cisco
R2(config)#enable secret class
R2(config)#line console 0
R2(config-line)#password cisco
R2(config-line)#login
R2(config-line)#exit
R2(config)#line vty 0 4
R2(config-line)#password cisco
R2(config-line)#login
R2(config-line)#exit
R2(config)#int fa0/0
R2(config-if)#ip addr 205.200.15.25 255.255.255.248
R2(config-if)#no shut
R2(config-if)#exit
R2(config)#int s0/0/0
R2(config-if)#clock rate 56000
R2(config-if)#ip addr 205.200.15.18 255.255.255.248
R2(config-if)#no shut
R2(config-if)#exit
R2(config)#int s0/0/1
R2(config-if)#clock rate 56000
R2(config-if)#ip addr 205.200.15.33 255.255.255.248
R2(config-if)#no shut
R2(config-if)#exit
R2(config)#ip route 205.200.15.8 255.255.255.248 205.200.15.17
R2(config)#ip route 205.200.15.48 255.255.255.248 205.200.15.34
R2(config)#ip route 205.200.15.56 255.255.255.248 205.200.15.34
R2(config)#ip route 205.200.15.64 255.255.255.248 205.200.15.58
R2(config)#ip route 205.200.15.40 255.255.255.248 205.200.15.17
R2(config)#end
R2#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
* - candidate default, U - per-user static route, o - ODR
P - periodic downloaded static route

Gateway of last resort is not set

205.200.15.0/29 is subnetted, 8 subnets
S 205.200.15.8 [1/0] via 205.200.15.17
C 205.200.15.16 is directly connected, Serial0/0/0
C 205.200.15.24 is directly connected, FastEthernet0/0
C 205.200.15.32 is directly connected, Serial0/0/1
S 205.200.15.40 [1/0] via 205.200.15.17
S 205.200.15.48 [1/0] via 205.200.15.34
S 205.200.15.56 [1/0] via 205.200.15.34
S 205.200.15.64 [1/0] via 205.200.15.58
R2#copy run start

*R3:

Router>ena
Router#conf t
Router(config)#hostname R3
R3(config)#no ip domain-lookup
R3(config)#enable password cisco
R3(config)#enable secret class
R3(config)#line console 0
R3(config-line)#password cisco
R3(config-line)#login
R3(config-line)#exit
R3(config)#line vty 0 4
R3(config-line)#password cisco
R3(config-line)#login
R3(config-line)#exit
R3(config)#int fa0/0
R3(config-if)#ip addr 205.200.15.49 255.255.255.248
R3(config-if)#no shut
R3(config-if)#exit
R3(config)#int s0/0/0
R3(config-if)#clock rate 56000
R3(config-if)#ip addr 205.200.15.57 255.255.255.248
R3(config-if)#no shut
R3(config-if)#exit
R3(config)#int s0/0/1
R3(config-if)#clock rate 56000
R3(config-if)#ip addr 205.200.15.34 255.255.255.248
R3(config-if)#no shut
R3(config-if)#exit
R3(config)#ip route 205.200.15.24 255.255.255.248 205.200.15.33
R3(config)#ip route 205.200.15.64 255.255.255.248 205.200.15.58
R3(config)#ip route 205.200.15.40 255.255.255.248 205.200.15.58
R3(config)#ip route 205.200.15.8 255.255.255.248 205.200.15.41
R3(config)#ip route 205.200.15.16 255.255.255.248 205.200.15.33
R3(config)#end
R3#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
* - candidate default, U - per-user static route, o - ODR
P - periodic downloaded static route

Gateway of last resort is not set

205.200.15.0/29 is subnetted, 8 subnets
S 205.200.15.8 [1/0] via 205.200.15.41
S 205.200.15.16 [1/0] via 205.200.15.33
S 205.200.15.24 [1/0] via 205.200.15.33
C 205.200.15.32 is directly connected, Serial0/0/1
S 205.200.15.40 [1/0] via 205.200.15.58
C 205.200.15.48 is directly connected, FastEthernet0/0
C 205.200.15.56 is directly connected, Serial0/0/0
S 205.200.15.64 [1/0] via 205.200.15.58
R3#copy run start


*R4:

Router>ena
Router#conf t
Router(config)#hostname R4
R4(config)#no ip domain-lookup
R4(config)#enable password cisco
R4(config)#enable secret class
R4(config)#line console 0
R4(config-line)#password cisco
R4(config-line)#login
R4(config-line)#exit
R4(config)#line vty 0 4
R4(config-line)#password cisco
R4(config-line)#login
R4(config-line)#exit
R4(config)#int fa0/0
R4(config-if)#ip addr 205.200.15.65 255.255.255.248
R4(config-if)#no shut
R4(config-if)#exit
R4(config)#int s0/0/0
R4(config-if)#clock rate 56000
R4(config-if)#ip addr 205.200.15.58 255.255.255.248
R4(config-if)#no shut
R4(config-if)#exit
R4(config)#int s0/0/1
R4(config-if)#clock rate 56000
R4(config-if)#ip addr 205.200.15.42 255.255.255.248
R4(config-if)#no shut
R4(config-if)#exit
R4(config)#ip route 205.200.15.8 255.255.255.248 205.200.15.41
R4(config)#ip route 205.200.15.16 255.255.255.248 205.200.15.41
R4(config)#ip route 205.200.15.24 255.255.255.248 205.200.15.18
R4(config)#ip route 205.200.15.48 255.255.255.248 205.200.15.57
R4(config)#ip route 205.200.15.32 255.255.255.248 205.200.15.57
R4(config)#end
R4#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
* - candidate default, U - per-user static route, o - ODR
P - periodic downloaded static route

Gateway of last resort is not set

205.200.15.0/29 is subnetted, 8 subnets
S 205.200.15.8 [1/0] via 205.200.15.41
S 205.200.15.16 [1/0] via 205.200.15.41
S 205.200.15.24 [1/0] via 205.200.15.18
S 205.200.15.32 [1/0] via 205.200.15.57
C 205.200.15.40 is directly connected, Serial0/0/1
S 205.200.15.48 [1/0] via 205.200.15.57
C 205.200.15.56 is directly connected, Serial0/0/0
C 205.200.15.64 is directly connected, FastEthernet0/0
R4#copy run start

Sunday, June 27, 2010

First haul of Cyleina soaps


    I'm a member of candymag, female network & cosmo forum. As I was browsing through these female magazine forums, I saw several thread topics about Cyleina soaps. Most of the girls would testify that this brand is so good & effective. Not to mention the affordability of these products. That's only an icing to the cake. People nowadays are so health concious, they wanted naturally made or the so-called Organics. Not only in food but also in beauty products. Since soap is the number 1 tool in our daily beauty regimen, organic soaps boosts its popularity in the market today.

    Back to the picture above. I mentioned a while ago that I saw this organic soap brand in a forum.The name is Cyleina organic soap, produced and distributed locally. See their profile here: http://cyleina.multiply.com/

    From the same thread in the forum, I met a Cyleina reseller near our location. She's Ronela Carbo, here's her multiply account: http://ellacarbo.multiply.com/. Most reseller do meetups. Considering that the soaps' price are cheap, they required a minimum number of orders or a handling fee to make up for their transpo during meetups.  Ella, short for Ronela, entail a minimum of 4 soaps for a meetup in SM Bacoor. We ordered 5 soaps. hehe. If not too much, I'll order all kinds of Cyleina soaps. They have a wide array of soap variants. It's so interesting to try  each of them. Anyway, my bf and I ordered 2 Tomato soap, 2 Black pearl soap & 1 Glutathione soap for myself (harhar).

    Here's the uses/description of the soaps we've ordered and our review after using it:

1. Tomato bar-
*Description: Tomatoes have high vitamin content and are a rich source of the antioxidant nutrient, lycopene. This is the red pigment contained in tomatoes. Lycopene counter the ageing effects on the skin, by cutting out the number of free radicals in your body.

Capture the health benefits of tomato to your skin by using CYLEINA ORGANIC TOMATO SOAP! Made from red and ripe organically grown tomatoes, CYLEINA ORGANIC TOMATO SOAP counters oily skin by absorbing surplus oil. The tonic benefits of tomato deeply cleanses and tightens the pores. Alpha-Hydroxy Acids found in tomato helps get rid of pimples and acne through its gentle exfoliating action and this also results to getting your cheeks a rosy hue and your body a fair glow!

BEST FOR: Oily skin with large pores.

*Review: People from the forum stated that after using it a few times, they saw changes on their face. Tomato bar, by the way, are best use for the face. Some of them claimed that they had rosy cheeks. Some even said that they felt a stingy effect on their faces after early usage. As for myself, I didn't felt any stingy effect on my face. As of this moment, I didn't notice any rosy cheeks or whitening color on my face...yet. But what I noticed is that  after using the soap, the oil build-up on my face lessen.

2. Black Pearl soap-

*Description:
This is their best seller soap.
Uses:
  • Whitens skin tone instantly!
  • Lightens dark spots and pimple scars
  • Effective in lightening dark underarms and inner thighs caused by imbalanced hormones, chemical burns from deodorants.
  • anti-wrinkle&best skin moisturizer
  • safe and will not sting!
*Review:  I think it's too early to tell any difference. Some said you can see the result after continuous usage. This soap has a menthol kind of effect on the skin while using it. It smells nice too.

3.Glutamaxxx Glutathione soap-

*Description: As we all know, a glutathione soap is popular for skin whitening. This soap is plain white & mildly scented.
 *Review: I just recently used this, so I can't tell if it's effective or not. Maybe after a month or so, I could follow up this review.


Long time Cyleina users combine 2 or 3 soap variants every use. Popular combinations includes: BP+Gluta  / BP+PGM / BP+Kojic / Tomato+BP or PGM or Gluta. Personally, I uses Tomato alone for my face then BP+Gluta for the body. These combinations may have different effects depending on the skin of the user.

That's all for now.

TCGB!

♥Sakura135♥



Saturday, June 26, 2010

Eclipse Tumbler

eclipse tumbler

Yesterday morning, we ate our brunch at Jollibee Molino, near our home. I saw their Twilight:Eclipse poster wherein you can get an Eclipse edition tumbler by adding Php25 to your purchased Jollibee burger or Jolly hotdog value meal. Or if you order a barkada meal, you can avail 3 free tumblers. There are 3 designs to choose from: Jacob, Bella and Edward. I wanted the Edward design but it was already out-of-stock! I got my hands on Bella tumbler, but with Jacob on the side. I like Jake, but I'm into team Edward. (-_-) Jollibee is so lucky to have thought this kind of promo, i bet their burgers & hotdogs' sales hiked up. Hehe. If I happen to pass by a Jollibee branch again, I'll get my hands on the Eclipse box from the Barkada meal promo. You might think it cheap but I'm a sucker for Twilight stuffs. Lol. ^,..,^

TCGB!

♥Sakura135♥