
99 Icon Sets To Use In Commercial Design Projects | Creative Nerds - StumbleUpon - Pentadactyl Today’s blog post we have decided to do a massive collection of 99 icon sets which can each be used within commercial design projects. This compilation was put together simply because of the lack of free icon sets which are available to be used in commercial design projects, what’s the point creating an icon set if its not free to use ? A great blog post of high quality icon sets which is a greate reference to bookmark for future reference. 1. This high quality, hand made, icon pack is full with 9 Extreme Grunge Social Media Garments. 2. 50 Free and Exclusive Twitter Icons The icons are provided in both raster and vector formats: The transparent PNG versions are 256×256, and we have also included Illustrator files so that you can resize the icons as needed. 3. This icon sets download package contains the six icons, and include a choice of eight different sizes: 12px, 16px, 24px, 32px, 64px, 128px, 256px and 512px. 4. 5. 6. 7. 8. 9. 10. 21 folders icons . 11. 12. 14. 15. 16. 17. 18. 19.
Howto: Linux Add User To Group How can I add a user to a group under Linux operating system using command line options? How to add an existing user into a group in Linux using command line options? You can use the useradd or usermod commands to add a user to a group. The useradd command creates a new user or update default new user information. The usermod command modifies a user account and it is useful to add user to existing groups. There are two types of groups under Linux operating systems: Primary user group.Secondary or supplementary user group. All user account related information are stored in the following files: /etc/passwd – Contains one line for each user account. useradd Example – Add a new user to secondary group You need to the useradd command to add new users to existing group (or create a new group and then add user). developers:x:1124: uid=1122(vivek) gid=1125(vivek) groups=1125(vivek),1124(developers) Please note that capital G (-G) option add user to a list of supplementary groups. See also
Qcodo Development Framework - Home Art and Design by Matthew James Taylor Color Theory, Color Wheel and Combining Colors, Colors on the Web - StumbleUpon - Pentadactyl CSS input boxes and submit buttons | CSS button The days of bland web pages with ugly text and layout are long gone, but the parts that make up a form have largely remained unchanged. Here, I am attempting to describe various methods that may be used to enhance the look of your input fields and form buttons. Basic Form A very simple form might look like this: Code <form action=""> Name: <input type="text" /> Password: <input type="password" /> <input type="submit" value="Submit" /> </form> Enhanced Border We can improve on this by firstly changing the border of the form: <form action=""> Name: <input type="text" class="input" /> Password: <input type="password" class="input" /> <input type="submit" value="Submit" class="input" /> </form> Enhanced Background Now we work on the background: <form action=""> Name: <input type="text" class="input" /> Password: <input type="password" class="input" /> <input type="submit" value="Submit" class="button" /> </form> CSS Labels and naming your elements Positioning Hover Effect Using images for buttons
45+ Best free PHP classes and libraries for Faster Development PHP: Hypertext Preprocessor (the name is a recursive acronym) is a widely used, general-purpose scripting language that was originally designed for web development to produce dynamic web pages. And, as a feature-rich language, it is possible to accomplish many tasks by default from handling e-mails to images, PDFs to database connections, etc. You may be interested in the following modern trends related articles as well. What is PHP? PHP stands for PHP: Hypertext PreprocessorPHP is a server-side scripting language, like ASPPHP scripts are executed on the serverPHP supports many databases (MySQL, Informix, Oracle, Sybase, Solid, PostgreSQL, Generic ODBC, etc.)PHP is an open source softwarePHP is free to download and use However, there are Best free PHP classes and libraries which helps you get more like: good looking chartsform validationparsing feedsbetter image or database handlingand more. Content BackPress PHP User Class phpSEO PHP Typography Tag Cloud Handling Documents PHPExcel PHPPowerpoint
webexpedition18 | Web and Graphic Design Inspiration and Photoshop Tutorials Stripe Generator - ajax diagonal stripes background designer - StumbleUpon - Pentadactyl Chapter 4. Branch Wizardry Chapter 4. Branch Wizardry Instant branching and merging are the most lethal of Git’s killer features. Problem: External factors inevitably necessitate context switching. Interrupting your train of thought can be detrimental to your productivity, and the more cumbersome it is to switch contexts, the greater the loss. But cloning still entails copying the whole working directory as well as the entire history up to the given point. Solution: Git has a better tool for these situations that is much faster and more space-efficient than cloning: git branch. With this magic word, the files in your directory suddenly shapeshift from one version to another. Ever played one of those games where at the push of a button (“the boss key”), the screen would instantly display a spreadsheet or something? In some directory: $ echo "I'm smarter than my boss" > myfile.txt $ git init $ git add . $ git commit -m "Initial commit" It looks like we’ve just overwritten our file and committed it. and hey presto!
How to Upload files with PHP » Martin Gardner.co.uk In this Tutorial I’m going to outline the process of how you can use a simple PHP script to upload files directly to your server, re-naming them and storing them in a chosen location, all from a very simple form which you can style and place anywhere on your webpages… things to keep in mind for this script to function properly you will require the following: Web hostingPHP 5 or above installedWrite access to a directory on your web serversome PHP knowledge ( to allow for your own customization)basic CSS & Colour values to style your form Before we get to any code you’re going to need a HTML form, in order to pass information to the script, like the name of the file, size, file extension etc… but for this script we will only have to deal with the name of the file. below is an html form with some basic CSS styles applied purely for aesthetic reasons of my own. The PHP The CSS The First part of the code initialises the first two variables and assigns them with no value.
Original Hover Effects with CSS3 | Codrops - StumbleUpon - Pentadactyl The power of CSS3 is enormous and in this tutorial we will see how to exploit it in a very creative way. We are going to create some thumbnail hover effects with CSS3 transitions. On hover over a thumbnail, we will reveal some description of the thumbnail, using a different style in each example. View demo Download source Please note that this will only work properly in modern browsers that support the CSS3 properties in use. The Markup The structure of markup is very simple and intuitive. Inside the view insert an element with the class mask that will be responsible for our effects driven by CSS3 and inside it we will put a title, description and a link to the full image. <div class="view"><img src="image.gif" /><div class="mask"><h2>Title</h2><p>Your Text</p><a href="#" class="info">Read More</a></div></div> The CSS After creating our markup we’re going to set our style. And now we’ll look at the ten effects. Example 1 And now comes the heart of our effect. Example 2 Example 3 Example 4
Git-SVN Low-Risk Practice Assumptions You are supposed to work on a svn branch topic.You hate svn.You want to follow changes of svn trunk.You hate the merging in svn.You already checked out the svn repository with git-svn-clone with stdlayout option. Wrong way First you make a local git branch topic that'll sync with svn branch topic. $ git checkout -b topic topic Then you work on the branch, including git-commit a lot. You sometimes have to see the changes in trunk. $ git checkout master $ git svn rebase And merges the changes into your topic branch. $ git checkout topic $ git merge --no-ff master You know that merge without --no-ff option breaks git-svn system so you did --no-ff. Finally you finished all your work on the topic branch and tried to merge the changes into trunk. $ git checkout master $ git merge --no-ff topic That causes a lot of conflicts that you have to resolve manually. Right way The "Wrong way" example had two failures. ambiguous name of topicmerge from trunk to topic $ git checkout -b tpc topic Next.
'MySQLi' for Beginners Introduction Nearly every site that you visit nowadays has some sort of database storage in place, many sites opt to use MySQL databases when using PHP. However, many people haven't yet taken the step to interacting with databases properly in PHP. The Wrong Way If you're using a function called mysql_connect() or mysql_query() you really need to take note and change what you're doing. Any of the functions that are prefixed with mysql_ are now being discouraged by PHP themselves as visible on this doc page, instead you should look to use one of the following: Each has its advantages, PDO for example will work with various different database systems, where as MySQLi will only work with MySQL databases. PHP MySQLi Here we'll mostly be looking at the object oriented implementation, however, there is no reason you can't use this in a procedural format, but again no reason you shouldn't use the OO implementation. Connecting Obviously, the database name is optional and can be omitted. Querying <? <?