-
rbrtsmith reacted to a post in a topic:
I want a job as a website designer but don't want them to figure out I'm using them as a stepping stone.
-
I want a job as a website designer but don't want them to figure out I'm using them as a stepping stone.
I might have read your post wrong, but if you are trying to get a job at a web design agency without any relevent qualifications or commercial experience you will need a good portfolio of sites/designs you have made and a great deal of enthusiasm to even get a telephone interview or a call back from a recruitment agency. Junior positions that offer the amount of training you are looking for are highly sought after these days, there are a lot of young (and not so young) graduates trying to get into this business, and people looking to make the move from freelancing to something more stable. Interviewers are usually pretty sharp - they will grill you about your experience and future plans. If you are planning to hot foot it back to your freelance business after costing them 1000s in training and staff time and before you add any value to their business they will pick up on this, unless you are a very good liar. Also, don't assume that any agency you work for will be cool about you taking freelance projects on. They certainly don't allow it where I work. Best of luck with your future. This is a tough business to get into, but very rewarding in my experience. Dorian
-
Are You Designing & Building More in WordPress?
Lots of interesting points coming up here! It's good to hear what people are using as alternatives to Wordpress, and some of the criticisms coming up seem very common to those of us who come to these things with more of a 'traditional' developer's perspective. I've come across a lot of sole traders doing WP sites who are mainly designers or marketing people, and they use themes and plugins for everything. I suspect some of these people are going to struggle in the future as site-generating tools like Squarespace continue to improve. One thing I've noticed is that clients and users really love the Wordpress admin, although I personally find it a bit annoying. Chris Coyier has been very vocal about not migrating CSS Tricks from Wordpress, but even though that site has a lot of content it's still basically a blog. Its a great resource, but I would argue that some bits of it are getting a bit unwieldy, and if he had to actively maintain all that content I'm not sure that would be realistic with WP. It interesting that he has talked recently about using Jekyll to do some new sites.
-
-
Are You Designing & Building More in WordPress?
Like you I was very sniffy about Wordpress for a long time and refused to use it. Recently I've begun to mellow and used it for a couple of sites and been pleasantly suprised. As rbrtsmith says, a lot of the performance and security issues with Wordpress are caused by the overuse of plugins and general lack of awareness (e.g. there are various processes which only make sense for blogs and can be easily turned off). Like all development tools, it takes a bit of experimentation to find the right workflow and decide which bits of it we're going to use and where its just simpler and more flexible to code things ourselves. My personal view is that Wordpress is not suitable for large projects or sites with a complex data model. Its a bit weak on the database side, even with Advanced Custom Fields.
- Centering a horizontal css menu
-
Centering a horizontal css menu
Add text-align: center to the menu class Change .menu li a to display: inline-block Get rid of the floats from .menu li a and .menu li a span That ought to do it. .menu{margin:0 auto; padding:0; height:30px; width:100%; display:block; text-align: center; background:url('topMenuImages.png') repeat-x;} .menu li{padding:0; margin:0; list-style:none; display:inline;} .menu li a{padding-left:15px; display:inline-block; color:rgb(5,5,5); text-decoration:none; font:12px Verdana, Arial, Helvetica, sans-serif; cursor:pointer; background:url('topMenuImages.png') 0px -30px no-repeat;} .menu li a span{line-height:30px; display:block; padding-right:15px; background:url('topMenuImages.png') 100% -30px no-repeat;} .menu li a:hover{background-position:0px -60px; color:rgb(255,255,255);} .menu li a:hover span{background-position:100% -60px;} Dorian
-
Difference between sass and compass?
Thanks Wynn, that's very helpful. What made things even more confusing was that I tried to update Susy at the same time, and hadn't realised there was a new version which needs SASS 3.3. That's what you get for relying on the same dev stack for too long!
-
-
Difference between sass and compass?
You also need to be a bit careful about installing SASS and Compass these days, since the current versions of each are not compatible with each other (as I discovered the other day when I updated my version of SASS and it completely broke Compass). If you just install Compass (i.e. gem install compass) it will pull in the version of SASS it needs to use. A number of high profile web developers, including Ben Frain (who wrote a book about it) and Chris Coyier have stopped using Compass as they are now compiling SASS with Grunt and using Grunt plugins like Autoprefixer to add css vendor prefixes during the build stage (which used to be a big selling point for Compass). Food for thought.
-
-
MSc. Is there any point?
I got through the first year of an MSc in Computer Science before I got a job as a graduate trainee. It was helpful for me because my degree was in a non-IT subject. If your undergraduate degree is is related to web development and you've already been freelancing for a while I'm not sure what the benefit of a masters would be, unless you want to teach or do academic research.
-
Need a good cost-effective UK-based host
Another vote for TSOhost. I've personally found their tech support guys to be very helpful. One great service that they offer is a free migration of your sites from other hosts. They don't just copy the files over but create databases and change all the usernames and passwords in your code etc. It was so easy to do that I ended up moving several sites over from other hosts, and now I can access everything from one account, which is great.
-
Version Control & Deployment
This is definitely the best way to do it. However, it does require you to have both SSH access to the server and GIT installed on there (unless I've misunderstood?). Neither of these are possible with the shared hosting account I currently have my sites on, hence my dependency on GIT FTP, which at least means I don't have to upload every changed file one at a time - that really would be a ballache.
-
Version Control & Deployment
I'm currently using GIT for version control on my local server, and GIT-FTP, an open source shell script which I run from the command line with the command: git ftp push after testing and commiting my chages locally. This very handy utility will identify only the files which have changed since the last commit, and FTP them to your remote server using login details stored in your git config file. Check out the project here: https://github.com/git-ftp/git-ftp If you have admin rights on your remote servers you can install GIT there and set up post-update hooks to keep it in sync with your local environment (lots of tutorials around on how to do this). You could also look at Beanstalk, which is a paid-for code hosting service a bit like GitHub. Beanstalk offers a range of deployment options and is very highly recommended by Chris (css-tricks) Coyier and many others: http://beanstalkapp.com/
-
-
Skills needed for Junior Web Dev roles in the UK?
Thanks rbrtsmith. That's really helpful. I'm planning to start applying for Dev jobs once the summer touring season is over. It takes me quite a long time to do a site because I'm not really a designer, and I'm quite fussy about wanting things to look good before I release them. I know I can code though, and I've got quite a few things on Codepen that I can use as examples.
-
Skills needed for Junior Web Dev roles in the UK?
This is a good topic. Anybody want to suggest how many sites you should have in your portfolio before starting to apply for jobs?
-
-
Treehouse
I've been very impressed with Treehouse. They've clearly put a great deal of work and research into their service, and it really is a very different learning experience from just ploughing through free material on blogs and developer sites. I've been on the Basic membership for a while and been very happy with it. However, there are a number of courses I want to do eventually that are only available for Pro members so I will have to upgrade at some point. I have to juggle web development with other work, music and childcare and don't have as much time for studying as I would like. Because Treehouse courses are so modular I can just dive in whenever I've got a free hour and pick up right where I left off. It's very efficient.
-
Urgent Advice For My Future
Congratulations on the work you have done so far to get yourself into this enviable position. You have 4 intriguing possible opportunities at stage in life when most people have no idea what they want to do (assuming that you are 18/19 at the moment). Huddersfield is a fun place to go to University - I did my undergraduate degree there (about 100 years ago...). In your position, I would at least consider asking the university to hold your place for a year while you take advantage of one of the jobs you have been offered. That way you won't lose out on anything, will gain a huge amount of useful experience, and can decide to leave Uni for a while if you like things where you are. At the grand old age of 40 I certainly don't regret going to University but I do regret that I went so young (right after A levels). If I had spent some time working first I would certainly have been more focused, had less growing up to do, and probably have chosen a different course. Friends who work in the University sector tell me that the older students almost always work harder and take more adantage of the opportunities available to them. Another factor to consider is the huge costs associated with going to university these days. I left with far less debt than the average student does now, and it still took me years to pay off. Studying part time while you work (which I have done in more recent studies) is a good way of balancing things and it seems that many peope are choosing to do this at the moment. Good luck with your decision - let us know what you do!