Tuesday, 19 November 2013

Lips of Suna 0.8.0 released

And another great new release :)

Our favorite work in progress & not quite serious anime RPG Lips of Suna bumps its release number to 0.8 (change-log).

I know what you are thinking...
Most notable changes:
  • New player model and animations contributed by gruntunbur.
  • Lots of sound effects contributed by qubodup.
  • More powerful animation blending.
  • Performance improvements.
  • Better eye, face and hair color customization.
  • Fixed the AI not being able to use many kind of weapons correctly.
  • Procedural map area placement and planning system.
  • Procedural dungeon generation with corridors, rooms, treasures and monsters.
  • Balanced the movement speed and physics behavior of player characters.
  • Terrain chunks close to the player character load much faster.
Comment away below or in our forums.

Addition (2013-11-21): Now there are also windows binaries available.

Recent Rotating Post Gadget with Excerpt For Blogger

This JavaScript code will display the latest posts of any feed, the difference being that it has two parts which can be used individually or combined. The top of this widget will show a single post along with the title (link), author, date and a brief summary of its content. In addition, this post will rotate automatically within a list whose number of elements will be decided by us. At the bottom, we'll find a full list with recent posts that, on mouse over, will replace the post above, thus breaking the automatic cycle.

Before adding anything, let's see it in action to decide if it does what we want.


recent posts widget for blogger

How to Add Recent Rotating Posts Widget to Blogger

Step 1. Go to "Layout" > click on the "Add a Gadget" link.


Step 2. From the pop-up window, choose the "HTML/JavaScript" gadget


Step 3. Paste this code inside the empty box:
<style>
.gfg-root {
width: 100%;
height : auto;
position : relative;
overflow : hidden;
margin: 0 auto;
text-align : center;
font-size: 12px;
border: 1px solid #DBDBDB;
}
.gfg-title {
font-size: 16px;
font-weight : bold;
color : #6B6B6B;
background:#F3F3F3;
background-repeat: repeat;
line-height : 1.4em;
overflow : hidden;
white-space : nowrap;
padding: 5px;
text-shadow: 0px 2px #fff;
}
.gfg-entry {
background-color: #FFFFFF;
width : 100%;
height : 9.2em;
position : relative;
overflow : hidden;
text-align : left;
margin-top : 3px;
}
.gf-title a {
text-transform: capitalize;
color: #0000ff;
font-size: 14px;
}
.gfg-subtitle {
display: none;
}
.gfg-list {
position : relative;
overflow : hidden;
text-align : left;
}
.gfg-listentry {
line-height : 1.5em;
overflow : hidden;
white-space : nowrap;
text-overflow : ellipsis;
padding-left : 15px;
padding-right : 5px;
}
.gfg-listentry-odd {
background-color : #F3F3F3;
border-bottom : 1px dotted #CCCCCC;
padding: 5px;
}
.gfg-listentry-even {
background-color : #F3F3F3;
border-bottom : 1px dotted #CCCCCC;
padding: 5px;
}
.gfg-listentry-odd a{
color: #595959;
padding: 0 0px 0 10px;
}
.gfg-listentry-even a{
color: #242424;
padding: 0 0px 0 10px;
}
.gfg-listentry-highlight {
background: #FFFFFF;
}
.gfg-listentry-highlight:before {
position: absolute;
left: 0;
content: '\25BA ';
font-size: 14px;
color: #DBDBDB;
}
.gfg-listentry-highlight a {
color: #242424;
}
.gfg-root .gfg-entry .gf-result {
position : relative;
background-color: #ffffff;
width : auto;
height : 100%;
padding-left : 20px;
padding-right : 5px;
}
.gfg-root .gfg-entry .gf-result .gf-title {
font-size: 14px;
line-height : 1.2em;
overflow : hidden;
white-space : nowrap;
text-overflow : ellipsis;
margin-bottom : 2px;
margin-top: 5px;
}
.gfg-root .gfg-entry .gf-result .gf-snippet {
height : 3.8em;
color: #000000;
margin-top : 3px;
}
.clearFloat {
clear : both;}</style>
<script src="http://www.google.com/jsapi" type="text/javascript"></script><script src="http://www.google.com/uds/solutions/dynamicfeed/gfdynamicfeedcontrol.js" type="text/javascript"></script>
<script type="text/javascript">
function showGadget() {var feeds = [{title:'List',url:'http://helplogger.blogspot.com/feeds/posts/default?redirect=false&start-index=1&max-results=10'},];
new GFdynamicFeedControl(feeds, 'feedGadget',{title: 'Latest Posts', numResults : 10, displayTime : 5000, hoverTime : 500});} google.load("feeds", "1");
google.setOnLoadCallback(showGadget);
</script>
<div id="feedGadget">Loading...</div>

How to Customize the Recent Rotating Post Gadget

The URL in blue is for the feed. So, the http://helplogger.blogspot.com URL should be replaced with the feed URL of your blog.

Next is start-index=1. This number indicates which post will appear first on the list. By default, it is the latest post published on your blog, so if you want to begin displaying older posts, change the 1 value.

max-results=10 indicates the maximum number of posts that we will be reading from the feed, beginning from the one that we have set up before in the start-index=1. This number always needs to be equal or greater to what we should see later and what it does is to set the number of posts that will be shown in the gadget. The easiest way would be to put 500 in order not to fail, but the higher the number is, the longer this gadget will take to load, so it's better to adjust to what we need to show.

Finally, here are some other script parameters:
  • title: 'Latest Posts', is the widget's title that appears on top.
  • numResults: 10, number of posts that will show in the list.
  • displayTime: 5000, the delay time between posts in the rotator (in milliseconds).
  • hoverTime: 500, minimum time for an item in the list to be displayed at the top.
If you want to hide the list and show only the posts, change this part:
.gfg-list {
position : relative;
overflow : hidden;
text-align : left;
}
To:
.gfg-list {
display:none;
}
If you want to display only the list, change this:
.gfg-entry {
background-color: #FFFFFF;
width : 100%;
height : 9.2em;
position : relative;
overflow : hidden;
text-align : left;
margin-top : 3px;
}
To:
.gfg-entry {
display: none; }

Step 4. Save the gadget and you're done adding the recent rotating post widget with excerpt in Blogger.

Monday, 18 November 2013

Foxit Reader



Foxit Reader is a PDF Reader, viewer and editor in the world. It is a freeware software. Foxit Reader is a advance program. PDF file can read, write, edit and convert by this software. This software is like as Adobe Reader but it is very advance from Adobe Reader. A PDF can convert to MS- Word from PDF. It's Download process is very easy and it's for all little learned user. Foxit Reader software is a good feature able software. This  application support a large number of add-ons. It's capacity is very high. Maximum user believe that it is a ultra modern PDF reader. Foxit reader software's size is small but it can use fast. It is PDF viewer quality is very high and its looks like very lightly and bloomy. This reader software is totally free for all kind of user. 
When we read a eBook or a PDF file by Foxit Reader then we can see with full screen, Zoom and text select by manually. Now this time It's being popular day by day with Adobe Reader. Some Programmer trying to update this application all time. It's feature is very nice to look and completely attractive. When we read by this application then we can zoom in and Zoom out easily and also can file open and file exit instantly. In this competitor software market Foxit Reader software will revive by its own capacity. We can also insert Image, audio file, video file and can insert other external link in Foxit reader. Now we can share a file or a eBook by social networking site easily by this Reader. Now this time we enable to do some advance work by this software such as, we can change it theme easily. Maximum user satisfy in it and they think it is a perfect Reader for them. This software's has some uncommon advantage; such as when a reader read a eBook with this application he can change it's background color for eye safety and for looking beautiful. This application's download and install process is very simple. This software is developed by Foxitsoftware.com. It's supported all kind of commenting, annotation, drawing, highlighting and conversation to text file. I think It is a best alternative to Adobe Reader for eBook and all kind of PDF file read. So, if you want a little, fast, suitable and more functional  reader software, then you can choose Foxit Reader without doubt. I think it is enable to fulfill a user demand and it enable to compete with Adobe Reader in  reader market. Above all, It is that kind of software what is enable to gain user satisfaction and we can use it regularly.



For free download click here ...........

MegaGlest 3.9.0 released

Since I am having internet troubles as of late, I'll keep it short and hope it will actually come through:

Megaglest 3.9.0 was released today, see changelog:
v3.9.0
- we hopefully now really solved the last out of sync problems for cross platform games.
- animated tileset object support. ( like trees moving in the wind )
- new tileset texturing possibilities
- new tilesets birchforest, desert4 and updated mediterran using animated objects and new texture system
- greatly improved textures and animations for the roman faction
- new maps
- better network game performance / management to handle slower clients.
- easier ability to download game content from host and masterserver( if available there ).
- new arranged options menu with several sub menus
- menu gui improvements
- attack hotkey toggles through all attack types
- single player games can be sped up incrementally in steps.
- color picking is greatly improved and the default selection mode now for better compatibility
- greater ability to translate game content into your native language. (including techtrees)
- Added Hebrew, Arabic, Vietnamese (and others).
- screenshots for savegames without annoying menu in screenshot.
- addition of google-breakpad to better track down bugs.
- many new lua functions for scenario modders.
- cell coordinates are shown in the mapeditor
- tilesets can set default air unit heights
- added ability for stand alone mod's to customize more of the engine like about screen.
- performance improvements.
- and as always many bugs were fixed
- improved textures for tech faction

Sunday, 17 November 2013

How Mobile Phone Technology can Change Hotel Experience

Mobile technology has taken the world by storm.  The growth of mobile use has been an exponential one, as almost every individual is in the possession of a mobile handset. In addition to that, they come with amazing features that are aimed to make our lives easier. One would argue that,they have come to dictate how we carry one with our lives. It is no mystery that they have changed the way we interact with each other and at the same time, the way we perform our duties.In not so far in the future, mobile technology could be the talk of the future in terms of hotel experience. This is due to drastic growth of this technology.There are a number of ways mobile technology could change hotel experience, in the days to come.

Handling of Currency

Mobile banking has been the new deal in the banking sector.It is possible to buy and sell goods and services via your mobile handset.With this kind of technology in place, you will be ale to pay for your hotel room,all from the comfort of your handset. This will rule out the need to carry with you a wallet in your pocket or cash as a whole. This technology will provide a secure way to make online transactions for the services provide.

Keys to your hotel room

Each guest in a hotel room is sent an encrypted code on their handset. This code performs the same function as the modern hotel keys to your room.This technology is already in existence and hence makes it possible for one to gain access to their hotel room.

In room phones

In every hotel room, there is a phone to send out messages and call for room service. This role can also be played by a Smartphone. Hotel administration and managers should thus find a way in which Smartphones can be used as in room phones. This will minimize the use of such phones in the hotel rooms.

Reception desk

Your mobile handset will act as your reception desk. This where you make your dinner reservations and order meals. You will get all the information you need on the best places around to go for site seeing and have fun.

Room service delivery

This is one of the most common services offered in hotels while in your room.As the name suggests, you can only get this service while you are in your room and no where else. This is because the service providers are unable to locate your location while away from your room.With the mobile locator installed on your handset, you will be able to receive your order wherever you are, within the hotel premises.

Front desk attendant

Mobile technology could change hotel experience with the use of mobile handsets as hotel room keys.This will prompt management to introduce room bill services via email.You will thus be able to get your bills through your email.

Alarm clocks

This technology has been around for a while now. Many people in the hotel rooms are using their mobile devices as an alarm. In that case, there will be no need of the alarm clock provided for in each hotel room.

Hotel promotional print material

This is for the benefit of hotel marketers and promoters who strive to put up promotional materials in every hotel room. However, with the growth of mobile technology, there might be no need for this.Guests in hotels can scan a QR code and get the latest news on the hotel via their mobile gadgets.

Entertainment in the hotel room

With the availability of a bandwidth, guests can now watch movies and listen to music through their handsets. They prefer this to paying the hotel management in order to get in room entertainment.

All in one system control


This allows you to control the lighting, media and temperature of your hotel room from a single central position. This technology is already live in homes and sooner than later it will find its way to a hotel room.With that said, mobile technology could change hotel experience in a huge way.