Le Kevin dot com

photographic-poetic-musical horizon

The iPhone might consider as the second best iPod, however, it has limitations. For example, you can not delete the songs from the Music app. You can not control the music app if you connect it to the head unit such as the car stereo system, or to some any third party speaker systems; it display a splash with message “Accessory Connect”. Below, some ways you can get around with your iphone with the lastest firmware iOS 5.x.x

Not jailbroken iPhone

For unjailbroken iPhone, you can use these apps from App Store. Tested working on iOS 5.0.
Note: for some instance, you might need to close/ and open the app again for it to take over the control of the built-in iPod/Music app.

1. MyTunes App

  • WOW HD – The heart of audio enhancement. Easily switch between tunings for all kinds of listening devices that includes headphones, speakers, car audio, and the internal device speakers.
  • Normalize – Never have to adjust the volume again. This tech puts all of your music to the same level when you play it.
  • EQ – Gain access to a 3-band and a 10 band EQ. For simplicity you can just choose a preset and we’ll take care of the rest.
  • Driving Mode – Interface optimized for using the media player quickly.
  • DJ Transitions – Let the player DJ to you and change from one track to the next just like they do in dance clubs.
  • Player – Have full access to an enhanced player that offers streamlined search, scan, and play controls.
  • Custom album art – If a song is missing album art we’ll provide art based on the genre.
  • Seamless integration with the iWOW 3D – MyTunes compliments the iWOW 3D. Run both at the same time to get the ultimate sound possible!!
  • more info: http://itunes.apple.com/us/app/mytunes/id463041764?mt=8

2. Panamp App

  • Dynamic creation of in-app playlists, called Queues.
  • Intelligent playback controls remain on-screen and accessible at all times.
  • Power search, search by text or with a swiping gesture.
  • Gesture controls and a smooth, responsive user interface.
  • Sync new music through iTunes as usual.
  • Fully supports iTunes playlists.
  • AirPlay support.
  • iCloud support.
  • Headset remote control compatible.
  • Control playback from the lock screen.
  • more info: http://itunes.apple.com/us/app/panamp-the-music-player/id446136147?mt=8

Jailbroken iPhone

1. NoAccessorySplash iOS4

Open Cydia and install NoAccessorySplash iOS4 (currently this tweak  only work for iOS 4 or under), the developer (JackNorris) has not update this tweak for iOS 5 or over.
more info: http://modmyi.com/cydia/com.jacknorris.noaccessorysplash40

2. NoAccSplash iOS 5.x (updated)

If you’re like me then you HATE the above image showing on your iPhone or iPod Touch more than that pesky email saying your wife just overdrew your checking account :P

If you are running a jailbroken iDevice on iOS 5.x then your in luck. I’ve written a Tweak that will make this screen go away and give you back your iPod controls so you aren’t just limited by the controls from the accessory you are using. Give NoAccSplash a try in our repo, http://beta.leimobile.com/repo/

This is iOS 5 only!! If you are on 4.x or 3.x there is a Tweak called NoAccessorySplash that will work on those firmwares. Also, send any bugs to brandon [at] leimobile.com

via: http://leimobile.com/noaccsplash-released/

Orca MSI Editor allows you to edit the properties of any MSI file. With this tool, you can change the title and text within the installer an look at how and where the files are delivered.

Once installed you can right-click any MSI and select Edit with Orca.

This software is no longer support by Microsoft.

Download ORCA

Nỗi Nhớ

No comments

Có một ngày nỗi nhớ vây quanh,
Anh biết mình yêu em từ đó
Vần thơ thốt từ trong nõn cỏ
Gió lượn về mang hương tóc em bay.

Ngước nhìn trời mà chẳng thấy mây
Mỗi chỉ thấy nụ cười em lơ lửng
Như thách thức,như tưng bừng rôn rã
Ta mỉm cười vuốt nắng ngỡ tóc em.

Ta yêu em sợ mình hoá điên,
Bỗng cuộc đời trở nên hiền hậu quá
Không lo toan không căng mình bứt phá
Không là ta trong ước muốn của ta.

Biết rằng em chẳng là Nữ Oa,
Cũng chẳng là bà tiên trong cổ tích
Trái tim ta bao lần thương tích,
Em biết mình đã vá thương đau?

Sẽ là sai nếu chúng mình yêu nhau
Nỗi đau ta em đừng chung vai gác
Khi bên ta đường em sẽ lạc
Giữa chốn mù sương không chắc chắn lối về.

Chỉ mong em giúp ta trọn lời thề,
Mãi để em êm đềm hạnh phúc
Con tim ta vẫn im nơi lồng ngực
Cố âm thầm thổn thức ta nghe.
(suu tam)

Sometimes we want to remove accents from vietnamese words to Latin based characters for search or matching routine in database. However, Microsoft SQL Database does not offer normalized function which we can use to remove accents from words such as:

  1. AI ĐI TRÊN DÀM ĐƯỜNG TRƯỜNG => AI DI TREN DAM DUONG TRUONG
  2. áo em chưa màc một lần => ao em chua mac mot lan

There is  workaround by using CLR function, see example code below:

using System;
using System.Data;
using System.Data.SqlClient;
using System.Data.SqlTypes;
using Microsoft.SqlServer.Server;
using System.Text;
using System.Collections.Generic;
using System.Globalization;

public partial class UserDefinedFunctions
{
  [Microsoft.SqlServer.Server.SqlFunction]
  public static SqlString fn_RemoveDiacritics(String str)
  {
    // Put your code here
    return new SqlString(RemoveDiacritics(str));
  }

continue reading…

RewriteRule ([A-Z][a-z]+)([A-Z][a-z]+)?([A-Z][a-z]+)?([A-Z][a-z]+)?([A-Z][a-z]+) 
String: TodayIsMonDayYes
Output:
$0:	TodayIsMonDayYes
$1:	Today
$2:	Is
$3:	Mon
$4:	Day
$5:	Yes

Add Spaces Before Capitals

$regexp(title,(<=\l)(?=\u), )

It looks back one character for a lower case letter, “(?<=\l)”
and then looks forward a character for an upper case letter, “(?=\u)”
putting a space in if both are true. “, )”

Mp3tag is a powerful and yet easy-to-use tool to edit metadata of common audio formats where it supports ID3v1, ID3v2.3, ID3v2.4, iTunes MP4, WMA, Vorbis Comments and APE Tags.
It can rename files based on the tag information, replace characters or words in tags and filenames, import/export tag information, create playlists and more.
Mp3tag supports online database lookups from, e.g., Amazon, discogs, or freedb, allowing you to automatically gather proper tags and cover art for your music library

Download: Mp3Tag v 2.49

via: http://www.techsupportalert.com/best-free-mp3-tag-editor.htm