background preloader

Artist Liwei

Artist Liwei

Candida Höfer Artworks for Sale – Candida Höfer on artnet My Cart (0) Log In Art Valuation Price Database Fine Art and Design Price Database Decorative Art artnet Analytics Reports Buy and Sell artnet Auctions Galleries Auction Houses Market Alert Knowledge and News Artists A–Z artnet Magazine Calendar Monographs Home > Artists A–Z > Candida Höfer > Artworks for Sale Candida Höfer (German, 1944) Want to know more about Candida Höfer? Get email alerts about this artist! Sold Artworks Calendar artnet Magazine More Information Biography Monographs artnet Analytics Reports Market Reports All Sellers ( ) artnet Auctions ( ) Galleries ( ) Auction Houses ( ) sort by: page: of 6 ( ) Candida Höfer Auction: Nov 29, 2012 Lempertz View Details | entire auction end time: Nov 13, 2012 12:03 PM EST artnet Auctions View Details Bernard Jacobson Graphics Galerie Fluegel-Roncak Galería Daniel Cardani Serge Sorokko Gallery Galerie Division Ben Brown Fine Arts Rena Bransten Gallery Soura Art Kukje Gallery Hamburg Kennedy Photographs Yvon Lambert Born: Eberswalde, Germany Studied at the Kölner Werkschule

Co.Design - Fri, May 06 2011 Chat with Your Friends through ms dos Command Prompt -: Chat with Friends through ms dos Command Prompt :- 1) All you need is your friend's IP Address and your Command Prompt. 2) Open Notepad and write this code as it is.....! @echo off :A Cls echo MESSENGER set /p n=User: set /p m=Message: net send %n% %m% Pause Goto A 3) Now save this as "Messenger.Bat". 4) Open Command Prompt. 5) Drag this file (.bat file) over to Command Prompt and press Enter. 6) You would then see something like this: 7) Now, type the IP Address of the computer you want to contact and press enter You will see something like this: 8) Now all you need to do is type your message and press Enter. ShareThis

How to use one layout file in magento to control it's xml structure Over the past 3 years working with Magento and complying with the “Magento way” of managing code, usage of the “local.xml” file presented itself as one of the best ways to update xml layout. This article is aimed at those who are not aware of the “local.xml” method. If you’re already using it, kudos to you. If not, you definitely should use it. The idea is simple: Use only one file, the local.xml, placed inside your theme’s layout folder to override or update all xml references for that theme. Benefits: 1. Drawbacks: 1. How to use the local.xml file. How to set it up: 1. 3. Examples: 1. 2. 3. 4. There are many other uses of course but I merely wanted to point out ways of adding, removing and updating to better illustrate the point of having local.xml in your development workflow. Hope this makes a good starting point in your next project for the first time users and very welcome topic to discuss about for those with a working experience. Thanks for reading

A geek in Japan Evangelion Store in Harajuku Zordor Related posts: Evangelion Girls Photos Exhibition Obama Dines Sushi at Jiro Here in Tokyo during the last few days we have felt a larger police presence, mostly in train stations, due to Barack Obama’s visit. “I was born in Hawaii and ate a lot of sushi, but this was the best sushi I’ve ever had in my life.” Source: New York Times The Newest Version of Asimo Honda engineers have been working for more than 30 years trying to create a humanoid robot: Asimo. Source: Japan Today Lolita Fashion in Shinjuku Since so many tourists were attracted to the Harajuku bridge, it has become more and more difficult to spot young Japanese people dressed following the style of Tokyo urban tribes. Kameido Tenjin We ended our walk around Kameido in the Shintoist shrine Kameido Tenjin 亀戸天神. The first bridge right after the main torii is the bridge of the woman (Onnabashi 女橋: woman, bridge). Wisterias are plants that have inhabited the Japanese archipelago for a really long time.

The Top 15 Google Products for People Who Build Websites Google’s strategy of empowering site developers and owners with free and valuable tools has proven to be effective in garnering a fair bit of geek love for the company. But this affinity to Google by technology enthusiasts is not without warrant—they really do make excellent products that can be instrumental in building, maintaining, and improving websites. What’s more, they’re all usually free. Check out some of the best Google products for developing, analyzing, maintaining and tinkering with websites. 1. Most developers know the advantages and convenience of testing and debugging in a web browser. Google Chrome, the latest major entry in the web browser market, has a robust, capable, intuitive, and downright helpful suite of tools geared for developers comparable to—and some might even argue, better than— web development tools such as Firebug. 2. It additionally lets you discover your most popular web page by way of showing you the number of external links that point to it. 3. 4. 5.

The Shapes of CSS Learn Development at Frontend Masters CSS is capable of making all sorts of shapes. Squares and rectangles are easy, as they are the natural shapes of the web. Add a width and height and you have the exact size rectangle you need. Add border-radius and you can round that shape, and enough of it you can turn those rectangles into circles and ovals. We also get the ::before and ::after pseudo elements in CSS, which give us the potential of two more shapes we can add to the original element. Square Rectangle Circle Oval Triangle Up Triangle Down Triangle Left Triangle Right Triangle Top Left Triangle Top Right Triangle Bottom Left Triangle Bottom Right Curved Tail Arrow via Ando Razafimandimby Trapezoid Parallelogram Star (6-points) Star (5-points) via Kit MacAllister Pentagon Hexagon Octagon Heart via Nicolas Gallagher Infinity via Nicolas Gallagher Diamond Square via Joseph Silber Diamond Shield via Joseph Silber Diamond Narrow via Joseph Silber Cut Diamond via Alexander Futekov Egg Pac-Man Talk Bubble TV Screen Lock

Unable to login into the Magento backend When you migrate your Magento website from location to another, or you change the domain-name under which it is running, you might run into the problem that you can't login anymore to the Magento Admin Panel. Here are various solutions to this problem. Localhost One reason why the Magento login fails, might be that you're accessing the Magento website through the hostname localhost. The only workaround is to fool Magento into thinking a real domainname is used. If you are using a remote webserver, it's unlikely that this problem occurs. Cookie domain If you have moved your site, things might be cookie related. Another reason why you fail to login, could be some setting within the Magento configuration. If the database table core_config_data doesn't contain any row with path set to web/cookie/cookie_domain, don't add it because you don't need it. If you use a database table prefix, the table core_config_data might actually be uii44_core_config_data or something alike. should become:

Snyppets - Python snippets pt This page contains a bunch of miscellaneous Python code snippets, recipes, mini-guides, links, examples, tutorials and ideas, ranging from very (very) basic things to advanced. I hope they will be usefull to you. All snippets are kept in a single HTML page so that you can easily ❶save it for offline reading (and keep on a USB key) ❷search in it. Note that scripts that do some web-scraping may not work anymore due to website changes. (Don't forget to read my main Python page ( ): there is handful of other programs and a guides.) Advertising To avoid dodgy websites,install WOT Send a file using FTP Piece of cake. import ftplib # We import the FTP module session = ftplib.FTP('myserver.com','login','passord') # Connect to the FTP server myfile = open('toto.txt','rb') # Open the file to send session.storbinary('STOR toto.txt', myfile) # Send the file myfile.close() # Close the file session.quit() # Close FTP session Queues (FIFO) and stacks (LIFO) Still hungry ? #!

Up-sell, Related and Cross-sell products | Magento Magento ecommerce . Good Websites with your Magento online store we’ve got a variety of product presentations to promote, up-sell and cross-sell products. Up-sell Products Up-sell products are items that your customer could buy instead of the product that he is viewing. These products may be of a better quality, more expensive, be more popular or produce a higher profit margin. Related Products Related products are products which can be purchased in addition to the item the customer is viewing. Cross-sell Products Cross-sell products appear on the shopping cart page. Where to find in the back-end? Log into your Magento back-end.

20 PSD Tuts That Will Turn You Into A Photoshop Guru Many people can use Photoshop, but only a select few can call themselves gurus. Learn all the methods in the 20 tutorials below and you’ll be well on your way to joining this elite. Rather than focus on tuts for beginners, intermediates or advanced users, we’ve simply chosen ones which produce jaw-dropping effects. All of them are easy to follow, although most do require at least some prior knowledge and experience. 1. Colorful Plexi Text Effect Follow this tutorial to create dazzling, multi-layered, semi-transparent lettering, with a Perspex-like quality. 2. 3D Pixel Stretch Effect File this tutorial under “simple but effective”. 3. Turn a simple cityscape into a torrentially flooded wasteland. 4. Become the master of light and glow on Photoshop with this brief, easy-to-follow guide. 5. Use masking tools, layers, gradients and lines to turn your favorite piece of 3D text into something more colorful and commercial. 6. 7. This tutorial is so versatile. 8. 9. 10. 11. 12. 13. 14. 15. 16.

Create a Color Switcher in Magento Magento comes packed with a lot of options. But, no matter how many options you put into some product, you can never cover all of them. One of such options (for now) is a color switcher in Magento. To be more precise, an image switcher based on color selection. The idea is to have a dropdown box from which you choose a color, and, based on the color you selected, product image changes. This should be based on some simple JavaScript (in my case, jQuery). Firstly, you need to upload some images to your product and give them some meaningful names like Red, Blue, Green depending on your product color. After this is done, we go to the code part. The final step is to modify the /template/catalog/product/view/media.phtml file to grab all of the product images and dump them into some div. And some additional screenshots for you to see final result: After some additional styling you can get some impressive results for this. You can see how it works in a video bellow: Note!

Tutorial: Introduction to Magento Theme Development In 2008, a small company named Varien, based in Los Angeles, quietly released an open source ecommerce platform to the world. Magento, as it came to be known as, quickly gained traction with web developers wishing to move on from the days of osCommerce and Zen Cart to a more professional and robust system. Magento has earned a reputation of being flexible and powerful, while remaining somewhat of a mystery to developers. Documentation for the platform was, and still is, scarce. In this tutorial, we’ll look at Magento’s powerful theme system, and learn how to build a simple custom theme for Magento. Magento Templates The template system that ships with Magento may seem a little complex at first, but the price we pay in complexity affords us a great deal of flexibility and power, as we’ll discover. There are three components to the template system: PHP template filesPHP block classesXML layout configuration Folder Structure But what are those interface and theme names in there? Best Practices <?

Magento: reload color images for configurable product | Baobaz Blog Let's talk about one situation. We are in shop made in Magento. We are on configurable product page. First we must do some preparations: Create attribute "image_storing" type boolean and add it to your attribute sets. For each color of superproduct (configurable+simples) choose one simple product and set value to yes, also to this product upload images of this color. Now create new module called "imageswitch" (or whatever you want, just remember to change it in the following code). In it you must have a controller looking like this: This controller will reload the whole media block, but for that we also need proper layout xml file imageswitch.xml <? and a layout html file - page/empty.phtml <! Then we need to add some observer to catalog/product/view.phtml so we can reload it when the value of color is changed (attribute76 is the id of select for attribute color, it's default id if we use standard Magento attribute, if changed, may need adjusting) <div class="product-img-box"> <?

Related: