Welcome to Entertainment Meela * Search every thing you Want*.
Subscribe For Free Updates!

We'll not spam mate! We promise.

Welcome To EnterTainment Meela Music Masti And entertainment download every thing you need!!!

Tuesday, 11 February 2014

Facebook Chat Hack

To add pictures during chat session, just Type Unique id or Username between [[ ]] .
[[unique id or Username ]]
for example : [[1758955254]]

Why And How To Convert Lotus Notes NSF File To Outlook PST File Format

Why And How To Convert Lotus Notes NSF File To Outlook PST File Format:-


Lotus Notes is an application that is built-in with qualitative communication features rendering users more than just an emailing platform. In addition to this, the investment that is being required for its maintenance time to time is very high. However, when smooth emailing, data transfer, connection to Server with some powerful options for interaction is required, Microsoft Outlook can be chosen instead of Notes.
The reason why Outlook is considered as the most reliable alternative to Lotus Notes mail client by IBM is the brand name, the features that Outlook offers with every revised edition, the quality of being cost-effective, ease at operability, commendable collaborative working with Exchange Server etc. Therefore, when an organization thinks of moving to Outlook from Lotus Notes to work around its unexpected profits and loss, it is necessary that the asset, the database of Notes is migrated to Outlook.
Now, the question is how to convert Lotus Notes NSF to Outlook. For converting NSF file data to Outlook PST, a third party tool named Export Notes software can be adopted that enable complete mailbox data migration from NSF to PST.
For converting the file extension from .nsf to .pst , download the Export Notes software in your Machine and mount it. After completing the installation process, by following some easiest steps you can achieve NSF to PST Conversion.
1. Within First steps Click on Start>> All Programs>>Export Notes Software
export notes 1
2.Click on Highlighted Export Button to Convert NSF File format to PST
export notes 2
3. In next screen click on Browse button to locate NSF file which needs to convert into PST
export notes 3
4. Select Lotus Notes NSF file and Click Open Highlighted Button
export notes 4
5. Apply Required Filters to customize NSF database
export notes 6
6. Click on Export Button to Save NSF file to PST Format 
export notes 7
7. Select Specific or Desired Location to Save PST File and Select OK
export notes 8
8. Preview Status After Complete the NSF to PST Conversion Process
export notes 9
9. After Entire Lotus Notes to Outlook Migration Following Screen Appear Click OK
export notes 10
Official Website: http://www.lotusnotestooutlook.net
Author Bio: Export Notes is a trustworthy product by the organization that aims at bulk database migration from Lotus Notes to Outlook. For the query solution as how to convert Lotus Notes archive to Outlook archive, the tool is being available to users at a reasonable price.

How To Send Fake Email



How To Send Fake Email:-



Here is step by step tutorial that explain how to send fake email and how to create own fake emailer in python/django. First I’ll show you how to use my fake emailer that is created in python , you can run it on http://najponude.com/email5/. Just fill required information and click send , for example :
send fake email
After clicking Send button, you should see notification that your message is sent. 
message sent
Below is example of fake email that I send as fake sender myFakeEmail@gmail.com to my email mail@najponude.com
email
This fake emailer is created as django / python project . You can download complete code from my Git Hub account , here is the link github.com/blaz1988/fakeEmail , just click on Download Zip
d zip
If you don’t know how to run Django project read my previous article How To Create Your First Django Web Application
The main part of fakeEmail django project is view.py/github.com/blaz1988/fakeEmail/blob/master/fakeEmail/views.py
When user click on Send button if statement :
if request.method == ‘POST’ :
will be valid and data from HTML form will be stored in variables:
sender=request.POST['user']
message=request.POST['content']
receiver=request.POST['receiver']
subject=request.POST['subject']
These variables are argumets of the function 
send_email(sender,message,receiver,subject)
send_email function use python packages smtplib , email.mime.text to configure messagre and send it. 
For more information about smtlib read python documentationdocs.python.org/2/library/smtplib.html
If you don’t like my fake emailer , you can try some from these list : 
emkei.cz
deadfake.com/Send.aspx
anonymailer.net

Best WhatsApp Hacks


  

Best WhatsApp Hacks:-



  



WhatsApp is one of best instant messaging app for Android and iPhone.Today, I’ll try to share best WhatsApp hacks available to improve user experience.

1) How To Get Back Deleted Chat History

Did you ever tapped wrong option for example Delete chat -> Yes ?
delete chat  
You can easly recover your deleted chat history , just follow these instructions: 
1. uninstall the app
2.then reinstall it
3. simply tap Restore and everything less than seven days old is restored.
restore

2) How To Hide Last Seen Time

Just downlaod and install Last Not Seen App 
last seen

3) How To Crete Fake Conversation

If you want to play pranks with your friends , just download annd install Whatsaid – Whatsapp Prank and create fake conversation .
fake conv

4) How to Send WhatsApp Chat History Via Email

Click on the “Menu” option in a conversation, and then go to “More” and select “Email conversation” before entering the address of recipient. WhatsApp will create an email with the whole text conversation, including pictures, voice or video calls.

5) How To Send PDF, APK, ZIP and DOC files

What’s updon’t allows you to send Send PDF, APK, ZIP and DOC files , but you can use an app named Cloud Send.
Downlaod and isntall Cloud Send from this link
cloud send

6) How To Listen to voice messages using In-Built Speakers

If you don’t won’t to play your voice message loud so that others could hear it , then press play and hold the smartphone to your ear. 
voice message

How To Create Python Export To Excel Function



How To Create Python Export To Excel Function:-




This is step by step tutorial that explains how to createpython function for exporting data in Excel file
To start programming in python you need to install python. In my previous article How To Create Your First Python Program I explained how to do it. After installing python you should install python package “xlwt”. Download xlwt from this LINK to some directory, for example site-packages . Open Command Prompt and navigate to site-packages/xlwt directory . 
install-xlwt
and run command : 
python setup.py install
This command will run setup.py script which will add xlwt to your python
Now you can start programming. You can found complete code about export to excelfunction on my git hub account github.com/blaz1988/ExportToExcel/blob/master/excel.py
Let’s start programming…
First you need to import necessary packages
from xlwt import *
import glob
import os
* import all functions from xlwt . Xlwt offer functions for writing data in excel files, adding sheets and similar… 
Then you should define function , for example I define function with one argument. That argumet is list of data that will be exported to Excel 
def excel_fun(data):
After that define your wokrbook and styles:
wbook = Workbook()
style1 = easyxf(
‘font: name Arial, bold yes, colour black, italic yes, height 180;’
‘alignment: vertical center, horizontal center, wrap yes;’
‘borders: left medium, right medium, top medium, bottom medium;’
‘pattern: pattern solid, fore_colour light_orange;’)
style2 = easyxf(
‘font: name Arial, colour black, height 180;’
‘alignment: vertical center, horizontal center, wrap yes;’)
Add sheet name with :
sheetName=”My Sheet”
wsheet = wbook.add_sheet(sheetName)
You can define width of column, for example I define first column width with:
wsheet.col(0).width = 10000
To write data in Excel file use xlwt function called write, for example
wsheet.write(0, 0, “Website”, style1)
It writes string Website in column 0 and row 0 with style1. 
You can call function with excel_fun(websites), where websites is variable structured as list that containes dictionaries 
websites=[{"web":"http://najponude.com/","visits":10000},
{"web":"http://kako-napraviti.geek.hr/","visits":5000},
{"web":"http://hackspc.com","visits":8000}]
This function will export data from variable websites to excel file that looks like: 
excel-data
This function can be your “template” code for exporting data in excel. Function as argument accept list of dictionaries, which is format of JSON files , so it can take JSON file as argument too.
You can download complete code on github.com/blaz1988/ExportToExcel/

Using Recovery software for your lost data



Using Recovery software for your lost data:-

 



Let’s face it, losing data is something that can and will happen eventually. It could happen to anyone, whether you are an advanced PC user or just a novice user. Advances users are less prone to losing data than novice ones, because the more advanced users a not susceptible to errors that novice users usually make that causes lost dataNovice users are more likely to accidentally delete files and other important documents along with also deleting them from the recycle bin thus rendering those files permanently deleted, these kinds of human error does not affect the more advanced PC users. But still, even advanced users are still susceptible to losing data, but not due to human error, but more likely to outside causes. These causes are data corruptionsystem failure, hard drive dying out or even from a  virus attack rendering your files and folders in accessible or deleted depending on the design of the virus. And yes, even advanced users are still prone to virus attacks.
But thankfully, with today’s technology, even if you suffer from data loss due to a virus attack, or accidental deletion, or data corruption or from formatting your hard drives, we can still be able to get back those lost files and other important documents by using a free recovery software. With these tools you will be able to recover files that were lost due to deleting, formatting, partition loss, system failure and other causes. Almost all files can be easily recovered, be it photos, music such as mp3s, spreadsheets, word files and other important documents that you need to get back. These tools are very easy to use, these types of tools usually caters to both advanced and novice computer users due to the simplicity of the design and you will be able to recover your lost data and other documents with just a few simple clicks. And there are versions available to both PC and Mac users.
And nowadays, we store important files and data not just on our computers, thanks to the increasing capacity for memory cards, we also now store a lot of our important data using our smartphones. Since we carry our smartphones with us all the time, it only makes sense that we also store some of our important files and data such as photos, music, documents and other files on our smartphones. But as with normal PCs, our smart phones are also susceptible to losing data. The causes can also be the same, accidental deletion, formatting, virus attack or data corruption can also happen on our smartphones, thankfully, there are recovery software that available for our smartphones that we can use to recover our precious photos, music, and other files we deem important. The two most popular types of smartphones is the Apple iPhone that runs on iOS and android devices , since these two are the most popular smartphones obviously there are software that available for android data recovery and for Apple users, there are also iPhone recovery software  that you can use to recover your lost files and other documents.

How To Stop The Timer In An Internet Café


How To Stop The Timer In An Internet Café:-








Internet cafes are really decent if you are in a foreign country or just don’t have a computer near you andyou really need to check something online. If you have ever wondered how you would stop the timer in an internet café so you could surf the web without having the time limit pressure you then you came to the right place. It’s really easy if you follow these simple steps:
1)We are going to use a program called Process Explorer and you can download it from thislink.
processexplorer
2)Now open it and something like this should appear:
procep
3)Open “procexp.exe” and it should look like this:
open
4)Now you can see all these proccesses running and what we have to do is to find the ones related to the timer and pause them. The proccesses are called “Client.exe” and “Guardit.exe”, you have to find them and right click on them.
suspend
5)Now as you can see, you have to click “Suspend” on both “Client.exe” and “Guardit.exe” which will actually stop the timer. Another important thing to know is that you can make the timer continue by right clicking on those proccesses again and clicking “Resume”.
resume
There you go! Now you can surf the web as much as you want with this simple trick! So if you’re low on money but want to use the internet, you know what to do!