TechBlog

Dreamweaver CS4 and Maintaining Real Websites

Published: December 11, 2008 Reading Time: 3 min

After Adobe absorbed Macromedia, Dreamweaver remained the default tool for many small teams building corporate sites, portfolios, and internal portals. Dreamweaver CS4 adds better CSS tooling, Live View powered by WebKit, and closer ties to the Adobe stack — but the hard part is still the same: keeping sites maintainable after launch. What CS4 Improved Live View renders pages with a WebKit engine — closer to Safari and Chrome than the old Design view approximation Stronger CSS panel workflows for designers who do not want to hand-write every rule Better code hinting for PHP and JavaScript Integration hooks for Photoshop comps and Bridge asset management Spry framework widgets for menus and form validation — use sparingly Subversion integration for teams finally moving off shared folders Live View reduces “upload and pray” cycles. You still need to test in IE7 and Firefox 3 — WebKit is not the whole audience. ...

Continue Reading

OllyDbg and Learning Reverse Engineering Safely

Published: October 17, 2008 Reading Time: 3 min

If Sysinternals shows you what is running, OllyDbg shows you what a program is thinking — one x86 instruction at a time. In 2008 it is the standard debugger for 32-bit Windows binaries: unpack a crackme, trace a malware sample in a lab, or understand why an installer behaves oddly when the vendor will not answer support calls. OllyDbg 1.10 is the version most people use. It is freeware, debugger-only (no disassembler license debates), and extensible with plugins. ...

Continue Reading

Google Chrome — A Fresh Browser Engine

Published: September 3, 2008 Reading Time: 3 min

Google Chrome arrived yesterday as a Windows beta with a comic explaining multi-process tabs and a reputation for speed. Another browser is the last thing some people wanted. For web developers and security folks, it is a big signal: the rendering engine wars are back. Mac and Linux versions do not exist yet. This is a Windows-only beta — but the design choices are worth studying regardless of platform. What Is Different Separate processes per tab — one crash does not take down everything Sandboxing ambitions — harder for web content to touch the system V8 JavaScript engine — fast enough to change how web apps feel in the browser Minimal UI — the address bar doubles as search, fitting Google’s habits Incognito mode — private browsing without digging through menus Silent auto-update — patches ship without a user-facing version bump Chrome uses WebKit for rendering — the same engine family as Safari — with Google’s own V8 replacing JavaScriptCore for script execution. ...

Continue Reading

Building Internal Web Tools on Windows

Published: September 18, 2007 Reading Time: 3 min

By late 2007, a lot of “enterprise” work still happens on small internal web apps: timesheets, inventory lookups, simple ticketing, phone directories. You do not always need Java or .NET. Sometimes you need PHP, MySQL, and a Windows server that the IT team can actually maintain. That is common in broadcasting, education, and mid-size offices — anywhere IT support sits close to the users and budgets are tight. Why Internal Tools Matter Desktop apps are expensive to deploy. Browser tools win when: ...

Continue Reading

Windows Vista Launch, UAC, and the First Month

Published: February 14, 2007 Reading Time: 3 min

Windows Vista launched to retail on January 30, and the usual mix of excitement and complaint followed immediately. Retail boxes promise security, search, and Aero glass. Forums fill with UAC prompt screenshots, driver complaints, and games that stutter on borderline hardware. Two weeks in, both sides look partly right. What Vista Gets Right User Account Control pushes installers toward proper permissions — even if users click Yes too often Windows Defender bundles baseline anti-spyware awareness BitLocker matters on business laptops with TPM chips (less on home PCs without it) Improved networking UI helps non-experts join Wi-Fi without breaking DNS Windows Search indexes documents faster than XP’s slow companion ReadyBoost offers a flash-drive speed boost on RAM-starved machines — modest, but noticeable What Frustrates People Prompt fatigue — UAC trains some users to click through everything without reading Performance on 512 MB–1 GB RAM systems feels sluggish compared to XP Driver hunting for printers, scanners, and older peripherals Games needing patches before they match XP smoothness Edition confusion — Home Basic, Home Premium, Business, Ultimate — each with different feature sets The “Vista Capable” vs “Vista Premium Ready” sticker mess does not help. Machines that can run Vista often cannot run Aero, and buyers feel misled. ...

Continue Reading

Sysinternals Suite for Windows Troubleshooting

Published: November 8, 2006 Reading Time: 3 min

When a Windows PC feels slow, popup-heavy, or “haunted,” Task Manager is not enough. The Sysinternals Suite from Mark Russinovich answers the question power users actually have: what is running, why, and who started it? Microsoft acquired Sysinternals in July 2006, but the tools remain free, still updated, and still the first thing I reach for on a troubled machine. Process Explorer: Task Manager with X-Ray Vision Process Explorer shows: ...

Continue Reading

Twitter, Microblogging, and the Attention Tax

Published: July 19, 2006 Reading Time: 3 min

In March, a small team launched twttr — a service for posting short status updates. By July it is called Twitter, and the constraint is still strange: 140 characters per post. No rich layouts, no photo albums — just short bursts of text, links, and the occasional SMS reply. Bloggers compare it to IRC for people who do not want to stay in a channel. That is closer to the truth than it sounds. ...

Continue Reading

WMF Exploit and the Zero-Day Patch Rush

Published: February 2, 2006 Reading Time: 3 min

Early 2006 delivered a rude reminder: a picture was not always safe. A flaw in how Windows handles WMF (Windows Metafile) images allows attackers to run code through crafted files — sometimes simply by viewing them in a browser, image viewer, or Explorer preview pane. It is a classic zero-day moment: exploit code is circulating while users wait for an official fix. Why This Feels Different Previous worms often needed obvious .exe attachments. The WMF issue blurs the line: ...

Continue Reading

Internet Explorer 7 — Tabs, Finally

Published: January 24, 2006 Reading Time: 3 min

Internet Explorer 6 has dominated Windows desktops for years — and for years, users have asked for tabbed browsing. Firefox and Opera shipped tabs long ago. Microsoft showed IE7 briefly in beta form last July, and the public Beta 2 Preview is expected within days. If you maintain websites or support family PCs, this is the moment to pay attention. What Microsoft Is Promising Based on beta builds and public statements, IE7 is shaping up as a real course correction: ...

Continue Reading

Batch Files vs AutoIt on Windows

Published: December 6, 2005 Reading Time: 3 min

Windows automation in 2005 is a two-tool world for many of us: batch files for command-line friendly tasks, and AutoIt when the job requires clicking through GUI dialogs. Neither is “better.” They solve different problems, and most experienced admins use both. When Batch Files Win Batch is ideal when: Programs expose command-line switches — xcopy, robocopy on XP Pro, net use, installers with /silent or /S You schedule tasks with Task Scheduler You chain simple steps: map drive, copy logs, start service, exit You want zero extra runtime installed on the target machine Example — nightly log backup: ...

Continue Reading