Thursday, January 8. 2009
YuuGuu on Linux x86_64 (64bit) CPUs Posted by Jeremy Coates
in Fedora, Linux at
17:36
Comments (0) Trackbacks (0) Defined tags for this entry: 64 bit, fedora, java, linux, media, perspective, remote desktop, screen sharing, solution, wine, x86_64, yuuguu
YuuGuu on Linux x86_64 (64bit) CPUs
Here at Solution Perspective we use YuuGuu quite a lot, especially with some of our clients, for remote screen sharing and to check out that we're all talking about the same things or to take control of their screens to sort an issue out. We also happen to use Linux (Fedora in particular) a lot, and several of our machines are 64bit (x86_64 processors). For quite some time we've had to use, the fairly brilliant Linux - Windows layer called Wine to get YuuGuu to run on our Linux boxes.Well no more! YuuGuu have released a native Linux version, available for Ubuntu, Fedora and Suse flavours (which can probably be coaxed to work on other distributions as well). This works fine for i386 (32bit) CPUs but not on our machines with the 64bit ones. After a bit of digging and playing about, we've found they've also got native 64bit versions in testing and that works well, so there's no more need for us to use Wine in order to run this very useful screen sharing application - life's a little less complicated now. Wednesday, December 3. 2008
PHPNW08: Post PHP conference blast Posted by Jeremy Coates
in General, PHP at
20:14
Comments (0) Trackbacks (0) PHPNW08: Post PHP conference blast
On Saturday 22nd November I was in Manchester at Manchester Central (formerly GMex) for the first UK PHP conference outside of London: PHPNW08. The conference started as an idea back in February this year and went from concept to reality over the summer months as the PHP North West (PHPNW) user group was formed and started it's first meeting in July. ![]() I managed to rope everyone in, Priscilla, Emma, Mat & Phil along with Bridget on the day and David keeping the dogs happy while we were in conference mode, thanks to all for playing their parts. All in all as a company we're very proud of what we've managed to pull off, all the hard work and planning has paid off, almost universally the feedback has been excellent with many people saying, to us directly, it was the best organised community conference they'd been to for years. Sitting in the first session, K.I.S.S from Derick Rethans, I was aware of a very surreal feeling - the conference was actually happening, after months of planning, a little heartache and juggling some of the risky elements, it was actually happening right here, right now! One of the main drivers behind PHPNW08 was to encourage junior developers to take an active path to their continuing professional development, with speakers sessions covering topics like MySQL EXPLAIN Explained and Regular Expression Basics being warmly received by many I think we achieved that objective! My personal favourite session was Zoe Slattery's 'Index and Search, options for PHP programmers' which was a really interesting comparison of the Lucene search implementations in PHP and Java - not what the title suggested but a well delivered, complex subject delivered in an easy confident manner. It was also good to have some fun at the socials on the Friday and Saturday night, even if I didn't quite manage to find any time to play on Mario Kart - with the open bar and food on the Saturday event it seemed to be a great way to round off the event. While we still have to deal with some of the wrap up elements of the conference, videos, slides, handing out the last remaining prizes - the general aftermath of a very satisfying weekend, we're already looking forward to early planning for next years' event, PHPNW09 everyone?! Thursday, October 23. 2008
Solution Perspective Media Supports ... Posted by Jeremy Coates
in General, PHP at
23:32
Comments (0) Trackbacks (0) Solution Perspective Media Supports PHP North West Conference 2008Solution Perspective Media is proud to announce that it is supporting the first annual PHP Conference in the North West, phpnw08 on 22nd November 2008. phpnw08 is a one day conference for developers, designers, managers and anyone else with an interest in the PHP programming language. The event offers an opportunity for developers and those involved with PHP across the North-of-England to come together to discuss developments, innovations, techniques and the challenges faced in PHP and internet development. The conference will feature high profile speakers within the PHP community, workshops and networking opportunities. Some of the key areas of focus this year are: Enterprise PHP, What’s new in PHP 5.3 and innovative solutions for a commercial world. In addition to organising the event, Solution Perspective Media has worked in partnership with a number of sponsors including iBuildings, nti Leeds, Allegis Group, Pale Purple and Plusnet to provide an exciting program of speakers, networking and social activities. The conference takes place on 22nd November 2008 at Manchester Central (formerly GMex) – http://www.manchestercentral.co.uk Those involved in PHP are invited to connect and network with other PHP professionals on the following groups: Google Groups - http://groups.google.com/group/phpnw For more information or to attend the conference visit http://conference.phpnw.org.uk/phpnw08/ Continue reading "Solution Perspective Media Supports PHP North West Conference 2008"Saturday, September 27. 2008
Catch up, social networking, new ... Posted by Jeremy Coates
in General, PHP, XTemplate at
20:37
Comments (0) Trackbacks (0) Catch up, social networking, new staff ...
It's been ages since I've blogged, partly since I've continued to keep up with twitter.com, which is a little like blogging but in text message size bites - some call it your life between blog posts. We've included a feed on the right hand side of this site or follow me or Priscilla directly. Along with twitter, we' also got into Facebook over the summer, it's a little addictive and generally more fun than watching the telly! However, if some people are to be believed it could turn us all into narcissists! We've also another member of staff to welcome aboard, Mathew Griffin who joined us in July, to help grow our PHP programming team. Mat's learning how we do things round here by diving in at the deep end - it's a good job he likes it that way as we've been continuing to work non-stop on a major invoicing and payroll system. So Mat is now brushing up on ZendFramework, YUI, ADOdb and XTemplate - so far so good, I just have to remember it's a tall order to get that lot under your belt Anyway that's the catch up, well almost... Friday, May 16. 2008
777 file permissions not a solution ... Posted by Jeremy Coates
in General at
17:19
Comments (0) Trackbacks (0) 777 file permissions not a solution for those without knowledge
Got a call today from one of our customers suppliers, a marketing company, who were trying to upload some blog software and wondered why their account quota had maxed out. The implication was that we'd set the quota too low (already at ~750Mb). After some investigation, it turns out that the blog software in question had several run-away apache processes - chewing CPU cycles like they were going out of fashion and filling up the apache logs faster than quota could be allocated (e.g. read a Gb every couple of seconds!) as the particular script looped and couldn't read from the file it wanted. The cause of this was to do with file permissions, in particular one file was empty and a bug in the blog code meant that it was in an infinite loop, several times over as the user kept reloading the screen! The marketing company bod was kind enough to point out that they had it working on other servers quite happily, even initially having the cheek to make out like it was software they had written, when in actual fact it was an open source (GPL licensed) piece of software. So after working this out and telling them they needed to read their documentation and fix the problem, they instead set all the files and folders to world writable (e.g. 777 file permissions) in their FTP client. At this point I decided that it was simpler to fix the issue myself whilst giving them a lecture on how 777 permissions is never a blanket solution to anything. I got to the point of telling them I'd just remove the software if they were going to leave it like that which they didn't seem too happy about. So after setting all the permissions back to what they should have been, 644 for files and 755 for directories, I then set the two or three folders that needed different permissions to be owned by the web server process. Hey presto! It all worked as expected. The marketing company bod was happy the situation was solved, however not even a word of thanks. Here's guessing they'll just simply 777 everything again next time they come across any snags rather than bothering to ask for some simple assistance! Oh well, some folk are dangerous when it comes to computers! If only their clients knew how incompetent they are, the world would be a better place as they'd avoid them! Rant over, for today at least Thursday, May 8. 2008
Traffic alerts via Twitter mashup ... Posted by Jeremy Coates
in Programming at
00:15
Comments (0) Trackbacks (0) Traffic alerts via Twitter mashup with optional SMS
As a recent fan of twitter (you can follow me if you like) as a short (read text message length) form of blogging, I was quite interested to spot a blog post from Andy Davies about using twitter to mashup with traffic data feeds. I used his technique, though in a simpler format e.g. I didn't bother with the Yahoo! Pipes element, to create a traffic alerts feed. As we're in the Northwest of England, I wanted to use a traffic feed relevant to this locale. To this end, I used the Northwest UK RSS feed from the Highways Agency traffic feed list. Sweet So let's cut to the chase, how do I do this? In a nutshell: Create a new twitter account; link that to a twitterfeed.com account (a service that turns RSS feeds into twitter posts) and an RSS feed; then follow in your normal twitter account the new twitter account just created and, if you want text alerts of the data (e.g. when you're actually travelling round the area), turn on device updates for the following of the new account (assuming you've already registered a mobile device for this purpose in your main account). Then you get new tweets and or text alerts each time there's a new RSS entry in the source feed. If you want to subscribe to the results for that feed simply skip all the setup above and just follow NWUKTrafficAlrt in your twitter account. Tuesday, April 22. 2008We're hiring
In case you've not noticed on our main site, we're hiring - a PHP web developer (OOP).
Friday, February 29. 2008
Conference experience Posted by Jeremy Coates
in PHP at
14:27
Comments (0) Trackbacks (0) Defined tags for this entry: conference, derick rethans, ivo jansch, marcus bointon, php, phplondon08, rob allen, verp, zend framework
Conference experience
I'm currently sat in the PHP London 08 conference and just thought I'd post a note. I'm currently listening to Rob Allen enthuse about the Zend Framework in the 'my framework is better than yours' session.The three frameworks under discussion where Code Igniter, Symphony and Zend Framework. Having listened to all the debates, I'm still glad we've settled on the Zend Framework for our day to day work, just seems more flexible for existing and new projects at the same time - the others seem only to have relevance when starting from scratch.The morning sessions in the main track seemed a little basic over all, however you have to pitch at a wide audience level so that's to be expected. Fortunately, Marcus Bointon after lunch (which was really quite nice for a conference) talked about mail() and all the things that go with that, handling bounces, VERP and a few other niceties. It was unfortunate that he ran out of time towards the end as it turned out to be informative and quite in depth without getting to the point of boredom - I've found his slides on-line which should help finish the learning. |
Calendar
QuicksearchSyndicate This BlogCategoriesWikipedia FinderTop Exitswww.phpxtemplate.org (4)
www.icplus.com.tw (2) www.ooomacros.org (2) xl2qif.chez-alice.fr (2) forum1.netgear.com (1) wiki.archlinux.org (1) www.cedarfarm.net (1) www.fedoraproject.org (1) www.solutionperspective.co.uk (1) Blog Administration |
|||||||||||||||||||||||||||||||||||||||||||||||||










