Bulk Rename Utility is an easy to use file rename program (a.k.a. file renamer). Renaming multiple files has never been easier! It has a small memory footprint so it can be left running all the time without consuming all your memory. It started as a freeware Visual Basic tool, but as its popularity has grown it has been completely rewritten in C++ to be robust and lightweight – and very, very fast! It can easily handle folders/discs containing well over 100,000 entries… and it can batch rename 1,000s of files in seconds. The software is freeware and gets downloaded very …
Categoria: Tips & tricks
Break lines at specific character in Notepad ++
In Notepad++, click Search > Find. Click the Replace tab. Under the Search Mode group, select Regular expression. In the Find what text field, type ],\s* In the Replace with text field, type ],\n Click Replace All.
WordPress Pretty Permalinks on IIS 7.0
Just create a web.config in wordpress root dir: Read more: WordPress Pretty Permalinks on IIS 7.0 http://codex.wordpress.org/Using_Permalinks
Schedule Mysql Backups to Amazon S3 in Windows server 2008 R2
1 – Access Amazon Services, S3 2 – Create a New Bucket if there’s no one. 3 – Create credentials in IAM Amazon Services 4 – Download the tool s3.exe for windows, from s3.codeplex.com
How to close Apps in Windows 8
There are 4 ways you can close metro apps in the new Windows 8: If you have a touch screen tablet or laptop, touch your finger on the top of the screen and drag it all the way to the bottom. It will minimize and move the app from your way. If you don’t have a touch screen but you use a mouse, do the same with the mouse. Point your mouse on the top of the screen and drag it all the way down. When you point the mouse to the top of the screen, you can see the …
Windows 8 Activation Error: DNS name does not exist Error Code: 0x8007232B
Depending on where the installation media was obtained from (MSDN, TechNet subscription download,..) the activation wizard by default will look for a Key Management Service (KMS) host on your internal network. It will not try to activate using the internet to reach Microsoft Activation servers. The solution is to manually change the product key to a Multiple Activation Key (MAK) most likely provided with your MSDN or TechNet subscription. To change the product key, use the slmgr.vbs script included with your Windows installation. Run the command prompt as an administrator Enter slmgr -ipk xxxxx-xxxxx-xxxxx-xxxxx-xxxxx where xxxxx-xxxxx-xxxxx-xxxxx-xxxxx is your product key.
Excel – How to make first character Uppercase, the rest lowercase?
make a quick test file see what this is going to do. if its what you want, then try it in your original – Right Click on your sheet1 tab and choose View code (or just hit Alt F11) – cut and paste this – then highlight your column (or whatever you want to change) – then run the macro – click tools – click macro – choose sentance case and run
Code Translation for .NET (C#<->VB.NET)
This service will translate the code for you, just start typing the code or upload a file to convert it. For now it only supports from VB.NET to C# and from C# to VB.NET. To use it you can either: Start typing your code. Copy and Paste the code in the Code Text Box. Translate an entire file using the file upload. Disclaimer: No copy is done whatsoever of the code that you either type, or upload for translation. Everything is processed in the server in memory and returned immediately to the browser. If you want to give feedback on …
What is a PAD file?
PAD stands for Portable Application Description, and a PAD file is a clear and easy way for software authors to provide online sources with information about their products. The advantage of using a PAD file is that it enables you to store all the descriptions and specifications in one single place – system requirements, price, contact info, file names, download URL’s and more. Another great thing about PAD files is that they’re so easy to create – and that it doesn’t cost you anything! The Association of Shareware Professionals have put together a range of totally free tools that allow …
Using Character Encoding in ASP.NET
Open the file named web.config in the ASP.NET project. The value of requestEncoding attribute in globalization element is “utf-8”. It means the requested texts were encoded as UTF-8 character set. Because SCO5.05 does not support UTF-8, therefore the requested texts where changed. VB: Public Shared Function unicode_iso8859(ByVal src As String) As String Dim iso As Encoding = Encoding.GetEncoding(“iso8859-1”) Dim unicode As Encoding = Encoding.UTF8 Dim unicodeBytes As Byte() = unicode.GetBytes(src) Return iso.GetString(unicodeBytes) End Function Public Shared Function iso8859_unicode(ByVal src As String) As String Dim iso As Encoding = Encoding.GetEncoding(“iso8859-1”) Dim unicode As Encoding = Encoding.UTF8 Dim isoBytes As Byte() = …