Top 10 iPad Stands You Can Buy |
- Top 10 iPad Stands You Can Buy
- A Look Into: CSS3 Box-sizing
- Batch Rename Multiple Files with NameChanger [Quicktip]
Top 10 iPad Stands You Can Buy Posted: 28 Jul 2012 10:28 AM PDT The iPad is perfect for use on the go. It’s lightweight, fits in your hands and packs some powerful software to work anywhere you please with a data or Wi-fi connection. That is, until you are tired of using your lap as a stand for it. Let’s face it, if you’re going to work hours on end on the iPad, you need a good and sturdy stand your iPad can sit on securely. And that’s what we did for you. When selecting this list of iPad stands, we’d taken into account the angle the stand can provide, if it can work on both landscape and portrait orientations, the looks, the durability and how portable the stand is (there is no point to get a stand that can’t be taken where the iPad can go). We’ve found the top 10 iPad Stands you can get for your iPad. The list is made up of suggestions that will give you optimum working comfort without sacrificing looks or stability. As usual, if you have additions you would like to suggest to our readers, sound off at the comments section. Happy iPad-Stand hunting! Recommended Reading: Cute Smartphone Anti-Dust Plugs You Can Buy NestNest is a simple and versatile stand for your iPad. With Nest, you can securely place your iPad in two different angles. Built for multipurpose use, Nest comes in 6 colors for your selection, is suitable for almost all kinds of tablets, or when you’re not using it for your tablet, to place your keys or even your smartphone. ($14.95) PadFootWeighing in at only 10 grams, PadFoot is made strong to hold your iPad. With its minimalistic design, Padfoot clips to the corner of your iPad and can hold it in both landscape and portrait mode. Great for viewing movies and slideshows, also a smart choice for mobility. ($19.50) BookArcBookArc is an elegant tabletop for your iPad in both portrait and landscape mode. In either mode, you always have access to the charging port. BookArc will stand your iPad in four different positions, and functions like a mini workstation when combine with a wireless keyboard. ($29.99) PRIZMPrizm is a two-piece high quality aluminum stand that fits perfectly on your iPad. With Prizm, you can easily disassemble the stand forstoring to save space when not using it. Another good choice for mobility reasons. ($29.95) CompassCompass is a stylish and compact folding stand for your iPad. Folding down the stand will let you sit your iPad at a lower angle for a comfortable typing experience. Compass is available in three colors, can be folded to the size of a candy bar. ($39.99) CradleCradle is a twistable iPad lap desk, allows you to fix your iPad on its top, or twist its angle to work comfortably while lounging or on a couch. Built lightweight with a minimalist bent design, Cradle can sit nicely on your lap. (Price, quantity and features subject to change during production process.) MagnusMagnus is a simple yet elegant stand that uses a strong magnetic links to hold your iPad. This allows Magnus to avoid using the front support to hold your iPad device securely. You would barely notice that it’s there. Magnus is a hand-crafted stand which stands beautifully anywhere you place it. ($49.95) Stabile 2.0Like your iMac stand? Then you would probably like Stabile 2.0, a rock solid artistic yet stable stand for your iPad. Made of solid steel, Stabile 2.0 comes in silver and black and offers many great features. This stand has a low and user-focused center gravity, and it surely looks great next to your iMac. ($59.90) Infinite LoopInfinite Loop is an iPad stand that could accommodate all uses on many types of surfaces. This stand can be easily bent to any shape to meet your needs while still having the same strength to hold your iPad. Infinite Loop comes with suction caps and adjustable side clips so it can easily fit your iPad, or even your iPhone. (To be available soon) Curve StandCurve Stand has a unique design, which stands out among the rest as it sits boldly on a flat surface to hold your iPad. This stylish iPad stand is also a handcrafted product, to ensure quality. It also has a perfect mirror finish on its surface. (£64.99) Related posts: |
Posted: 24 Jul 2012 02:41 AM PDT Not so long time ago, when we create a box in a web page, let’s say with a div { width: 100px; height: 100px; padding: 10px; border: 10px solid #eaeaea; } The browsers will expand the box’s size to 140px, where this amount 140px of the total width/height is made up of the addition of the However, sometimes this result is not what we expect it to be. Sometimes, we need the box to always be To overcome such a recurrent problem when creating web page layout, we can use the CSS3 Using box-sizingThe And the second one is div { width: 100px; height: 100px; padding: 10px; border: 10px solid #eaeaea; box-sizing: border-box; -moz-box-sizing: border-box; /*Firefox 1-3*/ -webkit-box-sizing: border-box; /* Safari */ } For instance, when we have a box like what we have described above (100px square with 10 pixels for the padding and the borders), the content’s size will decrease to Browser SupportThe So, if you know that most of your visitors will not be using Internet Explorer versions below 8, you can use this useful recommendation (thanks to Paul Irish). * { box-sizing: border-box; -moz-box-sizing: border-box; /*Firefox 1-3*/ -webkit-box-sizing: border-box; /* Safari */ } The snippet above will apply the ExampleIn this section, we will show you a real-life example on how we can make use of this <ul> <li><a href="#">Menu 1</a></li> <li><a href="#">Menu 2</a></li> <li><a href="#">Menu 3</a></li> <li><a href="#">Menu 4</a></li> <li><a href="#">Menu 5</a></li> </ul> Then, we will add some decorative styles; such as, set the navigation’s fix width for nav { width: 500px; margin: 50px auto 0; height: 50px; } nav ul { padding: 0; margin: 0; } nav li { float: left; } nav a { display: inline-block; width: 100px; height: 100%; background-color: #ccc; color: #555; text-decoration: none; font-family: Arial, sans-serif; font-size: 12pt; line-height: 300%; text-align: center; } nav a { display: inline-block; width: 100px; height: 100%; color: #555; text-decoration: none; font-family: Arial, sans-serif; } nav li:nth-child(1) a { background-color: #E9E9E9; border-left: 0; } nav li:nth-child(2) a { background-color: #E4E4E4; } nav li:nth-child(3) a { background-color: #DFDFDF; } nav li:nth-child(4) a { background-color: #D9D9D9; } nav li:nth-child(5) a { background-color: #D4D4D4; border-right: 0; } At this point, our navigation just looks normal. However, the problem will come when we add left or right borders to the link menu. nav a { border-left: 1px solid #aaa; border-right: 1px solid #f3f3f3; } The menu will overflow to the bottom, as the link’s width is no longer To overcome this issue, we need to apply the nav a { border-left: 1px solid #aaa; border-right: 1px solid #f3f3f3; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; } Further ReadingAnd finally, if you are the adventurous type, and want to dig deeper into this subject, we have put together a few selected references for you:
Related posts: |
Batch Rename Multiple Files with NameChanger [Quicktip] Posted: 10 Jul 2012 04:41 AM PDT (Mac only) Renaming multiple files on your Mac can be a tedious job especially when the system itself is quite limiting. Of course, creating a custom script on your Mac can help solve this but it is not for the average user. If you do not wish to rename each and every single file one by one, then NameChanger has the solution to deal with large number of files that require name changes. NameChanger is a desktop application that simplifies the process of renaming multiple files at once. The process is easy and it even provides sequential renaming of files. You can also reorganize the file sequence by drag-and-drop, get real-time preview of every change and a whole lot more. In this tutorial, we will guide you on how you can easily change the names of multiple files simultaneously and in sequence on your Mac. Recommended Reading: Batch Rename Filenames in Windows Get NameChangerBefore you proceed with this tutorial, you will need to install NameChanger on your Mac. Simply head over to the download page and proceed with installation (Mac will automatically install the application once the download is complete). Add files to NameChangerWhen installation is done, you are ready to rename multiple files at the same time via one of two ways: A. Select files from NameChangerOpen the NameChanger application and click on the ‘Add’ button to select files. B. Drag files to NameChangerAlternatively, you can also add files by dragging selected files into NameChanger. Renaming FilesThe selected files will be placed under the ‘Original Filename’ column on the left of the application window. To the right is a column called ‘Renamed Filename’, where you will be able to review the new filename if you change it. The review is in real-time mode. Note that the filename as shown above are numbered in sequence with the same prefix IMG_, so changes can be done easily, but it can get tricky if existing filenames have long and/or randomized numbers. There are a number of styles to change your filenames with NameChanger and in this tutorial, we will focus on changing filenames in ‘Sequence’ mode. 1. Hide Extension (Optional)Some files may be in .png or .jpg format, but to make it easier for you to read and rename the filename, you need to hide the extensions.
2. Change mode to SequenceThe default mode to change filenames is ‘Replace First Occurrence With’ as selected at the dropdown menu in the application window. To change mode to ‘Sequence’, simply click on the dropdown menu and select ‘Sequence’. When you have selected the mode to ‘Sequence’, a new option panel will pop up as follow. 3. Sequence PanelAt the Sequence panel, there are several items you can control. Let’s say our objective here is to rename the filenames from IMG_XXX to Perth_XX. For the benefit of our readers, we shall split these filenames into two parts: the prefix IMG_, and sequence XXX, so this tutorial can be more easily understood. There’re only 4 items you need to touch on the Sequence panel:
When the changes are done, you can preview the new filenames in your application window under the ‘Renamed Filename’ column. The new filenames has now been changed to the prefix Perth_ with a two-digit sequence. 4. Rename filesWhen you are satisfied with the changes, click on the ‘Rename’ button to complete the name change. 5. Reorganize sequence (additional)Should you want to reorganize the sequence of your files, simply click on ‘Image Browser’ at the top right corner of the application window. A new pop-up window will appear with a preview of your image files. Drag any file to change its position, and NameChanger will automatically update the sequence number of the files following the sequence you have organized. ConclusionRenaming multiple files and reorganizing the positions of photographs are now made easy with the help of NameChanger, which makes a lot of difference, especially when you are dealing with hundreds of photo for your digital album. It not only works for photos; it can be used to rename any type of files. Related posts: |
You are subscribed to email updates from hongkiat.com To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google Inc., 20 West Kinzie, Chicago IL USA 60610 |
0 comments:
Post a Comment