Archive for April, 2008

Naruto Movie 4 (Shippuuden Movie 1) is released

April 29, 2008
Dattebayo is pleased to announce Naruto Movie 4 (Shippuuden Movie 1) release. This movie, just like our recent episodes of Naruto and Bleach, is encoded with h.264. The resolution is 768×432, and audio is mp3. This allows optimal playback performance even on low-end computer systems.

We will NOT be releasing alternate versions of this movie, unless we obtain a higher resolution / quality version such as we did for Naruto Movie 3. PLEASE DO NOT WRITE TO US SAYING YOU HAVE/KNOW WHERE WE CAN GET A DVD RAW. OBVIOUSLY WE USED A DVD RAW OTHERWISE WE WOULD NOT HAVE WAITED FOR THE DVD TO COME OUT BEFORE SUBBING THE MOVIE.

For those who are still unable to play our releases, we direct you to the playback FAQ, which covers all the possible playback issues.

You can expect that future releases from Dattebayo will be in this format.

Uzumaki Naruto – Pop Art

April 11, 2008

Naruto Manga Chapter 397 Translation

April 11, 2008

It definitely seems like a case of “one or the other” nowadays, as this week of course there was no episode from the Japanese Naruto: Shippuuden anime series, but there is a new manga chapter, and next week there WILL be an episode from the anime, but not a chapter from the manga. What’s a Naruto Fan to do? For now I guess, just rejoice around the very latest chapter from the Naruto manga series, the 397th entitled: The Man Who Knows The Truth – which has been released completely translated in to English and edited to a much higher quality than the RAW… which hasn’t been released yet, but we will presume that is the case. Anyways, you are completely free to view this chapter as always, and it’s up and waiting for you on our Naruto Manga Downloads page. Enjoy!

Create a Vector RSS Icon with Illustrator

April 11, 2008

Probably one of the most popular and recognisable icons in the web universe; the RSS icon is displayed on many website to indicate the availability of a subscription feed. There are pre-made icons you can download and place on your website, however this tutorial cover the process of creating your own custom vector RSS icon in Illustrator.
Since the icon is to be created in vector format, it can be scaled up or down in size for implementation on future websites you may work on, unlike a raster version which would have to be remade in larger dimensions to prevent pixelation.

141.jpg

For beginners to Illustrator, the following diagram shows the structure of the elements that will make up the icon. Similar to Photoshop, Illustrator works in layers but also, multiple objects can also be stacked on top of one another within a single layer. By using ‘CTRL/CMD + [‘ and ‘CTRL/CMD + ]’ you can alter the stacking order of a selected object and furthermore, pressing ‘CTRL/CMD + SHIFT + [‘ and ‘CTRL/CMD + SHIFT + ]’ will send an object to the bottom and top of the stack respectively.

110.jpg

To begin, draw a rounded rectangle. Tap the cursor keys Up and Down to adjust the roundness of the corners before releasing the mouse, and hold the SHIFT key to constrain the proportions to make it square. Alternatively, simply clicking on the artboard will bring up a dialog box where precise measurements can be entered.
Fill this shape with a vertical gradient ranging from a dark orange to a lighter tone.

210.jpg

Press ‘CTRL/CMD + C’ and ‘CTRL/CMD + F’ to copy the shape and place in front. Then scale down the shape slightly while holding ALT. Fill this shape with the darker of the orange tones previously used. Press ‘CTRL/CMD + C’ to Copy the shape.

32.jpg

With this smaller shape selected use the Gradient Mesh Tool to add a highlight in the top left, adjust the colour sliders to produce a brighter yellow hue.

42.jpg

Press ‘CTRL/CMD + F’ to paste in the shape copied in the previous step. We copied the shape before adding the gradient mesh because the mesh can limit the editability of the shape and basically mess things up! Fill the shape with white.

Use the Pen tool to create a shape that covers the lower half of the white object, and add a curve to the top, this will be used to cut away the shape to create a reflection.

52.jpg6.jpg

Select both the white object and the new shape created with the Pen tool, then click the Subtract From Shape Area button in the Pathfinder Window, then Expand. Lower the Opacity of this shape to 20%.

71.jpg

To create the actual RSS symbol, draw a circle (hold SHIFT) and add a black stroke. Increase the stroke to produce a broad ring. Take a note of the size, in my case it was 12pt, but yours may depend on the size you are working at.

Use the Direct Selection Tool to select and delete two of the four points that make up the circle, this will leave you with just a quarter of the circle. Copy this shape and move down 45degrees to the left.

81.jpg

Use guides for visual assistance while you scale and align the shapes, depending if your preferences are set to scale strokes, you may need to reset the stroke of the second shape to 12pt (or whatever size you noted down earlier!).

91.jpg

Select the pair and go to Object > Expand and select the Stroke checkbox to convert the strokes into complete shapes.

101.jpg

Complete the symbol by adding a circle, hold SHIFT to constrain the proportions and use guides to align with the other objects, press ‘CTRL/CMD + G’ to group the objects then fill with a gradient from white to a light grey.

112.jpg

Align the symbol with the orange background objects, then order the reflection to the top of the stack by pressing ‘CTRL/CMD + SHIFT + ]’.

121.jpg

Finish off the icon with some subtle shading by selecting
Effects > Stylize > Outer Glow.

131.jpg141.jpg

System files: think before removing them

April 10, 2008

There are any number of programs available that will claim to search your hard drive and remove any duplicate files. Most of these programs do a pretty good job, but it’s worth having an understanding of what impact removal of system files and application components can have upon your computer.

Sanx’s pocket guide to DLLs, OCXs and TLBs

DLLs, OCXs and TLBs are sections of code that exist in a different file to the main program file – the executable.

DLLs (Dynamic Link Libraries): Programmers often use DLLs when they have sections of code they wish to share between applications, but don’t want to duplicate in each application. Placing this code in a DLL allows multiple applications to access it whilst keeping the overall application size down.

OCXs (OLE Component Extensions): OCXs tend to be visual components or objects. Where a programmer wants to use a certain style of button or list box, he’ll use an OCX to make it. This saves him from having to write all the code to display the button manually. He just puts it there using the OCX, and all the actions come pre-packaged without him having to worry about coding what happens to the button image when the user clicks his mouse on it.

TLBs (Type Libraries): Type libraries are basically definitions of data structures – methods in which information is stored and transfered. Whilst these are usually stored in the application itself, having thm stored in a separate file allows the programmer to use the same type definitions across more than one program.

So what happens when a programmer uses one of these files and you install their program on your computer? In the vast majority of cases, the process is seamless. The setup program copies down the files, registers them properly and the application works without any thought or other configuration required. Problems can occur however, when different applications use the same components.

Whilst this is not an issue for custom-written DLLs and OCXs (i.e. ones the programmer has written themselves), there can be a problem when the programmer uses stock components. Visual Basic comes with a whole bunch of these, as does Visual C++ and a whole number of other programming languages. The problem arises because the programmer cannot automatically assume that the machine on which the software is going to be installed has all the pre-requisite components already on it. And even if it does, he cannot assume that all the components will be the right version.

Because of this, he will usually package up into his setup routine all the components the application will require. Now, this may end up containing duplicates of what is already on the target machine.

To cope with multiple versions, Windows has a built-in way of handling calls to external components. If an application makes a call to a certain DLL (let’s call it sanx.dll) Windows will first look in the directory in which the application resides, and then in the \Windows\System32 directory.

Should the programmer need a specific version of a component, he can install it in the application directory. If it’s going to be a common one, he can put it in the System32 folder.

The issue really starts getting fuzzy when you realise that in addition to the component actually having to be on the machine, it also needs to be registered. Registration of a component involves writing a whole bunch of GUIDs (Globally-unique identifiers) to the registry. Registration basically makes the component available to applications under a certain name and identifier without the programmer having to reference it by path and filename – quite a good thing since the programmer doesn’t know in advance into what directory you’ve installed Windows or what directory you’re going to put his program. Because of this, it’s quite possible to have two or more identical components in different places on the machine, with different identifiers. Removing one will probably break the program associated with it.

Let’s say sanx.dll exists on your machine in two places; your Windows\System32 directory and in the directory into which you’ve installed Sanx’s ReallyWonderfulDoEverything application – the program that uses sanx.dll. Which version of sanx.dll will it be using? Well, that depends on where the registered version of the component is – something that can be devilishly hard to find. Even if both versions are registered, you’d need to know which of the two identifiers the program is using. Removal of the wrong copy of sanx.dll (i.e. the registered one) will end up breaking Sanx’s ReallyWonderfulDoEverything. And that’s a bad thing.

Windows XP – Create one click shutdown shortcut

April 10, 2008


This is how you can create a shortcut on your desktop and when ever you click at it, your Windows will be shutdown.

Step 1

Right click on your desktop > New > Shortcut


Step 2

You will see a pop-up window. Enter SHUTDOWN -s -t 01

Note: Enter c:\windows\rundll.exe user.exe,exitwindows (if you’re using Windows95, Windows98 or ME)

Click the Next button and name the shortcut as Shutdown, Turn Off, Stop or whatever. Then click Finish. DONE.

Optional:

1. You can make a keyboard shortcut for that icon and by pressing them, you will be able to shutdown Windows. Right click to that shortcut icon > Properties. Click the Shortcut key’s textbox and press the combination of keys that you prefer (e.g. Ctrl-Alt-Q)

Click the Apply button and then OK.

2. You also can change the shortcut icon. (Image at the top). Right click to the shortcut > Properties and click the Change Icon… button. Select any icon you prefer, click OK. Then, click the Apply and OK button.

How to rename Recycle Bin in Windows XP?

April 10, 2008

Take this simple steps:-

Open your Registry Editor. Go to Run (Windows+R), type regedit and press ENTER.

Then go to:-

HKEY_CLASSES_ROOT/CLSID/{645FF040-5081-101B-9F08-00AA002F954E}

Note: For faster navigation, press C on your keyboard while selecting the HKEY_CLASSES_ROOT folder.

You may have something like below:-

Double click the (Default) and you will see the Value Data: Recycle Bin. Change the Value Data to Trash or whatever you want.

Click OK and close your Registry Editor. Restart your PC. By now, your Recycle Bin icon’s name should be changed.

XP Registry – Speed up shutdown time

April 10, 2008


Do you any problem on Windows shutdown time? Ok, here are a couple of steps you can take to speed up your Windows XP shutdown process.

Step 1

Paging file (pagefile.sys) – Don’t have XP clear at shutdown.

The paging file is used to store temporary files and data, but when your system shuts down, information stays in the file. Some people prefer to have the paging file cleared at shutdown, because sensitive information such as unencrypted passwords sometimes ends up in the file. However, clearing the paging file can slow shutdown times significantly, so if extreme security isn’t a high priority, you might not want to clear it. To shut down XP without clearing your paging file, run the Registry Editor and go to:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management

Change the value of ClearPageFileAtShutdown to 0. Close the Registry and restart your computer. Whenever you turn off XP from now on, the paging file won’t be cleared, and you should be able to shut down more quickly.

Step 2

Reduce the amount of time Windows will take to kill open applications on shutdown.

Part 1 – Go to :

HKEY_CURRENT_USER\Control Panel\Desktop\


Change the value of WaitToKillAppTimeout to 1000. And then,


change the value of HungAppTimeout to 1000 also.

Part 2 – Go to :

HKEY_USERS\.DEFAULT\Control Panel\Desktop

Change the value of WaitToKillAppTimeout to 1000. And then,

change the value of HungAppTimeout to 1000 also.

Part 3 – Go to:

HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\

Change the value of WaitToKillServiceTimeout to 1000.
Step 3

Non-responsive applications – Allow XP to close it automatically upon shutdown

Go to:

HKEY_CURRENT_USER\Control Panel\Desktop

Change the value of AutoEndTasks to 1.

So, how was it for you? I hope you find this tips really useful.

Windows XP – Customize Folder Background

April 10, 2008
Ok, just a simple Win XP tip for today. If you have an experience using Windows 98 before, you will notice that there are an option or wizard to customize and change the folder background image. Unfortunately, this cool feature does not exist in Windows XP. No worry, in this short article, I will show you how easy it is to customize your folder background in XP.

Step 1

First thing first, download this utility tool, IESHWIZ

Step 2

After that, extract IESHWIZ.zip to C:\Windows\System32 folder. This zip file will extract the ieshwiz.exe file into System32 folder.

Step 3

Next, open a command prompt (Windows+R and then type cmd, press ENTER), and type:-

IESHWIZ <path:\foldername>

E.g:- To customize the “test” folder in drive D:, type IESHWIZ D:\test and press ENTER.

Note: In this tip, I will using the “test” folder in my local drive D:

Step 4

You will see a popup window and something like below:-

Select the Choose a background picture. Click Next.

Step 5

I will make some settings like below:-

I used my dX-Vista Maniac as a background image..hehe..Click Browse and you can select either a .bmp, .jpeg or .gif image. Click Next and Finish.

Done. Now go to the “test” folder in D: and you can see if the changes are applied.

All of the these settings are stored in a file named Desktop.ini within that folder. You can read more about Desktop.ini on MSDN website.

Note: If you want to remove all the settings that you’ve made before, simply follow the step above from Step 1 to 4. But in Step 4, please select the Remove Customization. Click Next and Finish.

*Another alternative that I’ve just found out was, you can extract the IESHWIZ.zip file in the folder which you want to make a changes. Just run the ieshwiz.exe file and start the customization. E.g:- Extract the IESHWIZ.zip into our “test” folder.

Naruto: Shippuuden Movie 2 Named!

April 9, 2008

Well, us gaijin (foreigners) who aren’t lucky enough to live in Japan have yet to even see the first Naruto: Shippuuden movie (which we hear was quite good, and will be released on DVD in Japan on April 23rd, and we’d imagine soon after on the interwebs) that was released last August in theaters across Japan to much fanfare, but, just to tease us… the name for the second Naruto

: Shippuuden movie has been announced. Previously known as Naruto: Shippuuden Movie 2, it will no longer be known as such as it is now Naruto: Shippuuden Kizuna (Bonds) and will revolve around both Naruto and Sasuke, which as we’ve seen in a teaser trailer may culminate in a battle of epic proportions! But, we’ll just have to wait until next April to see it when it is release on DVD, unles

s you want to see it when it’s released in Japan on August 2nd! We’ll keep an eye out for any further updates!