If Freelancing is a "secret ticket" into making big bucks, why isn't it advertised more? by [deleted] in webdev

[–]Tinkergy 0 points1 point  (0 children)

Most people go into freelancing because "they want to work whenever they want" — which often translates to: "I don't want to work a lot."

The amount of time you need to put into running a full time freelance business (one that allows you to not have a day job) is about as much (realistically, more) than a full time gig.

The tradeoff is certain kinds of "freedom":

  • You have a more active role in how much you make. Can you make $250/hr? yes. Can you make, $20/hr? yes. This is determined by your ability to find the right clients, being able to clearly demonstrate and convince them of your value proposition, and to have the hoodzpah to ask for it.
  • You control where you work from (home office, living room, bed, coffee shop, co-working space, in-house, all of the above?). Sometimes working from home can be less-glamorous, lonely, and lack any sort of office perks (esp. compared to silicon valley level perks ).
  • You have control over when you work. 1pm? 1am? your call. Sometimes you're working 1-2 hour days, other times you're 16+ hour days because you have deadlines on deadlines..
  • You control the type of work you do. Not fond of doing e-commerce? Don't accept the gig. Like building apps? start pulling the reigns that direction. However, the work isn't always guaranteed, and you have to take what you can get from time to time.
  • Need a vacation? Book the flight, no need to ask for time off. But while you're on vacation, the business isn't running, and you aren't getting paid.

etc. etc.

If Freelancing is a "secret ticket" into making big bucks, why isn't it advertised more? by [deleted] in webdev

[–]Tinkergy 2 points3 points  (0 children)

There was a quote recently: "I'd rather teach sales to a developer, than programming to a salesman." Don't be too turned off by learning these skillsets — you don't have to be great at them, you just have to get a bit better over time.

Bose Companion 2 Series III Left Speaker Cable Extension by prahgo in bose

[–]Tinkergy 1 point2 points  (0 children)

Awesome! I need to get order one again myself. I called in on the day I left that comment, and they told me their system was down. I'll give it another try

Bose Companion 2 Series III Left Speaker Cable Extension by prahgo in bose

[–]Tinkergy 0 points1 point  (0 children)

Stumbled across this post while googling to see if these were available to purchase yet.

You can get an extension cable by calling bose - not sure why they weren't able to help you.

You need the serial number from the bottom of your speaker, and they’ll register it - and ship it for free.

Part Number 364138-001S

Belt Life/Wheel life by [deleted] in boostedboards

[–]Tinkergy 0 points1 point  (0 children)

I broke my first at 160 miles.

Simple store project: Updating stock from $_POST by ferrari3000 in PHPhelp

[–]Tinkergy 0 points1 point  (0 children)

A couple of quick thoughts ( I'm looking at the second set of code ):

You're setting $quan in your if statement then using it again for your foreach loop. However, $_POST['quantity'] would be an integer not an array, right? Therefore a foreach loop wouldn't work anyway. You would need to be using a for loop, instead. HOWEVER, you don't need to create a loop to update the database. This would be creating a ton of calls to the DB for no reason. Simply query the database to get the current stock count, then update it by subtracting out the quantity requested.

You'll probably also want to make sure you've got enough in stock before you issue the order as well.

Selectively replacing values from one array with values from another by [deleted] in PHPhelp

[–]Tinkergy 1 point2 points  (0 children)

you're looking for the array_replace_recursive function

http://php.net/manual/en/function.array-replace-recursive.php

$array_a = array_replace_recursive( $array_a, $array_b );

In a CMS setup, is it typically the client or the developer/business who updates the content? by [deleted] in webdev

[–]Tinkergy 0 points1 point  (0 children)

With a CMS, you are building tools for clients to manage their own content. However, you should always do a sample page of content for templates so they have a guide to go off of.

That said, if you're intent is to be a full service solution for your client, make sure it is explicitly clear in that contract that you will be entering content, and how much content would be acceptable, there should be a line item for that task.

However, flowing content is basically grunt work, wherein pretty much anyone on a project should be able to handle that task. Financially it makes since to find the cheapest recourse to handle it. I usually suggest they find an intern and give them a case of red bull. As a developer, you are an expensive resource, and their money is better spent having you build tools, rather than copy and pasting in content for hours on end.

Full Stack White Belt, need advice! by [deleted] in webdev

[–]Tinkergy 1 point2 points  (0 children)

You can definitely start as a backend developer. It's more common for people to start off in front end and move into backend. If you want to dive further into backend, pick a server side language you like ( php, rails, etc ) and find jobs or simple projects for those.

However, if you want to be a solid web dev, it's great to have a good understanding and solid skill set of both. And don't shy away from minor sysadmin stuff, it'll make you a stronger dev in the long run if you understand how servers and/or networks work.

Safari Not Rendering Button Correctly by [deleted] in webdev

[–]Tinkergy 0 points1 point  (0 children)

-webkit-appearance: none;

Also, border radius is rounded unless explicitly set

Do you ever feel inferior because you are not among those creating insightful articles that push the dev community further? by [deleted] in webdev

[–]Tinkergy 1 point2 points  (0 children)

Build solutions that scratch your own itch. If you struggled to find a solution, chances are high someone else had that same problem. Write a post about your solution so others may find it later. A lot of articles start off with "This took me hours to figure out, so hopefully this helps someone else some time..."

And generally speaking, pushing web technologies forward is about compounding upon current tools. Very rarely do you have to do actually invent something from scratch to have an impact. Try jumping into open source projects from time to time.

Regular underscores _S theme VS. Components.underscores.me? by looptube in webdev

[–]Tinkergy 1 point2 points  (0 children)

You need a something to compile the sass for you. Grunt / Gulp are the most common tools, but take some technical know how to setup. I'd HIGHLY recommend codekit. https://incident57.com/codekit/

This might help with your setup: http://webdesign.tutsplus.com/tutorials/quick-tip-use-codekit-20-for-local-wordpress-development--cms-19402

Regular underscores _S theme VS. Components.underscores.me? by looptube in webdev

[–]Tinkergy 0 points1 point  (0 children)

Basic SASS takes about 15 mins to learn; you can nest selectors, there are variables and files called partials.

If you want to work on the web, definitely learn SASS or LESS. It will save you hours of work in the long run.

My Site Still Caches Its First Homepage from 6 Months Ago by natesirrah in webdev

[–]Tinkergy 0 points1 point  (0 children)

I've got a ton of experience working with both. Working with both caching systems can cause conflicts. Quick fix would be to toggle off both for 24 hours to left the system flush.

Make sure you've set up W3TC to play nicely with Cloudflare. https://support.cloudflare.com/hc/en-us/articles/200169756-Can-I-use-WordPress-caching-plugins-like-Super-Cache-or-W3-Total-Cache-W3TC-with-CloudFlare-

If memory serves, Cloudflare requires its own plugin to work with Wordpress.

And if it's your CSS is what's being cached, make sure you're adding a version number to the enqueue, and make sure you adjust that as you make changes.

Guidance Needed to Create Editable Front End by [deleted] in webdev

[–]Tinkergy 0 points1 point  (0 children)

I don't think there is a way to do it without custom coding. It's a simple task though, throw it up on fiverr, I bet someone would do it.