HN user

Charles__L

996 karma

Indie game developer. You can see my games here: http://ninjacharlie.itch.io/

Posts181
Comments14
View on HN
www.youtube.com 12y ago

[video] 1 Minute Crash Course: How a Compiler Works

Charles__L
2pts0
charles-l.github.io 12y ago

I'm 14 and just finished my first game. This was my experience.

Charles__L
19pts1
www.kickstarter.com 12y ago

Rex: a palm-sized, single-board computer to power your robots.

Charles__L
1pts0
www.wired.co.uk 12y ago

Researchers have can get images of bystanders from subject's eyes reflection

Charles__L
1pts0
www.mainframe2.com 12y ago

Mainframe2: Run any software in a browser

Charles__L
35pts44
madebyevan.com 12y ago

WebGL 3D Raytrace Renderer

Charles__L
3pts0
amos.me 13y ago

Forget the critics: Ouya future is looking as bright as ever

Charles__L
1pts0
www.asawicki.info 13y ago

Car Physics for Games

Charles__L
5pts1
reuze.me 13y ago

Reuze.me: a generator of lightweight HTML/CSS for common design elements

Charles__L
5pts0
www.niksula.hut.fi 13y ago

Doing Game Gravity Right

Charles__L
296pts81
uxdesign.smashingmagazine.com 13y ago

Creating An Adaptive System To Enhance UX

Charles__L
2pts0
wp.smashingmagazine.com 13y ago

How to Become a Top WordPress Professional

Charles__L
4pts0
blogs.unity3d.com 13y ago

Non-Game uses of the Unity Engine

Charles__L
3pts0
training.linuxfoundation.org 13y ago

Linux Training Course by the Linux Foundation

Charles__L
2pts1
github.com 13y ago

Magna Charta: JQuery Bar Charts

Charles__L
1pts0
lifehacker.com 13y ago

Set Up a Raspberry Pi as a Personal Web Server

Charles__L
1pts0
themble.com 13y ago

Bones: Simplify the Process of Creating a Wordpress Theme

Charles__L
20pts4
gusc.lv 13y ago

I’m writing my own OS, part 2 | Gusts Kaksis (a.k.a. gusC)

Charles__L
5pts0
stackoverflow.com 13y ago

How to Align Checkboxes and Their Labels Consistently Cross-Browsers

Charles__L
2pts0
lifehacker.com 13y ago

Build a Laser Microphone to Eavesdrop on Conversations Across the Street

Charles__L
2pts0
www.slideshare.net 13y ago

Progressive Enhancement & Mobile

Charles__L
1pts0
www.smashingmagazine.com 13y ago

An Organizational Structure That Supports Your Digital Presence

Charles__L
1pts0
www.kickstarter.com 13y ago

LA Game Space — a Place for Re-Imagining Video Games

Charles__L
2pts0
socrates.io 13y ago

Socrates: a simple, clean, markdown editor

Charles__L
3pts1
lifehacker.com 13y ago

Is a High-End Tablet Better Than a Cheap Laptop?

Charles__L
1pts0
www.smashingmagazine.com 13y ago

The Difference Between Good And Bad Job Requirements

Charles__L
5pts0
www.smashingmagazine.com 13y ago

Useful Talks And Videos From Web Design Conferences

Charles__L
27pts1
www.diaryofanappdeveloper.com 13y ago

Eight Handy Chrome Extensions for Web Developers

Charles__L
1pts0
lifehacker.com 13y ago

How to Commit Internet Suicide and Disappear from the Web Forever

Charles__L
2pts0
uxdesign.smashingmagazine.com 13y ago

Adaptive Vs. Responsive Layouts And Optimal Form Field Labels

Charles__L
1pts0

Yeah, it's the most do-it-yourself but is pretty difficult if your not extremely comfortable with Linux. I tried to do it a few months back (without too much C knowledge) and couldn't figure out how to cross-compile/link libraries I needed. I got it to boot into a shell (without login). At this point, I could probably do it, but I prefer sticking with really minimal distros like CRUX and Void.

There are a few reasons they split off home and root. It makes recovery simpler, and allows you to share the partition between multiple environments - which is useful if you dual boot.

I personally rarely make a second partition for home, but I always make a separate partition for /boot. GRUB requires an separate EFI partition to install (which is kind of dumb), and if you decide to encrypt your disk, the boot directory cannot be encrypted.

I think the reason they put swap in these tutorials is that many times people install linux on low-powered machines that require the swap because of limited memory. It's not a requirement to install linux, though. I never run it on installation.

Yes, but what are ways it is possible to break into a car?

  Break a window (drawback: sets off a car alarm)
  
  Duplicate or steal the a key (drawback: requires original key)

  Steal car when open (drawback: not many people leave there car open)
How could you break in a Lockitron (or prevent someone from using it)?
  Steal a persons phone (much easier than stealing a key. A phone  is taken out more often than a set of keys)

  Cut telephone wires for wi-fi (a little extreme, but possible)

  Hack there password.
Besides, how much motion does it require to open a lock with a key? I guess it makes sense to use it to unlock or lock your house remotely, but when have you been in that kind of situation? If someone needs a key, just give them a copy.

Yes, but what are ways it is possible to break into a car? Break a window (drawback: sets off a car alarm)

Duplicate the a key (drawback: requires original key) Steal car when open (drawback: not many people leave there car open)

How could you break in a key

I agree with removing tables for layout, but I think it's OK to use them for the posts.

Maybe an unordered list would work even better.

The point is, tables are good for what they are made for: tabular data.

We don't have to cheat anymore, CSS and HTML have had moved forward a lot.

Changing HN wouldn't be too much work and would help keep it with the times.

It's basically OK to keep older styles, but:

"(a) it works"

It does work, but when someone tries to reverse engineer the code( say to write a spider ) its difficult to read.

"(b) it's fast"

Thats probably true for sections of the html, but nested tables are not the fast.

"(c) it runs on both new and old browsers"

But nested tables aren't required in older browsers, they work with divs. Besides, who uses a browser that is older than 2000?

"(e) in this context, seperation of content from formatting is overkill"

Why? It makes quick changes much easier. I was fiddling with HN on firebug and had a hard time finding where everything was. There were tons of in-line styles that kept overriding the basic styles from the CSS file.

It's always better to change things in the CSS file, because it makes changes easier later.

I'm not saying for people to never use tables. But I think they should be used for what they were originally made for: tabular data. Some people go overkill trying not to use tables and that's not a good idea. Tables work really well when they are used right.