Skip to main content

Home/ Web Development, Design & Programming/ Group items tagged Where

Rss Feed Group items tagged

Kashif Mehmood Mughal

115+ Famous Resources for Promote your Design Articles/News | Smashing Buzz - 5 views

  •  
    Everyone want more visitors on your website is a very multifaceted process with a lot of variations, there is many ways as examples: SEO, valuable content, link exchange and advertising on different resources. As per today need of most design and technology based bloggers who want to promote design or tech related news and want to get more traffic we presenting most active resources where you can submit your news, articles, design posts and technology news for get valuable visitors.
awqi zar

Mix Up the Workweek by Setting Your Own "20-Percent Time" - WebWorkerDaily - 3 views

  •  
    Many large companies have policies that allow employees to spend some of their time working on their own projects. These programs are often used to entice high-caliber job applicants, as well as encourage innovation. For example, Google has what it calls "20-Percent Time", where its employees spend one day each workweek on project they're passionate about, while 3M calls its version "15% culture," which "encourages technical employees to spend 15 percent of their time on projects of their own choosing and initiative."
Soul Book

The Incredible Em & Elastic Layouts with CSS - 0 views

  • Elastic design uses em values for all elements. Ems are a relative size, written like this: 1em, 0.5em, 1.5em etc. Ems can be specified to three decimal places like so: 1.063em. “Relative” means: They are calculated based on the font size of the parent element. E.g. If a <div> has a computed font size of 16px then any element inside that layer —a child— inherits the same font size unless it is changed. If the child font size is changed to 0.75em then the computed size would be 0.75 × 16px = 12px. If the user increases (or decreases) text size in their browser, the whole interface stretches (or shrinks.)
  • All popular browsers have a default font size of 16px. Therefore, at the default browser setting, 1em = 16px.
  • The <body> inherits it unless styled otherwise using CSS. Therefore 1em = 16px, 0.5em = 8px, 10em = 160px and so on. We can now specify any element size we need to using ems!
  • ...9 more annotations...
  • However, (gasp) IE has a problem with ems. Resizing text from medium (default) to large in IE5/6 would lead to a huge increase in font size rather than the gradual one expected. So another selector is needed to get IE to behave: html{ font-size:100%; }
  • Let’s give our <body> some more style, and center everything in the viewport (this will be important later for our content wrapper.) Our initial CSS ends up like this: html{ font-size: 100%; } body{ font-size: 1em; font-family: georgia, serif; text-align: center; color: #444; background: #e6e6e6; padding: 0; margin: 0; }
  • 1 ÷ 16 × 740 = 46.25em (1 ÷ parent font-size × required pixel value = em value)
  • While we're here, we might as well add some typographic goodness by selecting a basic leading and adding some vertical rhythm, with everything expressed in ems.
  • Set a 12px font size with 18px line height and margin for paragraphs
  • Dividing the desired line height (18px) by the element font size (12px) gives us the em value for line height. In this example, the line height is 1 and a half times the font size: 1.5em. Add line height and margin properties to the CSS: p{ font-size: 0.750em; line-height: 1.5em; margin: 1.5em; } Now the browser will say to itself, “Oh, line height and margin is set to 1.5em, so that should be 1.5 times the font size. What’s the font size, again? 12px? OK, cool, make line height and margin 1.5 times that, so 18px.”
  • To retain our vertical rhythm we want to set an 18px line height and margin. Easy: If the font size is 18px then 18px in ems is 1em! Let’s add the properties to the CSS (and make the font weight light:) h1{ font-size: 1.125em; line-height: 1em; margin: 1em; font-weight: 300; }
  • Jon, good article and very useful chartm but your text sizing method has one major drawback. If elements with font-sizes set in em’s are nested, i.e with lists, these elements inherit the font size. Therefore each child element will be 0.75em (or 75%) of the previous one: See an example here. (Would have posted the code put it was coming out really ugly!) I would recommend against using that method and setting the global font size in the body tag i.e. 'font-size:75%' for 12px. Then only setting different font-sizes where necessary.
  • Thanks Will, interesting point, but that is solved with a simple font-size:1em on the first child. Retaining the default ensures that even images are sized correctly in ems. IE (surprise) will compute incorrectly against a parent length equivalent to 12px. My preference born out by some minor but painful computed size errors in complex layouts is not to adjust the body, and only set font size where necessary for specific elements.
  •  
    A nice and simple explanation of using EMs to make elastic layouts
Jochen Burkhard

Official PSDs | Your PSD Image Community - 0 views

  •  
    Welcome to Official PSDs! Official PSDs is a user-driven, community-oriented site where graphic artists of all skill levels can come together to share resources. These range from stock images to PSD cutouts of Musicians, Athletes, and every category in between. Use them in your banners, forum signatures, mixtape covers and personal projects!
anonymous

Professional PSD to HTML Conversion and Other Questions to Sergiy Lavryk - 0 views

  •  
    "This is Part One of the interview with Sergiy Lavryk, Chief Project Manager at HTMLcut.com. Sergiy has shared his thoughts on an ideal HTML/CSS markup, professionalism and business responsibility, where additional fees could be hidden in PSD to HTML conversion services, and some other questions."
Herb Tucker

Linux Knowledge Base and Tutorial - 0 views

  • The UMASK value masks out the bits. The permissions that each position in the UMASK masks out are the same as the file permissions themselves. So, the left-most position masks out the owner permission, the middle position the group, and the right most masks out all others. If we have UMASK=007, the permissions for owner and group are not touched. However, for others, we have the value 7, which is obtained by setting all bits. Because this is a mask, all bits are unset. (The way I remember this is that the bits are inverted. Where it is set in the UMASK, it will be unset in the permissions, and vice versa.)
  • The problem many people have is that the umask command does not force permissions, but rather limits them
  • Therefore, setting the UMASK=007 does not force creation of executable programs, unless the program creating the file does itself).
  • ...6 more annotations...
  • - - regular file c - character device b - block device d - directory p - named pipe l - symbolic link
  • Lets look at a more complicated example. Assume we have UMASK=047. If our program creates a file with permissions 777, then our UMASK does nothing to the first digit, but masks out the 4 from the second digit, giving us 3. Then, because the last digit of the UMASK is 7, this masks out everything, so the permissions here are 0. As a result, the permissions for the file are 730. However, if the program creates the file with permissions 666, the resulting permissions are 620. The easy way to figure out the effects of the UMASK are to subtract the UMASK from the default permissions that the program sets. (Note that all negative values become 0.)
  • You can change it anytime using the umask command. The syntax is simply umask <new_umask>
  • Here the <new_umask> can either be the numeric value (e.g., 007) or symbolic. For example, to set the umask to 047 using the symbolic notation, we have umask u=,g=r,o=rwx
  • Where "new_owner" is the name of the user account we want to sent the owner of the file to, and "filename" is the file we want to change. In addition, you can use chown to change not only the owner, but the group of the file as well. This has the general syntax: chown new_owner.new:group filename
  • Another useful trick is the ability to set the owner and group to the same ones as another file. This is done with the --reference= option, which sets to the name of the file you are referencing. If you want to change just the group, you can use the chgrp command, which has the same basic syntax as chown. Not that both chgrp and chmod can also take the --reference= option. Further, all three of these commands take the -R option, which recursively changes the permissions, owner or group.
Jochen Burkhard

How to Send Text Messages with PHP | Nettuts+ - 0 views

  •  
    Text messaging has become extremely widespread throughout the world - to the point where an increasing number of web applications have integrated SMS to notify users of events, sales or coupons directly through their mobile devices. In this tutorial, we will cover the fundamentals of sending text messages with PHP.
awqi zar

Python Tips, Tricks, and Hacks - Siafoo - 2 views

  •  
    Want to write shorter, cleaner code? Have an unfortunate situation where you need to fit as much as you can in one expression? Prefer a quick dose of hacks to spending the rest of your life reading the docs? You've come to the right place.
awqi zar

Getting Started with Node.js on Windows | Matthew Podwysocki - 1 views

  •  
    Why Node?  Simply put, the purpose of node.js is "To provide a purely evented, non-blocking infrastructure to script highly concurrent programs."  This stands in contrast to many other concurrency models where threads and synchronization blocks are used, which can cause any number of issues.  Because of its lock free nature, and a bigger freedom from deadlocks, it allows for a more approachable way to concurrency.  The node.js site itself has a great amount of resources here to get started. In this series, I'm going to focus a little bit on getting started on node.js and how you can mix the Reactive Extensions for JavaScript into your node solutions.
qualitypoint Tech

Importance of Timesheet - 0 views

  •  
    Timesheet software not only help you become more efficient and optimize your pricing, it also helps you to make sure that you maintain your projects within possible project restraints. All expenses related to a project can be entered into time tracking software like timesheet as they are encountered. This way, you will always be able to see where your funds went and you will also be able to know the overall total for any project, at any time.
Luciano Ferrer

BigDump: Staggered MySQL Dump Importer - 0 views

  •  
    "Staggered import of large and very large MySQL Dumps (like phpMyAdmin 2.x dumps) even through the web servers with hard runtime limit and those in safe mode. The script executes only a small part of the huge dump and restarts itself. The next session starts where the last was stopped."
Luciano Ferrer

FREE Version of Flash Page Flipping - 5 views

  •  
    "Free Version of Flash Page Flip has no advanced functions but it has some nice features like resizing and navigation. You can make and publish your own publications (Online Catalog, Digital Brochure, Flipping Book, Interactive Flyer, Virtual Magazine, Flip Album etc.) by writing JPEG or SWF formatted pages names on XML file in the Free Version. You don't have to know Flash software to make your flipping book. You can use Free FPF in your commercial and non-commercial websites but please firstly look at the Terms of Use. FlashPageFlip.com text link where at the lower left corner is only for Free Version. There isn't in the other versions. Flash Page Flip Free Version works like Basic XML Version. We advise you FPF Basic XML Version if you can use Free FPF without any difficulty and you enjoy it or you haven't server which supports ASP. You can use it offline (CD, DVD, etc.) or all online servers like Free FPF."
jeezTech

PHP Certifications. Where, Why And, How To Get Them - 0 views

  •  
    Becoming a certified PHP developer, does not mean that you become a better developer but, it can surely give you some more chances to get the job. We tried to
Kashif Mehmood Mughal

55+ Striking Website Headers That You Must See | Smashing Buzz - 7 views

  •  
    In every website design one area have more significance which is Website Header where placed logo, top navigations and little descriptions in banner which will also part of success of any online business or online portfolio, it helps users to your content and also shows them your website structure. A website header will definitely attract more users and clients to click and browse your valuable contents.
Jochen Burkhard

45 Incredibly Useful Web Design Checklists and Questionnaires - Smashing Magazine - 0 views

  •  
    Designing websites can be a long and complicated process. Dealing with clients, designing prototypes, coding, programming, and testing - there's a lot to keep track of and a lot to make sure gets done. That's where checklists can make your life a whole lot easier. With lists of points covering multiple areas from content to usability to accessibility to standards, you're a lot less likely to overlook important parts of a site. Below are 45 checklists to make your design process easier and more organized. Consider using these checklists as a jumping off point for creating your own customized list, based on your own needs.
Kashif Mehmood Mughal

10 Free Excellent Website Designs with PSD Source | Dzinepress - 4 views

  •  
    This is our "Dzinepress Creative Media & Entrepreneurship" team effort in listed website designs where many techniques applied follow latest trend web 2.0 web layouts, we offering most wanted categories of designs: design house, blog design, WP Theme design, construction & development websites, makeovers zone, travelers and accessories based company designs, these of all listed design 100% free for you as Photoshop PSD source which can use as personal and commercial.
Vernon Fowler

QuirksMode - for all your browser quirks - 2 views

  •  
    QuirksMode.org is the prime source for browser compatibility information on the Internet. It is maintained by Peter-Paul Koch, mobile platform strategist in Amsterdam, the Netherlands. QuirksMode.org is the home of the Browser Compatibility Tables, where you'll find hype-free assessments of the major browsers' CSS and JavaScript capabilities, as well as their adherence to the W3C standards. It is also increasingly the home of ground-breaking mobile web research.
Luciano Ferrer

Tienda Overview | Dioscouri Design - 3 views

  •  
    "Tienda is a complete ecommerce extension for Joomla. Tienda is not a fork or bridge; it is a brand new extension designed and written from scratch on Joomla's MVC framework and can therefore be easily modified or themed using Joomla's templates. Tienda has been built with you, the site's administrator, in mind. While building Tienda, we focused on answering the question, "What would make it easier for us to operate our online stores?" Tienda is the result. Two versions will be available, Community and Enterprise. They have different feature sets, so please take a look at the comparison chart below. The Community version is free (as in beer) and available for download now. We also offer optional support subscriptions for the community version of Tienda, in case you need direct support from us. We encourage you to download the Community version and participate in its development. Please download it and then visit http://projects.dioscouri.com where you can participate by reporting bugs, making feature requests, submitting code, or even by simply following the development."
Richard Boss

Advantage of Social Networking Portal Development - 0 views

  •  
    Social Network defined as group or circle of friends, colleagues, relative and anonymous where you can share and exchange information as personal or public manner through internet, websites, cell phone and other approach.
inkoniq

Accessories developers will be coming up with better integrated apps. - 0 views

  •  
    HealthKit provides an insightful dashboard where one can monitor important health metrics on a daily basis, while also stepping back to examine your fitness trends over a longer period of time.
  •  
    HealthKit provides an insightful dashboard where one can monitor important health metrics on a daily basis, while also stepping back to examine your fitness trends over a longer period of time.
« First ‹ Previous 101 - 120 of 408 Next › Last »
Showing 20 items per page