Originally posted by NickFitz
View Post
- Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
- Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!
test please delete
Collapse
This is a sticky topic.
X
X
Collapse
-
Where are we going? And what’s with this hand basket? -
Comment
-
Originally posted by voodooflux View PostMy hernia op has been brought forwardWhere are we going? And what’s with this hand basket?Comment
-
Originally posted by voodooflux View PostI was facing an 18 week wait, but there was a cancellation so I've been offered that place.Where are we going? And what’s with this hand basket?Comment
-
-
Originally posted by voodooflux View PostAugust 27th - right in the middle of some time I was planning to take off to take the kids out to various placesComment
-
Got sore eyes from staring at screens. Went and sat on the bed where it's a bit darker.
Woke up 2.5 hours later.My all-time favourite Dilbert cartoon, this is: BTW, a Dumpster is a brand of skip, I think.Comment
-
Comment
-
Evening denizens
Quite a productive day, given that I didn't really do much until after lunchtime
I did a big chunk of refinement of my animation library, getting it into a very nicely structured form which allowed me to add support for almost arbitrary acceleration, deceleration, overshooting, and so forth, specified by passing parameters to a cubic Bezier function
Then I extended my DOM building library to work with XML namespaces, and added support for SVG.
Having got that working, I then decided to attempt the animation of SVG. I only had to add two functions to the library, both one-liners, to get an SVG animation working, complete with acceleration and deceleration
The end result is that I can do stuff like this:
Code:var svgLine = svg.line( { x1: 0, y1: 0, x2: 200, y2: 200, "stroke-width": 15 }); document.body.appendChild(svg.svg( { width:400, height: 400}, svg.g( { stroke: "red" }, svgLine ))); var lineAnimation = Animation.create(svgLine, [ { name: "x1", from: 0, to: 400 }, { name: "y2", from: 200, to: 400 }, ], { tweening: Animation.tweenings.elasticOut() }); var button = html.button({ type: "button"}, "Animate line"); toolbar.appendChild(button); button.addEventListener("click", function(event) { Animation.start(lineAnimation, 5000); }, true);
Comment
-
My all-time favourite Dilbert cartoon, this is: BTW, a Dumpster is a brand of skip, I think.Comment
- Home
- News & Features
- First Timers
- IR35 / S660 / BN66
- Employee Benefit Trusts
- Agency Workers Regulations
- MSC Legislation
- Limited Companies
- Dividends
- Umbrella Company
- VAT / Flat Rate VAT
- Job News & Guides
- Money News & Guides
- Guide to Contracts
- Successful Contracting
- Contracting Overseas
- Contractor Calculators
- MVL
- Contractor Expenses
Advertisers
Contractor Services
CUK News
- Spot the hidden contractor Dec 20 10:43
- Accounting for Contractors Dec 19 15:30
- Chartered Accountants with MarchMutual Dec 19 15:05
- Chartered Accountants with March Mutual Dec 19 15:05
- Chartered Accountants Dec 19 15:05
- Unfairly barred from contracting? Petrofac just paid the price Dec 19 09:43
- An IR35 case law look back: contractor must-knows for 2025-26 Dec 18 09:30
- A contractor’s Autumn Budget financial review Dec 17 10:59
- Why limited company working could be back in vogue in 2025 Dec 16 09:45
- Expert Accounting for Contractors: Trusted by thousands Dec 12 14:47
Comment