Open Side Menu Go to the Top

01-22-2012 , 11:21 AM
I agree with Zurvan. Every good consultant I've worked with has been hired through recommendations and the few that I've talked to about it have all said that when they get to the point of needing a new gig they just email their friends/past co-workers and get more than enough leads.

Good consultants aren't hired by their website.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD **
$25m Guaranteed WPM on CoinPoker
Join the action now
Daily Rewards • Splash Pots • CoinRaces
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD **
01-22-2012 , 01:41 PM
Quote:
Originally Posted by Zurvan
Is it really?

We have more projects from paying customers than we can complete as it is. How can we reasonably tell a customer they need to wait another 3 weeks while we take a developer from their project and have them do an internal project?

In a vacuum, I might not hire a web developer who doesn't have a good website. On the other hand, I wouldn't be hiring a web developer in a vacuum. You look at projects they've done, try and get recommendations from people you know, etc.
I think its about being professional tho.... certainly, word of mouth and a portfolio is more important that your own website, but remember that your company website is part of your image. You obviously shouldnt turn down work to improve your own site, but for a web design company, a small portfolio and contact/about us site shouldn't take you more than a couple of days.

Its the same reason that companies pay more to be in modern offices.... the fact that their office is brand new doesn't improve the quality of their work, but it does improve their image.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-22-2012 , 02:02 PM
My understanding is that the page looks fine - just ugly html/css code. Who cares?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-22-2012 , 11:53 PM
Anyone use lambda/linq? Every time I use it I learn more, and it's just awesomely powerful and useful, seriously seriously good stuff!
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-23-2012 , 12:42 AM
did you go for a server yet? interested in results
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-23-2012 , 01:18 AM
Not yet, but I think we're going to go for 1&1. We paid 1 year in advance for our current one which expires in June, so it seems like a bit of waste of money at the moment but seeing as our entire business relies on the website we're going to go for it. It's a big job and I got tons of stuff to do in the meantime, I'll probably get round to moving some time in Feb.

No idea what to do with the empty server lol.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-23-2012 , 09:09 AM
What's you guys opinions on infering data from a table structure?

For example, I have a table `Visits` that has a sequential `VisitID` and `Date`.

Due to design reasons I can't query and pull out all the VisitIds >= certain date, due to the way I handle the data later.

However what I can do is find the first record that falls into the date range. When I have that, I can do queries on foreign key tables such as:

`where VisitID > FirstRecID`

And theoretically every record above that ID should also be above it in date.

The type of data this table holds is the static log type, once records are created it's highly unlikely (impossible) that the records will be manipulated in any way.

So is it OK to approach a problem like this? It has the benefit of also making my heavy queries a ton faster. I've just never done it this way before because I've never needed to, but I need to now and am just wondering is this sort of practise more common than I think? I think it would be a bit difficult to manage potentially and maintain as you are inferring logic from the structure of the data rather than the data itself which abstracts everything a bit more.

Last edited by Gullanian; 01-23-2012 at 09:14 AM.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-23-2012 , 09:13 AM
I use linq to xml a bit, and love it. compared to C# old way of dealing with xml documents its fantastic.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-23-2012 , 11:32 AM
+1 for Linq. I think I'd love it even if SQL queries weren't one of the first things I was exposed to in a professional capacity.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-23-2012 , 12:15 PM
Quote:
Originally Posted by Gullanian
What's you guys opinions on infering data from a table structure?

Due to design reasons I can't query and pull out all the VisitIds >= certain date, due to the way I handle the data later.
given this, i infer that this table's structure is poor.

Quote:
However what I can do is find the first record that falls into the date range. When I have that, I can do queries on foreign key tables such as:

`where VisitID > FirstRecID`
i don't understand how doing some comparison on foreign keys could possibly be easier/better/faster than using native keys. can't you just, like, add an index on the Date field and call it a day?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-23-2012 , 01:33 PM
Is anyone using CodeMirror, or have a better suggestion for mixed html/css/js "It acts as a textarea but it's not" syntax highlighting without using a full blown editor?

I've come to the conclusion that a legit wysiwyg editor that isn't garbage does not exist so the next best thing is an editor with syntax highlighting. I'm just looking for something to give to a small staff of non-coders so they can have an easier time making posts. I did plan on having shortcut buttons for common things (alignment, making links, bold, etc.) but other than that they really don't need much -- certainly not trying to recreate tinyMCE or anything.

Last edited by Shoe Lace; 01-23-2012 at 01:39 PM.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-23-2012 , 07:20 PM
Quote:
Originally Posted by Shoe Lace
Is anyone using CodeMirror, or have a better suggestion for mixed html/css/js "It acts as a textarea but it's not" syntax highlighting without using a full blown editor?

I've come to the conclusion that a legit wysiwyg editor that isn't garbage does not exist so the next best thing is an editor with syntax highlighting. I'm just looking for something to give to a small staff of non-coders so they can have an easier time making posts. I did plan on having shortcut buttons for common things (alignment, making links, bold, etc.) but other than that they really don't need much -- certainly not trying to recreate tinyMCE or anything.
You can try ACE. I've had to hack it a bit to do what I want, but overall it's worked out alright. Better than code mirror at least.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-23-2012 , 09:04 PM
edit plus perhaps?
I use it for when I copy large amounts of c++ because I need to change a few items on like every third line - its a generic form routine to read from database but the data read is consistently handled different

it does coloring which is nice and has some buttons for common html stuff
bold italics font etc along with a couple that look helpful for table design etc

Also why not have them use a WYSIWG but manually type the code?

Note: I cant for the life of me recall any CSS despite taking 2 classes on it, so I cant really comment on the css option but it does have the templates for that along with Javascript
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-24-2012 , 11:03 AM
Ace is a little too big I think, but it looks solid.

Jeff, it has to be web based. It's for people to write posts.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-24-2012 , 03:05 PM
Anyone know of any automated minutes apps? I'm thinking some kind of journal thing with the capability of automatically keeping track of action items and their status. Something to make it easy to keep track of what's going on in meetings and be able to track what needs to be done. I'd like something easy enough that the other mouth breathers I work with could use...
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-24-2012 , 04:42 PM
We use OneNote and it is so-so. Works like other ms products which seems to help the mouth breathers.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-24-2012 , 04:52 PM
Is there anything like javadoc for .Net other than sandcastle?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-24-2012 , 05:00 PM
Doxygen supports C#.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-24-2012 , 05:04 PM
Quote:
Originally Posted by TheIrishThug
Doxygen supports C#.
Will have a look. Thanks
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-24-2012 , 07:23 PM
Quote:
Originally Posted by tyler_cracker
We use OneNote and it is so-so. Works like other ms products which seems to help the mouth breathers.
We're a Mac shop, thank god, I couldn't all this crap lugging around some POS windows lappy...
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-24-2012 , 11:51 PM
does onenote not come with office on mac? i'll be damned, it sure doesn't. lol wtf.

we sometimes use the wiki for this (we have TWiki but w/e) but it involves manual wrangling of action items and may not be great for mouthbreathers. but maybe they've already learned how to deal with your internal wiki?

edit: also vmware fusion on my macbook is quite sufficient for the windows-specific stuff i need to do. i agree with lol @ windows laptops.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-25-2012 , 01:13 AM
Quote:
Originally Posted by Gullanian
Not yet, but I think we're going to go for 1&1.
Did you check out Hetzner? (Unless it needs to be UK-based)

Best price performance ratio I could find, we have been there for a while and I'm very happy with them.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-25-2012 , 01:17 AM
Quote:
Originally Posted by Gullanian
Anyone use lambda/linq? Every time I use it I learn more, and it's just awesomely powerful and useful, seriously seriously good stuff!
Yep it's awesome, I love how it get's you one step closer to sort of the concept of natural language. For instance a simple transformation of a collection is much less bloated and very readable...
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-25-2012 , 02:10 AM
Quote:
Originally Posted by tyler_cracker
does onenote not come with office on mac? i'll be damned, it sure doesn't. lol wtf.

we sometimes use the wiki for this (we have TWiki but w/e) but it involves manual wrangling of action items and may not be great for mouthbreathers. but maybe they've already learned how to deal with your internal wiki?

edit: also vmware fusion on my macbook is quite sufficient for the windows-specific stuff i need to do. i agree with lol @ windows laptops.
OneNote is pretty good on Windows but the closest you get is a notebook template in Office for Mac. Good for notes but not the same. This isn't really a problem until I get back to the States and am with the home office again. Our support team is good at starting stuff but then it just drifts off into no status land and never gets done. I figure if you keep getting shamed about it in meetings you'll do it. Automating the whole action list thing would reduce the likelihood this process becomes another thing we start and never follow through on.

We are hiring if there are any java wizards out there that want to come to Boulder, despite my talking it up...
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
01-25-2012 , 06:13 AM
What's the best place to find someone who I can hire someone to coach me in programming. I'm just looking for someone I can hire a couple hours a week and to walk them through some problems that I had and to get feedback on the way that I have done things. Is this something for elance, or are there better optoins?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD **
$25m Guaranteed WPM on CoinPoker
Join the action now
Daily Rewards • Splash Pots • CoinRaces
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD **

      
m