Android development?
Posted May 24, 2013 1:10 UTC (Fri) by
Howitzer (guest, #91109)
Parent article:
Three Ubuntu releases reach end of life
Numerous security issues in X Window System clients
Posted May 24, 2013 0:48 UTC (Fri) by
Cyberax (
✭ supporter ✭, #52523)
In reply to:
Numerous security issues in X Window System clients by dig
Parent article:
Numerous security issues in X Window System clients
Numerous security issues in X Window System clients
Posted May 24, 2013 0:35 UTC (Fri) by
dig (guest, #91108)
In reply to:
Numerous security issues in X Window System clients by Cyberax
Parent article:
Numerous security issues in X Window System clients
QEMU 1.5.0 released
Posted May 24, 2013 0:25 UTC (Fri) by
prometheanfire (subscriber, #65683)
In reply to:
QEMU 1.5.0 released by jdulaney
Parent article:
QEMU 1.5.0 released
Numerous security issues in X Window System clients
Posted May 24, 2013 0:23 UTC (Fri) by
Cyberax (
✭ supporter ✭, #52523)
In reply to:
Numerous security issues in X Window System clients by zlynx
Parent article:
Numerous security issues in X Window System clients
Numerous security issues in X Window System clients
Posted May 24, 2013 0:04 UTC (Fri) by
zlynx (subscriber, #2285)
In reply to:
Numerous security issues in X Window System clients by FranTaylor
Parent article:
Numerous security issues in X Window System clients
Numerous security issues in X Window System clients
Posted May 23, 2013 23:52 UTC (Thu) by
rqosa (subscriber, #24136)
In reply to:
Numerous security issues in X Window System clients by FranTaylor
Parent article:
Numerous security issues in X Window System clients
But for many years now, the default X server configuration does not allow network connections, but instead uses AF_LOCAL only — and even Wayland is using AF_LOCAL sockets as its IPC mechanism (according to the documentation). So you can't blame this on the use of network connections.
Really, any code that does IPC (regardless of what IPC mechanism is used) with an untrusted process must be carefully written to make no false assumptions about what the other process sends; there's no way around it.
An unexpected perf feature
Posted May 23, 2013 23:33 UTC (Thu) by
PaXTeam (subscriber, #24616)
In reply to:
An unexpected perf feature by helge.bahmann
Parent article:
An unexpected perf feature
Numerous security issues in X Window System clients
Posted May 23, 2013 23:32 UTC (Thu) by
drag (subscriber, #31333)
In reply to:
Numerous security issues in X Window System clients by FranTaylor
Parent article:
Numerous security issues in X Window System clients
Numerous security issues in X Window System clients
Posted May 23, 2013 23:04 UTC (Thu) by
FranTaylor (guest, #80190)
Parent article:
Numerous security issues in X Window System clients
QEMU 1.5.0 released
Posted May 23, 2013 22:57 UTC (Thu) by
jdulaney (subscriber, #83672)
In reply to:
QEMU 1.5.0 released by prometheanfire
Parent article:
QEMU 1.5.0 released
Empty symlinks and full POSIX compliance
Posted May 23, 2013 22:37 UTC (Thu) by
dlang (
✭ supporter ✭, #313)
In reply to:
Empty symlinks and full POSIX compliance by rgmoore
Parent article:
Empty symlinks and full POSIX compliance
Separating benefit and liability
Posted May 23, 2013 22:25 UTC (Thu) by
Wol (guest, #4433)
Parent article:
EFF: Vermont Is Mad as Hell at Patent Trolls
How Google plans to rule the computing world through Chrome (GigaOM)
Posted May 23, 2013 22:20 UTC (Thu) by
robert_s (subscriber, #42402)
In reply to:
How Google plans to rule the computing world through Chrome (GigaOM) by dlang
Parent article:
How Google plans to rule the computing world through Chrome (GigaOM)
Distribution quotes of the week
Posted May 23, 2013 22:17 UTC (Thu) by
rahulsundaram (subscriber, #21946)
In reply to:
Distribution quotes of the week by jubal
Parent article:
Distribution quotes of the week
Google Code to deprecate downloads
Posted May 23, 2013 22:14 UTC (Thu) by
Lukehasnoname (subscriber, #65152)
In reply to:
Google Code to deprecate downloads by imgx64
Parent article:
Google Code to deprecate downloads
Introducing Boot to Qt
Posted May 23, 2013 21:55 UTC (Thu) by
dashesy (subscriber, #74652)
Parent article:
Introducing Boot to Qt
Empty symlinks and full POSIX compliance
Posted May 23, 2013 21:31 UTC (Thu) by
rgmoore (
✭ supporter ✭, #75)
In reply to:
Empty symlinks and full POSIX compliance by dlang
Parent article:
Empty symlinks and full POSIX compliance
There is value in being POSIX compliant, but you get 99.999%+ of the value by being "almost" POSIX compliant the way Linux is.
It seems to me that refusing to follow the POSIX behavior when it's really stupid, as Linux is doing by refusing to create symlinks named the empty string, probably gives you slightly more value than rigid adherence to the standard would.
Google Code to deprecate downloads
Posted May 23, 2013 21:10 UTC (Thu) by
raven667 (subscriber, #5198)
In reply to:
Google Code to deprecate downloads by madscientist
Parent article:
Google Code to deprecate downloads
dedent
Posted May 23, 2013 21:07 UTC (Thu) by
ewen (subscriber, #4772)
Parent article:
Python and implicit string concatenation
There is a useful textwrap.dedent() (in the standard library since 2.3 AFAICT), which can be used to dedent triple quoted strings -- it will even remove just common indenting, leaving any extra per-line indenting intact. I've successfully used it in contexts where I might have used here documents in perl or Bourne shell.
Ewen