- Joined
- May 21, 2011
- Messages
- 3,132
I'm eyeing the bk24, just waiting for a good deal on shipping to pop up. Anyone caring to share their experiences with kabar d2?
The BladeForums.com 2024 Traditional Knife is ready to order! See this thread for details:
https://www.bladeforums.com/threads/bladeforums-2024-traditional-knife.2003187/
Price is $300 $250 ea (shipped within CONUS). If you live outside the US, I will contact you after your order for extra shipping charges.
Order here: https://www.bladeforums.com/help/2024-traditional/ - Order as many as you like, we have plenty.
mornin gents.
Well, i got engaged yesterday!
I remember you telling me you do some coding here and there for work. Did you ever use jQuery/javascript or did you find that it wasn't necessary very often for the average customer?
Yeah I hear ya. Woke up this morning and its snowin pretty good here. Already a inch or so on the ground.
Here too probably four inches and still going
mornin gents.
Well, i got engaged yesterday!
Thanks for the response! My dad is somewhere along your line, knows several languages and knows how to do them well and hates walking into a job where the last guy left a bunch of junk code he has to fix. He knows javascipt, jquery, sql, html, css, c++, java, etc etc. He's been professionally coding for years and is trying to help me find my niche so I was wondering how many average sites made for customers require use of jQuery type coding. He only does web development as a side gig it's not where he made his bones but he's pretty decent at it. Here's his site:
sberringer.net
Thanks for the response! My dad is somewhere along your line, knows several languages and knows how to do them well and hates walking into a job where the last guy left a bunch of junk code he has to fix. He knows javascipt, jquery, sql, html, css, c++, java, etc etc. He's been professionally coding for years and is trying to help me find my niche so I was wondering how many average sites made for customers require use of jQuery type coding. He only does web development as a side gig it's not where he made his bones but he's pretty decent at it. Here's his site:
I'm eyeing the bk24, just waiting for a good deal on shipping to pop up. Anyone caring to share their experiences with kabar d2?
I only use javascript for dropdown menus on my top toolbar. have never heard of jQuery before this.
we ended up with 4-6" of really wet snow that is already melting. Yesterday it snowed for a few hours, then freezing rain for an hour -- that melted all the snow -- then it started snowing again...
congrats! Do your best to keep the festivities small and/or inexpensive -- starting out a new life waist deep in debt is not a recipe for success.
I hate cleaning up after someone else has gone in and done some editing with a Windows product.
well, the technical answer is : you don't need javascript or jQuery on your site.ever
the original web and html markup was about content, not form. that is to say, you don't need animated icons running around competing for attention from the actual information.
the more real world answer is: you likely don't need it; but if you do, always design your site to work WITHOUT it. some people will not use it or allow it to work on their browsers (on purpose), and others will be defeated by it - it generally breaks a lot of methods used to obtain the data for people with access isues (the blind for instance).
unfortunately, many people and businesses WANT the shiny stuff, so, that's where various technologies come into play; on the browser side, that's javascript. now, while the language itself is pure, the way each major browser company implements that, and its interaction to the web and/or rendering a page can vary somewhat (to a lot); chrome, firefox, ie, safari, opera, etc all have ... quirks (and yes, that IS a technical term in this case quirks-mode is a thing).
why is that relevant to jQuery? because jQuery's library attempts to wrap up all those riddles and enigmas of variations across the browsers into a neat, simple, tidy, consistent package, that let's you do your nasty shiny stuff without having to worry (so much) about other things. it's a massive shorthand for browser interactions.
also note: you don't write programs so much in jQuery as you use it to get, put, and modify information on the page. you still need to KNOW javascript programming to write good apps (data structures + algorithms === programs (that's a programmer joke))... which is where a lot of people stumble - jQuery is a subset of javascript in a way but it's NOT programming - you can do a lot of up front "copy and paste" grabbing of libraries, and then use jQuery markup/etc to make shiny pages, but ultimately, you aren't creating behaviors, your just affecting look and feel (and degrading access).
niche? tools is a good start. mastery python and ruby and perl and php. learn databases (sql) well. java is possibly a dead language, but it's good to know until it dies. C++ will stay around a long time, but is something of a specialty. learn [bash] shell and unix os. that covers like 95% of your backend stuff. if you want: learn admin of apache, and database creation and maintenance, and configuration of stuff like wordpress, and drupal. that gives you more traction. there's some good books, and lately, some good online (free) courses to get you started.
front end? web stack? "ui/ux"? yeah, there's a ton to learn there. html5, css3, javascript - i can recommend some GOOD books (in fact, i'm [re]reading a lot of them to make it second nature - the best of these books are barely 1/3 to 1/2 inch thick - lots of material and a LOT of material that has been left out (because it's junk)). there's a lot of bad books too. one of the big things with javascript/UI/UX lately are the abundance of libraries - written in javascript - to make javascript MORE useful (and less broken).
i leave you with this homework: http://theoatmeal.com/comics/design_hell
study hard
well, the technical answer is : you don't need javascript or jQuery on your site.ever
the original web and html markup was about content, not form. that is to say, you don't need animated icons running around competing for attention from the actual information.
the more real world answer is: you likely don't need it; but if you do, always design your site to work WITHOUT it. some people will not use it or allow it to work on their browsers (on purpose), and others will be defeated by it - it generally breaks a lot of methods used to obtain the data for people with access isues (the blind for instance).
unfortunately, many people and businesses WANT the shiny stuff, so, that's where various technologies come into play; on the browser side, that's javascript. now, while the language itself is pure, the way each major browser company implements that, and its interaction to the web and/or rendering a page can vary somewhat (to a lot); chrome, firefox, ie, safari, opera, etc all have ... quirks (and yes, that IS a technical term in this case quirks-mode is a thing).
why is that relevant to jQuery? because jQuery's library attempts to wrap up all those riddles and enigmas of variations across the browsers into a neat, simple, tidy, consistent package, that let's you do your nasty shiny stuff without having to worry (so much) about other things. it's a massive shorthand for browser interactions.
also note: you don't write programs so much in jQuery as you use it to get, put, and modify information on the page. you still need to KNOW javascript programming to write good apps (data structures + algorithms === programs (that's a programmer joke))... which is where a lot of people stumble - jQuery is a subset of javascript in a way but it's NOT programming - you can do a lot of up front "copy and paste" grabbing of libraries, and then use jQuery markup/etc to make shiny pages, but ultimately, you aren't creating behaviors, your just affecting look and feel (and degrading access).
niche? tools is a good start. mastery python and ruby and perl and php. learn databases (sql) well. java is possibly a dead language, but it's good to know until it dies. C++ will stay around a long time, but is something of a specialty. learn [bash] shell and unix os. that covers like 95% of your backend stuff. if you want: learn admin of apache, and database creation and maintenance, and configuration of stuff like wordpress, and drupal. that gives you more traction. there's some good books, and lately, some good online (free) courses to get you started.
front end? web stack? "ui/ux"? yeah, there's a ton to learn there. html5, css3, javascript - i can recommend some GOOD books (in fact, i'm [re]reading a lot of them to make it second nature - the best of these books are barely 1/3 to 1/2 inch thick - lots of material and a LOT of material that has been left out (because it's junk)). there's a lot of bad books too. one of the big things with javascript/UI/UX lately are the abundance of libraries - written in javascript - to make javascript MORE useful (and less broken).
i leave you with this homework: http://theoatmeal.com/comics/design_hell
study hard
Snow, snow, snow.
Went to a "gourmet" hot dog restaurant. The bacon cheddar dog and the Chicago dog were the best. The one covered in onions was a Kobe beef dog, it was sweet and weird, didn't like it.
![]()
![]()
New truck shopping. Went did trucks start costing so much anyway? Base trucks start in the 40's now.
![]()
Hmmmm........Wonder how much...:ee k:
WOW!
kinda over simplified it but he is spot on!!well, the technical answer is : you don't need javascript or jQuery on your site.ever
the original web and html markup was about content, not form. that is to say, you don't need animated icons running around competing for attention from the actual information.
the more real world answer is: you likely don't need it; but if you do, always design your site to work WITHOUT it. some people will not use it or allow it to work on their browsers (on purpose), and others will be defeated by it - it generally breaks a lot of methods used to obtain the data for people with access isues (the blind for instance).
unfortunately, many people and businesses WANT the shiny stuff, so, that's where various technologies come into play; on the browser side, that's javascript. now, while the language itself is pure, the way each major browser company implements that, and its interaction to the web and/or rendering a page can vary somewhat (to a lot); chrome, firefox, ie, safari, opera, etc all have ... quirks (and yes, that IS a technical term in this case quirks-mode is a thing).
why is that relevant to jQuery? because jQuery's library attempts to wrap up all those riddles and enigmas of variations across the browsers into a neat, simple, tidy, consistent package, that let's you do your nasty shiny stuff without having to worry (so much) about other things. it's a massive shorthand for browser interactions.
also note: you don't write programs so much in jQuery as you use it to get, put, and modify information on the page. you still need to KNOW javascript programming to write good apps (data structures + algorithms === programs (that's a programmer joke))... which is where a lot of people stumble - jQuery is a subset of javascript in a way but it's NOT programming - you can do a lot of up front "copy and paste" grabbing of libraries, and then use jQuery markup/etc to make shiny pages, but ultimately, you aren't creating behaviors, your just affecting look and feel (and degrading access).
niche? tools is a good start. mastery python and ruby and perl and php. learn databases (sql) well. java is possibly a dead language, but it's good to know until it dies. C++ will stay around a long time, but is something of a specialty. learn [bash] shell and unix os. that covers like 95% of your backend stuff. if you want: learn admin of apache, and database creation and maintenance, and configuration of stuff like wordpress, and drupal. that gives you more traction. there's some good books, and lately, some good online (free) courses to get you started.
front end? web stack? "ui/ux"? yeah, there's a ton to learn there. html5, css3, javascript - i can recommend some GOOD books (in fact, i'm [re]reading a lot of them to make it second nature - the best of these books are barely 1/3 to 1/2 inch thick - lots of material and a LOT of material that has been left out (because it's junk)). there's a lot of bad books too. one of the big things with javascript/UI/UX lately are the abundance of libraries - written in javascript - to make javascript MORE useful (and less broken).
i leave you with this homework: http://theoatmeal.com/comics/design_hell
study hard
Went to a "gourmet" hot dog restaurant. The bacon cheddar dog and the Chicago dog were the best. The one covered in onions was a Kobe beef dog, it was sweet and weird, didn't like it.
Congrats!
Whos the lucky Fella ?
....lol Just ribbin ya, Congrats Garnet
Run away!!!!! Um I mean congrats![]()
![]()
But for real, congrats man.
Whoa, congrats dude!
congrats! Do your best to keep the festivities small and/or inexpensive -- starting out a new life waist deep in debt is not a recipe for success.
Congrats, G&B!
It's my birthday and I didn't get any knives![]()