Skip to main content

Posts

SVN fails to UPDATE and COMMIT only says is already locked.

Cause: This thing happens when an commit or update is interrupted in the middle. Solution: Just Clean Up by SVN.Then update and commit . It will work. If it doesn't work then go into the .svn folders /pristine/IntegerValue. * IntegerValue may be a random number of a folder on which todays info of changes will stored.    Now from that folder by date of modified find the .svn-base file which will look like   00a0a66811fd94042c2a2ae86b43700c86968ace.svn-base  . Then Just delete it/ move it to other folder. Then update and commit . It will work. Worst-Case: If it doesn't work then you need to Checkout again and your work will vanish.  :(

Callback and Function pointer in C++ for interoping with .dll

We use many dynamic library and static library in a project for development purpose .The most way we use is call the various function from the .dll or .lib or any library.But sometimes it is needed to call the application function from .dll or .lib (application: who use the .dll / .lib). In programming literature it is called as callback .Now I will demonstrate how to call a function of an application to execute from library . For this purpose we will use function pointer.The way is like.... 1. app says     : "dll/lib keep my function address, which you will execute ". 2. dll/lib says : "Ok, I got it and stored it for future use". . . . 3. dll/lib says : "It is time I call you for work my application function". Step 0 : Declare the function pointer. i) typedef  void(*function)(void)   function : function address   void       : parameter(No) ii) typedef int(*function)(void) int   ...

Rar Password Breaker Software or Code Breaker

                                                           Name :  Code Breaker , Version : 2.0 ,Platform : Windows XP/7/Vista                                    Processor : x86/x64. Capability : Utility                                    Release Date : 12-11-2012. Category :Free Description :   It is an utility software  which is used for finding the password of  a .rar file.At ...

How to make .cue from .bin or Cue Maker Software ----- Smart Cue

Sometimes after downloading a game ,a software ,a movie it is a pain that it is in .bin format.As a result we can't burn it directly by any magic ISO creator software.So for user little help I have made a soft ,which can do this little work easily. The name of this soft is Smart Cue . Hope it helps ,all the gamer and video watcher. Download: Executable MF Link   Note : It was made in a way to test my own C# skill ,as I am sometimes interested to many languages and the need to create software when I need it ( Basically when I download a game , it was on .bin format).

My favourite writer Humayun Ahmed

There is none who can replace him.At least the standard which he create in is life time in the running literature it never be replaceable.The new generation which is all the time busy in playing PC games,chatting ,bands etc. only his writing makes them to take a glance on the literature.For example Himu and Misir ali all the time keep them on track by anti-logic and logic.They also have show-down on the novel.I myself read all of the books of Himu and Misir ali and wait for the new one to come every year.Now I have to wait for life time. Except books he makes our dirty film industry pure by his heart warming ,well versed film.Following him many new producer try to make well and good film (not the dirty one) .He also contribute our drama by his dashing drama's. In writing except romance ,logic ,anti-logic ,he also write many science fiction.His brother Sir Dr. Md. Zafar Iqbal is the man who started science fiction in bangla. The list of books: Selected novels • Lilaboti (2...

Using Git for code.google.com in windows Computer

1. First create an account on code.google.com    It then generate username and password. 2. Then install git for windows. 3. Now in git bash (command line) go to the folder in which local folder your project is in. 4. Give command for clone (SVN CHECKOUT) git clone https://username@code.google.com/p/Project_Name/ and git clone https://code.google.com/p/Project_Name/  5. First initialization of repo git init 6.  Now add the file you need to upload. git add *.java git add *.txt git add *.c git add *.cpp 7. Now commit these code. git commit *there are types on commit.So read it in http://git-scm.com 8. Add the remote origin git remote add origin https://code.google.com/p/you-project-name 9. Finally, Push the code to google code git push orgin --all It will then ask for username and password. Give that which we have at the registration to code.google.com And now everything is done.

Developing Microsoft Lync Client with NTLMv2 security

First of all when I studied MS-SIP I was stuck. I don't get enough help from msdsn which is microsoft own social site for lync client developing.I post three post there and don't get any response.But after huge while with lots of efforts I was able to log in lync server by my own client.Now I will share the particular difficulties with everybody , which I have solved. So that no one stuck in this....I will write here slowly with description. The topics will be.. 1. urn:uuid generation 2. NT key generation 3. LM key generation 4. NT response generation 5. LM response generation 6. NTv2 response generation 7. LMv2 response generation 8. RC4K encryption 9. MD5 encryption 10. HMAC MD5 encryption 11. Base64 encoder/decoder 12. Binary to hexa 13. gssapi-data generation 14. Format of gssapi-data 15. response/signature generation . . . more  Developing of Lync-client is complete .Now when I get the free time I will write the procedure here. The link for Description of these part ...