Recent Posts
Archives

Archive for the ‘General’ Category

PostHeaderIcon [DevoxxFR2014] [0.000000] Linux version 6.5.0

PostHeaderIcon [DevoxxFR2014] Rebuild initramfs after driver changes

sudo update-initramfs -u -k 6.5.0


### 1.4 Kernel Initialization

dmesg | less

PostHeaderIcon [DevoxxFR2014] modules/


**Purpose**:
- Load storage drivers (LVM, RAID, encrypted disks)
- Assemble root device
- Pivot to real root

PostHeaderIcon [DevoxxFR2014] scripts/

PostHeaderIcon [DevoxxFR2014] Edit boot entry at GRUB prompt

e # edit
… linux … ro single
F10 # boot


> **Use Case**: Recover root password or repair filesystem.

### 1.3 Initramfs: The Temporary Root

A compressed cpio archive loaded into RAM:

lsinitramfs /boot/initramfs-6.5.0.img | head

PostHeaderIcon [DevoxxFR2014] /boot/grub/grub.cfg (generated — do NOT edit directly)

menuentry ‘Ubuntu’ –class ubuntu {
set root=’hd0,gpt2′
linux /vmlinuz-6.5.0 root=UUID=abc123 ro quiet splash
initrd /initramfs-6.5.0.img
}


### *Key Kernel Parameters
| Parameter | Purpose |
|--------|--------|
| `ro` | Mount root read-only initially |
| `quiet` | Suppress boot messages |
| `splash` | Show graphical boot |
 [Truncated due to length] | `systemd.unit=rescue.target` | Boot into single-user mode |
| `init=/bin/bash` | Bypass init (emergency shell) |

PostHeaderIcon [DevoxxBE2013] Riddle Me This, Android Puzzlers

Stephan Linzner and Richard Hyndman, Google Android Developer Advocates, unravel enigmatic Android behaviors through interactive puzzles. Stephan, an automation aficionado and runner, teams with Richard, a 12-year mobile veteran from startups to operators, to probe component lifecycles, UI quirks, and KitKat novelties. Their session, blending polls and demos, spotlights content providers’ primacy, ViewStub pitfalls, and screen recording tools, arming developers with debugging savvy.

Android’s intricacies, they reveal, demand vigilance: from process spawning to WebView debugging. Live polls engage the audience, transforming head-scratchers into teachable moments.

Component Creation Order and Lifecycle

Stephan kicks off with a poll: which component initializes first post-process spawn? Hands favor activities, but content providers lead—crucial for data bootstrapping.

Richard demos service lifecycles, warning against onCreate leaks; broadcasts’ unregistered crashes underscore registration discipline.

UI Rendering Quirks and Optimizations

ViewStub inflation puzzles Stephan: pre-inflate for speed, but beware null children post-inflation. Richard explores ListView recycling, ensuring adapters populate recycled views correctly to avoid visual glitches.

These gotchas, they stress, demand profiler scrutiny for fluid UIs.

KitKat Innovations and Debugging Aids

KitKat’s screen recording, Richard unveils, captures high-res videos sans root—ideal for demos or Play Store assets. Stephan spotlights WebView debugging: Chrome DevTools inspect remote views, editing CSS live.

Monkey tool’s seeded crashes aid reproducible testing, simulating user chaos.

Interactive Polls and Community Insights

Polls gauge familiarity with overscan modes and transition animations, fostering engagement. The duo fields queries on SurfaceView security and WebView copies, clarifying limitations.

This collaborative format, they conclude, equips developers to conquer Android’s riddles.

Links:

PostHeaderIcon [DevoxxFR2014] or

ls /sys/firmware/efi # exists → UEFI


> **Security Note**: UEFI Secure Boot prevents unsigned kernels from loading—a critical defense in enterprise environments.

### 1.2 Bootloader: GRUB2

PostHeaderIcon [DevoxxFR2014] Check firmware type

dmesg | grep -i “EFI v”

PostHeaderIcon [DevoxxBE2013] Business Strategies for Small Independent Developers

Joe Cieplinski, Creative Director at Bombing Brain Interactive, imparts wisdom on navigating the indie development landscape, drawing from his journey with apps like Teleprompt+ and Setlists. A former Apple Store presenter and app designer since 2008, Joe shares monetization tactics, customer engagement, and marketing essentials for sustaining a living through mobile software. His session, infused with anecdotes from his iOS and OS X ventures, underscores premium pricing, in-app purchases, and responsive support as pillars of success.

Indie developers, Joe contends, thrive by treating apps as products with ongoing value. He recounts Bombing Brain’s evolution, from manual support to PDF/iBooks guides, reducing queries while building loyalty. Effective strategies, he illustrates, blend quality delivery with community interaction, turning users into advocates.

Monetization Models and Pricing Wisdom

Joe advocates premium upfront pricing for perceived value, citing Teleprompt+’s $19.99 tagline drawing discerning users. Subscriptions and in-app upgrades, he demos, extend revenue—unlocking features like cloud sync fosters recurring income.

Avoid free apps’ ad pitfalls, Joe warns; targeted promotions on App Store or forums yield better conversions than broad ads.

Customer Support and Resource Creation

Exemplary support, Joe emphasizes, differentiates indies. He shares Tim Mosley’s empathetic responses, turning complaints into testimonials. Comprehensive manuals—100-page PDFs for Teleprompt+—preempt queries, saving time while showcasing depth.

Social media, though secondary for his audience, amplifies reach; Twitter/App.net engagements build rapport.

Building Reputation and Marketing Tactics

Reputation accrues through consistent excellence, Joe asserts. Cross-platform ports, like Teleprompt+ for iPad/iPhone/OS X, expand ecosystems. Collaborations with friends, as in his trio, infuse passion into products.

Marketing favors organic growth: user reviews, niche forums, and targeted outreach outperform paid campaigns for bootstrapped teams.

Lessons from Bombing Brain’s Journey

Joe reflects on x2y’s launch, balancing innovation with sustainability. He urges indies to prioritize joy—his “lifestyle” approach sustains creativity amid challenges.

This blueprint, Joe concludes, equips solo creators for enduring viability in app markets.

Links: