Showing posts with label in. Show all posts
Showing posts with label in. Show all posts

Wednesday, April 6, 2016

Wood shed designs to live in the hearts Here

Wood shed designs to live in the hearts Here


Wood shed designs to live in the hearts Here


Wood shed designs to live in the hearts Here is one of the most requested categories, one of which is you. Here is an easy way about the steps that are easy to use and follow about Wood shed designs to live in the hearts Here for you. To get Wood shed designs to live in the hearts Here in detail, please click on the image below. Thanks for visit us.
Read More..

Pent shed plans to live in christ Diy

Pent shed plans to live in christ Diy


Pent shed plans to live in christ Diy


Pent shed plans to live in christ Diy is one of the most requested categories, one of which is you. Here is an easy way about the steps that are easy to use and follow about Pent shed plans to live in christ Diy for you. To get Pent shed plans to live in christ Diy in detail, please click on the image below. Thanks for visit us.
Read More..

Wednesday, March 30, 2016

Plans for run in shed

Plans for run in shed


Plans for run in shed


Plans for run in shed is one of the most requested categories, one of which is you. Here is an easy way about the steps that are easy to use and follow about Plans for run in shed for you. To get Plans for run in shed in detail, please click on the image below. Thanks for visit us.
Read More..

Sunday, March 27, 2016

Build wooden shed companies in central florida Diy Shed Plans

Build wooden shed companies in central florida Diy Shed Plans


Build wooden shed companies in central florida Diy Shed Plans


Build wooden shed companies in central florida Diy Shed Plans is one of the most requested categories, one of which is you. Here is an easy way about the steps that are easy to use and follow about Build wooden shed companies in central florida Diy Shed Plans for you. To get Build wooden shed companies in central florida Diy Shed Plans in detail, please click on the image below. Thanks for visit us.
Read More..

Sunday, March 13, 2016

Diy Storage Bench Ideas Run In Shed Plans

Diy Storage Bench Ideas Run In Shed Plans


Diy Storage Bench Ideas Run In Shed Plans


Diy Storage Bench Ideas Run In Shed Plans is one of the most requested categories, one of which is you. Here is an easy way about the steps that are easy to use and follow about Diy Storage Bench Ideas Run In Shed Plans for you. To get Diy Storage Bench Ideas Run In Shed Plans in detail, please click on the image below. Thanks for visit us.
Read More..

Wednesday, March 2, 2016

Guide Easy woodworking vacation ideas in texas

Guide Easy woodworking vacation ideas in texas


Guide Easy woodworking vacation ideas in texas


Guide Easy woodworking vacation ideas in texas is one of the most requested categories, one of which is you. Here is an easy way about the steps that are easy to use and follow about Guide Easy woodworking vacation ideas in texas for you. To get Guide Easy woodworking vacation ideas in texas in detail, please click on the image below. Thanks for visit us.
Read More..

Sunday, April 13, 2014

What Characters And Weapons Are Contained In AC4

By James Polinsky


The unveiling concerning the upcoming AC4 Black Flag is pretty much here. Ubisoft has presented quite a few video game trailers, showcasing the numerous personas, gameplay, and weaponry. Im going to quickly cover the several weapons plus storyline characters in this ground breaking video game title.

Assuming you have been keeping up with all the current AC4 news, well then you have in all likelihood already heard of the newest personas that are likely to be provided, and weaponry like hidden blades, flintlock pistols, and swords. I would perhaps like to take this subject one step more and get into a tad bit more info in relation to these particular weapons, in addition to the storyline characters you will surely run across.

Take a look at this short list of weapons and game characters below.

Weaponry:

Blow Pipe: This is in fact the newest addition to the AC franchise. The blow pipe has several unique means of stopping your adversaries. When using crazy darts, your competition will commence to maneuver around nervously till he inevitably passes on. This is just a single example. Conversely, your enemy is likely to die a very gradual and excruciating death if you utilize toxic darts.

Double Blades: These are destined to be one of my top picks, I just know it. Double swords can be utilized to chop your opponent to smithereens, assuming you happen to be into that kind of thing just like me. I think this is seriously brilliant.

Flinging Knife blades: You can use flinging blades whenever youre wanting to execute your adversaries in a second. A very important thing you may want to be aware of is that the instantaneous killings exclusively work on less strong foes. Youll have to toss a couple of blades to pull off the killing in the event you are going up against a more dynamic adversary.

Protagonist types:

Edward Kenway: Almost everything will focus on the fundamental character referred to as Edward Kenway. You will be actively playing as him as you sail across the countless open-world lands.

Blackbeard: Blackbeard is actually among the most dreaded and infamous pirates throughout the whole video game. His wild methods and absence of mercy help make him a terrific component to the entire plot.

Charles Vane: Charles is quite possibly most recognized for being a really serious troublemaker. Every time he enters into the picture, you know a problem is simply ready to take place.

Anne Bonny: Now heres a mega strong female that handles herself perfectly in a nation packed with males. She doesnt really let herself get controlled inside of a male ruled planet. This is actually the remarkable aspect concerning her.

Calico Jack: Calico Jack is in fact an awfully outgoing individual who is in love with the girls. That is in essence all I can point out with reference to him.

All I could state is everything that Ive viewed thus far looks totally eye-catching. I truly know Im about to put in much time trying to become an authority in it. How about you?




About the Author:



Read More..

Tuesday, April 8, 2014

Destructor Functions in Detail

If you don’t know what destructor functions are, read Introduction to Constructor and Destructor functions of a Class. As the example
programs in this article makes use of the dynamic memory allocation of C++,
so please read Introduction to Dynamic Memory Allocation in C++ , in case you missed it.


When does the destructor function gets invoked


The examples below illustrates when the destructor function gets invoked:


Example 1:


  //Example Program in C++
#include<iostream.h>

class myclass
{
public:

~myclass()
{
cout<<"destructed
";
}
};

void main(void)
{
myclass obj;
cout<<"inside main
";
}

OUTPUT:


   inside main
destructed
Press any key to continue

As I said in the other article, destructors get invoked when the object of
a class goes out of scope. In this case, the object goes out of scope as the
program terminates. So the destructor gets invoked just before the program’s
termination.


Example 2:


  //Example Program in C++
#include<iostream.h>

void myfunc(void);

  class myclass
{
public:

~myclass()
{
cout<<"destructed
";
}
};

void main(void)
{
cout<<"inside main
";
myfunc();
cout<<"again inside main
";
}

void myfunc(void)
{
cout<<"inside myfunc
";
myclass obj;
cout<<"still inside myfunc
";
}

OUTPUT:


   inside main
inside myfunc
still inside myfunc
destructed
again inside main
Press any key to continue

In this case, destructor function is invoked just as the program’s execution
returns from the function, but before executing any further instruction from
where it was called (main).


Example 3: In the following example we are creating a dynamically
allocated object of a class in the same way as we did with the variables.


  //Example Program in C++
#include<iostream.h>

class myclass
{
public:

   ~myclass()
{
cout<<"destructed
";
}
};

void main(void)
{
myclass *obj;
obj=new myclass;
cout<<"inside main
";

delete obj;

cout<<"still inside main
";
}

OUTPUT:


   inside main
destructed
still inside main
Press any key to continue

Here the programmer is explicitly destroying the object, hence the destructor
function is called.


Now that you know some details about the destructor function, let me give you
a practical example of the use of destructor function:


  //Example Program in C++
#include<iostream.h>

class myclass
{
int *number;

public:
myclass(int num)
{
number=new int[num];
}

~myclass()
{
delete []number;
}

void input_num(int index, int num)
{
number[index]=num;
}

int output_num(int index)
{
return number[index];
}
};

void main(void)
{
int size, num;
cout<<"enter number of elments: ";
cin>>size;

myclass obj(size);

for(int i=0;i<size;i++)
{
cout<<"enter element "<<i+1<<":";
cin>>num;
obj.input_num(i,num);
}

cout<<"
elements have the following values

";

for(i=0;i<size;i++)
{
cout<<"element "<<i+1<<":";
cout<<obj.output_num(i);
cout<<"
";
}
}

Good-Bye!


Related Articles:


Read More..

Sunday, April 6, 2014

Creating file in Turbo C

Step 1:
Go to drive where Turbo C is installed then go to bin folder
Click on turbo c icon then follow steps
Create a file:
Open menu by using cursor or type shortcut key ALT+F4 then select new to open new file.
Step 2:
Save a file:
To save a file select save from menu or press F2 shortcut key.
Then a box will appear like that
Then before extension .cpp an asterisk will appear or you will see a word "noname" remove asterisk or noname word and replace it your file desired name e.g. first.cpp and then press OK your file will save in respective directory.
RECOMMENDED way naming to your file:
Name your file or program to less than or equal than six characters otherwise compiler can face problem to execute a program which have greater name than six characters.  
Step 3:
Compile a program:
To compile a program go to menu bar and select compile option or press short cut key ALT+F9
Then compiler will show how many errors, warnings and lines executed in your program and also identify line number in which error is found.
Step 4:
Running a program by using Turbo C++ menu bar.
To run program go to menu bar select the run option or press shortcut key ALT+F5.
Read More..

Saturday, April 5, 2014

Parsing XML in Run BASIC

One of the important feature that a Web 2.0 language needs is an XML parser. Run BASIC now has one built in. The XMLPARSER statement parses an XML string and returns an XML accessor object with a bunch of handy built-in methods for making your way through an XML document.
Here is a simple example of what that sort of code looks like:

a$ = "<program name=""myprog"" author=""Carl Gundel""/>"
xmlparser #parser, a$
print #parser key$()
for x = 1 to #parser attribCount()
key$ = #parser attribKey$(x)
print key$; ", ";
print #parser attribValue$(x)
next x

This short program produces:

program
name, myprog
author, Carl Gundel

And here is a short program which will display the tag names and contents of an artibrarily nested XML document:

xmlparser #doc, s$
print #doc key$()
call displayElements #doc
end

sub displayElements #xmlDoc
count = #xmlDoc elementCount()
for x = 1 to count
#elem = #xmlDoc #element(x)
print "Key: "; #elem key$();
value$ = #elem value$()
if value$ <> "" then
print " Value: "; value$
end if
print
call displayElements #elem
next x
end sub


Read More..

Sunday, March 23, 2014

YS The Oath in Felghana

YS: The Oath in Felghana
These days I had the chance to play one awesome Japanese game – YS.
The YS series are several RPG games but here I’ll talk only for YS: The Oath in Felghana. I have no background information about the series, so if you are an old YS fan, don’t shoot at me, those are my first impressions only.
The series are centered at the adventures of Adol, our main hero. As every hero, he is cool, his favorite breakfast is fried monsters and of course he has to save the world and the young lady. Yep, there is a beautiful, blondie young lady to be saved.



YS: The Oath in Felghana
Gameplay
The game controls are smooth and after some time I actually forgot that the real world is outside the screen. The game world is beautiful but deadly so the players don’t have much time to relax. The average monsters are somewhat easy to be beaten but there are strong boss monsters. During his journey, Adol finds some hidden treasures – powerful artifacts that help him in some tough situations. For example the first boss is unpassable without the Firedragon Amulet. Some places on the map a too high and you can’t reach them unless you use the wind bracelet.

The Story
The game starts with short story as Adol and his friend arrived at Felghana. The game follows the story closely with series of quests that reveal the characters background and motivation. The plot is interesting even without the action but together they form an awesome adventure.

MMORPG
As I heard there is an MMORPG YS Online, currently in Open Beta. I’ll try to learn more and I’ll make a separate post about it. I hope it is as good as the series, I can’t wait to play it!

YS: The Oath in FelghanaYS: The Oath in FelghanaYS: The Oath in Felghana

Trailer:
Read More..

Wednesday, March 19, 2014

Speech Commands in IVR Telephone Systems

interactive voice response speech commands In the most recent version of IVM interactive voice response software, v5.03 added a new speech recognition feature that allows the automated system to accept speech commands in addition to key presses as responses. This gives callers added flexibility when navigating an IVR system.

IVM is a powerful interactive phone system perfect for a variety of tasks from setting up an information hotline to a voicemail system or automated attendant. We hope that users will find this new option a convenient feature in designing useful and user-friendly call flow patterns for their interactive telephone systems.

Read more about best practices in designing an interactive voice response system.
Read More..

Sunday, March 16, 2014

Chillies – a new Indian restaurant in Barrhaven – highly recommended …

So Jon and I tried a new restaurant this evening in Barrhaven. It is called Chillies, although there may be more to the name than that. It is located in the Sobey’s strip mall on Greenbank north of Strandherd. The restaurant is near the Quiznos restaurant, about half way down from the grocery store.

This was only their 3rd day open and there was definitely some traffic, not bad for a Monday in a new restaurant. They do take out, but the sit in service is very good and the décor is nice. A kind of modern feel with separators between most tables for a small level or privacy.

2013-08-19 18.16.53

I forgot to bring a camera (we did not start out going here, but Jon remembered it at the last minute and we changed direction) so I had to shoot what little I could on the Galaxy S3. It did an adequate job, though, as the décor comes out quite clearly.

I started with a Mango Lasse, which I try in every restaurant. Theirs is quite nice, although the more milk-shake like thickness and stronger flavour at Haveli’s still has that one as the top Lasse for my taste. Still, I drank every drop so it was perfectly tasty.

2013-08-19 18.06.48

What really shone, though, was the food. We did not get creative, wanting instead to try two dishes we’ve had in many places to get a good comparison. We had Vindaloo Beef and Butter Chicken. We also asked for two Naan bread and of course the complementary Basmati Rice.

Well, we were blown away.

2013-08-19 18.05.00

2013-08-19 18.05.08

2013-08-19 18.05.15

The Vindaloo is an off menu item, but as soon as we mentioned it he said that they could do it. And I am very glad they did. Thick and rich with a generous portion and a fair bit of “kick” … just how we like it. We like it better than our other local favourite – Karara. The Butter chicken was also a treat, although Jon is not a fan in general. I have always liked butter chicken so long as it was not overwhelmed by cream (as it is sometimes at The Clay Oven in Winnipeg.)

It was tough to get through it all, but we soldiered through Smile

I have to give this place a very high recommendation. Great food, prices are good, service is very good. Unfortunately, I cannot find an online reference so if you did not receive a flyer in your mail box (I don’t recall getting one) then you might just have to drive there to try it. It will be worth it …

Read More..

Thursday, March 13, 2014

HGUC 1 144 AMX 09 Dreissen Released in Japan!

HGUC 1/144 AMX-09 Dreissen (Released in Japan, Price: 2,000 Yen)
Images of Box Art & Manual via HobbySearch



Read More..

Saturday, March 8, 2014

Power Failure in the Dead of Night GH2

This approximates how my street looked to my eyes when there was not a single light on anywhere for half an hour in the middle of the night.

I really like this and would like to see street lights suppressed for several hours every night. We would save a fortune and astronomers would benefit hugely … it is so unfortunate that there was cloud last night while this was going on …


panasonic gh2 & lumix x vario 14-42 PZ power ois  400iso  f/8  30s

The same image processed for visibility of features. Note that it was quite windy (and felt bitterly cold as a result) so the branches are clearly moving …

Read More..

Thursday, March 6, 2014

8 Things to Check Before Heading Out this Rainy Season in Metro Manila

Its this time of the year when students wake up early every morning to check the news and weather forecast to see if there will be suspension of classes. I love a little rain but not when the little gets a little bit too much. As some say, Just add a little water" and Metro Manila will be chaotic with traffic and floods here and there! Makes me wonder why our government still doesnt want to move the starting of classes to September.

Regardless, student or not as long as you go out via commute, driving or de-driver, youll be affected by the rain and traffic so its always good to be aware of traffic and flood situations just when you are about to head out. Here are 8 things you might want to look at before you go on your way to avoid being stuck in traffic:

   1) MMDA TNAV App ( Apple iOS devicesAndroid devices )
This has been one of the most popular and must-have app when living in Manila. You can use this to check the traffic conditions on major thoroughfares here in Metro Manila. The interface is very easy to use and self-explanatory. You can also click the area you are interested in for more information.

There are several views available and you can select where you are most comfortable with. The screen capture above is the "System View". The "Map View" will be like looking on a Google map but with traffic data also coming from the MMDA database and the "Line View" can quickly give you an over view of the area you are interested in.

As for reliability, I can say that I believe the data reflected here 80% of the time. Thats good enough than not having any data at all. 80% because there are times that "I think" it should be a red (Heavy) and not a yellow-orange-red color (Moderate to heavy) on the route I was on. Might be subjective. Another reason is that it was down for a significant amount of time when I needed it the most for the past few days when rain and traffic was at its worst.

Areas covered: EDSA, Commonwealth, Quezon Ave., Espana, C5, Ortigas, Marcos Highway, Roxas Blvd., SLEX. (Click here for NLEX)


    2) Waze ( Apple iOS devicesAndroid devices )
So far, this is my constantly used application whenever Im out and about next to the MMDA TNAV app. First, this acts as my GPS navigation system as this app is capable of doing a turn-by-turn navigation with voice. Also, it usually reads out the traffic data and sends out pop-up notifications plus other fun stuff integrated within it. For example, If Im going to NAIA Terminal 2 from where I am, this app will give you several route options to use with a preview of where the traffic is (indicated by red colors on a line) and how many minutes (estimate). You can either choose a longer route with less traffic or a shorter route with more traffic.

Another cool feature is the turn-by-turn navigation system. I have a GPS in my car and I sometimes use this instead rather than that. Why? Because as Waze collates the data reports from other users, Waze will also warn you via pop-up notifications on whats ahead of you. For example, Im on my way to Sofitel Hotel and the heavy traffic reported along Roxas Blvd is now cleared. Waze will pop-up a notification stating that "Youll arrive 10 minutes earlier as traffic has been cleared". Same way when a a traffic reported is along your route.

The fun cool stuff is, as you report and use Waze, you earn points. There will be occasional candies along youre route and when you pass by them, it will add to your points. No need to swerve to get your candies. Just drive along and youll be okay. Youll still get the candy anyway. Other reports you can expect in this app: Traffic condition, road construction, police (hidden or not), traffic accident, speed cameras etc.

Waze has been recently bought by Google and I hope Google doesnt remove some of the features and maybe one day, they can integrate Waze in Google Maps.

Areas covered: Most of Metro Manila


   3) DOST Project Noah ( Apple iOS devices / Android devices )
I wasnt aware of the usefulness of this application until my brother told me what it can do the other day. Almost all the weather-related information can be found here and while most think that this is just an app where you can check out if it will rain or not, it can also give you information about the flood in several areas.

Upon opening the app, click on the upper right icon,

Then, click on stream gauges,

There are several areas with stream gauges and one of them is the E.Rodriguez bridge near E.rodriguez corner Araneta Ave in QC. That place is notorious for heavy flooding with just a few drops of rain. The stream gauge will more or less let you know if the area if already flooded. Like right now, its not flooded and the gauge looks like this,
The other day when the rain was heavy, the gauge spiked up and it was evident in that chart as the flood waters along Araneta Ave corner E.Rodriguez rose,

From GMANEWS.TV
Araneta Ave QC flood
That area is really flood prone. In case you get stuck, head over to the Puregold Qi Central as it is higher and you can just grab a bite first while waiting for the flood waters to subside.

Areas covered: Multiple functions / Different areas


    4) Archers Eye ( Apple iOS devices / Android devices )
Whether or not you study in DLSU - Manila or not, you can benefit from this app as it will more or less show you the traffic situation around this area, specifically Taft after Quirino Ave towards Buendia up to the McDonalds area beside DLSU - Manila (South gate).

By looking at the traffic condition here, you can plan out where to pass in (if you need to pass by this area) case another traffic-crazy-weather hits Metro Manila again. You can also use this app to check if your kids are really in school on a specific time as the video has time stamp.

Areas covered: DLSU - Taft area


   5) Google Maps ( http://maps.google.com or installed by default on your iOS and Android devices)
This wont give you up-to-date real time data of the traffic conditions around Metro Manila but prior to leaving where you are, you can already plan out your route OR if you are stuck in traffic, open Google maps and check out an alternative route where you are towards your destination. This is very useful for detours like floods, heavy traffic, road closures etc. Just make sure youre map is updated as there were some versions of Google maps installed in iOS devices that is not updated.

Another alternative in planning youre route is getting a GPS navigation system. I personally use and trust the one from AVT (Not sponsored). You wont need an internet connection when using this and it will just cost you around 5 to 6 thousand pesos. I got my AVT GPS on a car show event as they usually slash their prices down during those events.

Areas covered: Most of Metro Manila and the Philippines


    6) MRT Live CCTV  ( http://dotcmrt3.gov.ph/cctv.php )
On your way out and planning to ride the MRT3 line? You can check out the live CCTV footage of the MRT3 stations by visiting the site mentioned above. This way, you can easily strategize which station has fewer mobs. And by mobs, I mean MOBS. You can be squished making a sardine can look much more spacious during rush hours.

Areas covered: MRT Stations (North Ave, Quezon Ave, Kamuning, Cubao, Santolan, Ortigas, Shaw Blvd, Boni Ave, Guadalupe, Buendia, Ayala, Magalanes, Taft Ave.)


   7) MMDA Live Camera ( http://mmda.nowplanet.tv/ )
Before, all these live feeds was only internal to them. Maybe a lot of people phoned-in their traffic inquiries so they made a twitter account. Then, they are now flooded with Twitter inquiries thus, having another app to show you the traffic situtation (See #1 above, the MMDA TNAV App). But then, as Ive said, its not real time enough.

So now, here you go. Live video feed. Nothing can get more real time than that except for a few seconds delay time for the video feed. Stop questioning the data in the TNAV app and just look at the friggin live video. :p

Areas covered: EDSA - Taft, Ayala, Orense, SM Megamall, White Plains, P. Tuazon, Nepa Q Mart, Greenmeadows, Marcos Highway.



   8) Twitter ( Apple iOS devices / Android devices )
Usually the first to break the news in a lot of occasions, this is the easiest place to check user generated reports. Of course, you and youre judgement should be the one responsible in sifting the information whether or not what you read was true or a hoax. Also, be responsible in RT (retweeting) unverified information so as not to cause unnecessary panic. Use hashtags "#" when searching for terms (ex. #baha).

Also, you can follow @MMDA and @dost_pagasa on twitter so youll automatically receive their updates and reports.

Areas covered: Keyword specific. You can search for "Taft" or wherever you plan to go to see if there are mentions or reports around that area.


All these tools help us decide which route to take. Like in life, it also entails sifting through the information fed to us and a little due diligence on our part. Rule of thumb. Keep yourself safe first before helping others. All these are here to help us make a better judgement and while the government figure out what they have to do to improve our current situation, let us not forget to do our part,

Ask not what your country can do for you, ask what you can do for your country. ~John F. Kennedy

Be safe!

LaNnA
PS. Liked the post? Subscribe to my blog by typing in your email below. Youll get my posts in your inbox via email.
Enter your email address:


Delivered by FeedBurner


-->
Read More..
 
Blog Information - Powered By Blogger