Re: [Debconf-discuss] [Debconf-announce] First videos are now online

2014-09-04 Thread Joey Hess
Richard Hartmann wrote:
  Also, should we expect the videos to show up under
  http://annex.debconf.org/debconf-share/debconf14/ at some point?
 
 *cough* oups *cough*
 
 They are in the annex (I just synced another batch which I had added
 on disk over time).
 
 That being said, they're there as web URLs, not files; I simply forgot
 about the web front-end.
 
 Maybe it's possible to have git-annex magic some links to the mirrors
 (CC'ed joeyh); else, I will need to poke Ganneff (also CC'ed) about
 space usage.

I don't feel it makes sense to host the videos' content on annex.debconf.org,
as long as meetings-archive.debian.net is already serving them.

-- 
see shy jo


signature.asc
Description: Digital signature
___
Debconf-discuss mailing list
Debconf-discuss@lists.debconf.org
http://lists.debconf.org/mailman/listinfo/debconf-discuss


Re: [Debconf-discuss] Group photo reminder

2014-08-28 Thread Joey Hess
Holger Levsen wrote:
 On Donnerstag, 28. August 2014, Aigars Mahinovs wrote:
  But I will also be uploading the same thing [...]
  to debconf-share git annex repo on collab-maint
 
 very cool, thanks! :-)

Pleased to see that being used. I guess Aigars is in the middle of the
`git annex copy --to incoming` of his 3 gb of photos now,
or possibly needs to do `git push` since it only knows about the copies
on his laptop..

I hope many other people can also put their photos there. Especially
since I was not able to use my camera yesterday and have family asking
where are the photos. :) If anyone needs a hand to get your photos into
the repository, see me.

-- 
see shy jo


signature.asc
Description: Digital signature
___
Debconf-discuss mailing list
Debconf-discuss@lists.debconf.org
http://lists.debconf.org/mailman/listinfo/debconf-discuss


[Debconf-discuss] DebConf file sharing via debconf-share git-annex repository

2014-08-23 Thread Joey Hess
The debconf-share git-annex repository that was (briefly) made 
available last DebConf is ready for use for sharing conference-related
materials.

http://annex.debconf.org/debconf-share/README

This is a way to share our personal media (photos (including raws),
videos, etc) and other files (talk slides, documents, GPS tracks, etc) related
to DebConf with other attendees and the public, and ensure that it's all
preserved in one place.

Please limit uploads to things that are legal, respectful of others,
and that it's appropriate to share with the world.

-- 
see shy jo


signature.asc
Description: Digital signature
___
Debconf-discuss mailing list
Debconf-discuss@lists.debconf.org
http://lists.debconf.org/mailman/listinfo/debconf-discuss


Re: [Debconf-discuss] DebConf14: Last call for keys for keysigning in Portland, Oregon, USA

2014-08-23 Thread Joey Hess
Joey Hess wrote:
 Here's a program that will generate a html file with a form containing
 a bunch of checkboxes, formatted so they fit all on one screen on my
 tablet.
 
 runhaskell convert.hs  ksp-dc14.utf8.txt  ksp-dc14.html

If you wanted to run that, you'd first need to:

sudo apt-get install ghc libghc-parsec3-dev 

-- 
see shy jo


signature.asc
Description: Digital signature
___
Debconf-discuss mailing list
Debconf-discuss@lists.debconf.org
http://lists.debconf.org/mailman/listinfo/debconf-discuss


Re: [Debconf-discuss] DebConf14: Last call for keys for keysigning in Portland, Oregon, USA

2014-08-21 Thread Joey Hess
Aníbal Monsalve Salazar wrote:
 To possibly avoid printing problems, convert the .txt files to utf-8 by
 running the commands below.
 
 iconv -f iso-8859-1 -t utf-8  ksp-dc14.txt  ksp-dc14.utf8.txt
 iconv -f iso-8859-1 -t utf-8  ksp-dc14.condensed.txt  
 ksp-dc14.condensed.utf8.txt
 
 I used libreoffice with ksp-dc14.condensed.txt as input to create a four
 pages landscape document with two columns. Maybe you could do something
 similar with other tools.
 
 If you have other ideas, post them to the list.

Here's a program that will generate a html file with a form containing
a bunch of checkboxes, formatted so they fit all on one screen on my
tablet.

runhaskell convert.hs  ksp-dc14.utf8.txt  ksp-dc14.html

(html improvements appreciated)

(saving consists of generating a url, which I have not bothered to write
a consumer for yet)

-- 
see shy jo
import Text.Parsec
import Text.Parsec.String
import Data.Either
import Data.List
import Control.Applicative hiding (many, (|))

numcols :: Int
numcols = 12

main :: IO ()
main = interact $ either (error . show) format . parse keys input

data Key = Key
	{ knum :: Int
	, kname :: String
	, kdetails :: [String]
	}

keys :: Parser [Key]
keys = do
	ls - instructionlines
	many $ Key $ getnum * getname * getdetails

instructionlines :: Parser [String]
instructionlines = restOfLine `manyTill` try (string \n\n\n)

restOfLine :: Parser String
restOfLine = anyChar `manyTill` try newline

getnum :: Parser Int
getnum = read $ between (char '#') (many1 space) (many1 digit)

getname :: Parser String
getname = manyTill anyChar
	(try (void (string (rank:  restOfLine) | void newline))

getdetails :: Parser [String]
getdetails = restOfLine `manyTill` try (void (string \n\n) | eof)

void :: Parser a - Parser ()
void p = p  return ()

format :: [Key] - String
format l = unlines $ concat
	[ header
	, intercalate chunksep (map (map formatkey) (segment l))
	, footer
	]
  where
	header= [ html
		, SHA256 Checksum: _
		, form method=get action=http://localhost/saveme
		, table
		, tr
		]
	footer = 
		[ /tr
		, /table
		, input type=submit value=Save
		, /form
		, /html
		]
	chunksep = [/tr, tr]

	formatkey k = concat
		[ td
		, '#' : show (knum k)
		, labelinput type=checkbox name= ++ show (knum k) ++ 
		, kname k
		-- TODO: allow expanding to see kdetails k
		, /input/label/td
		]
	
	segment [] = []
	segment l = 
		let (chunk, rest) = splitAt numcols l
		in chunk : segment rest


signature.asc
Description: Digital signature
___
Debconf-discuss mailing list
Debconf-discuss@lists.debconf.org
http://lists.debconf.org/mailman/listinfo/debconf-discuss


Re: [Debconf-discuss] [Debconf-announce] DebConf event sign-ups: Cheese Wine, Day Trip

2014-08-17 Thread Joey Hess
Patty Langasek wrote:
 I earnestly don't think people have been warned about this enough. :)

Thanks for the info. Since it's a loop and has the hardest part
apparently right at the beginning, I hope anyone who has over-estimated
their ability to do it in the 3 hours available could turn back well
before the half-way point, still see the top of the falls and 
many outstanding waterfalls and make it back to the bus in time. :)

By the way, is the Multnomah falls bridge re-opened? Wikipedia has it
still closed.

-- 
see shy jo


signature.asc
Description: Digital signature
___
Debconf-discuss mailing list
Debconf-discuss@lists.debconf.org
http://lists.debconf.org/mailman/listinfo/debconf-discuss


Re: [Debconf-discuss] [Debconf-announce] Food serving for vegetarians und vegans

2013-08-21 Thread Joey Hess
Steve Langasek wrote:
 The organizing team for DebConf14 is largely composed of obligate
 carnivores; there is no risk of a mostly-veggie debconf here. ;)
 
 Anyway, I think it's a good point that (good) vegetarian options appeal to
 more than just vegetarians, and I've heard this feedback from several other
 people as well in addition to those in this thread, so I've captured it
 here:
 
   https://wiki.debconf.org/wiki/DebConf14/RequirementsGathering
 
 At the end of the day, we still need to make sure that people who have
 registered as vegetarian/vegan have their food preferences respected, which
 might still mean waiting until they've eaten before opening things up to the
 omnivores; but we can still take steps to set the dial a little more towards
 the vegetable end.

Personally I've decided to attend DC14 as a vegetarian. If I get a
craving for bacon donuts[1] or something I'll just eat out. ;)

-- 
see shy jo

[1] http://www.voodoodoughnut.com/index.php


signature.asc
Description: Digital signature
___
Debconf-discuss mailing list
Debconf-discuss@lists.debconf.org
http://lists.debconf.org/mailman/listinfo/debconf-discuss


[Debconf-discuss] [Announce] debconf-share git-annex repository

2013-08-17 Thread Joey Hess
As I mentioned in a lightning talk, we have set up annex.debconf.org,
which is a git-annex repository everyone can use to share our personal
media (photos (including raws), videos, etc) and other files related
to DebConf (talk slides, documents, 3d printed Polito designs,
GPS tracks, etc).

(It also incorporates official talk videos for easy access. So you can
easily download talks the talks you want..)

This was set up over less than one day, so don't expect it to be perfect
yet (and file bugs!). But it works! Here's an example:

joey@gnu:~ git clone ssh://git.debian.org/git/collab-maint/debconf-share
joey@gnu:~ cd debconf-share
joey@gnu:~/debconf-share ./setup.sh

joey@gnu:~/debconf-share mkdir -p DebConf13/photos/joeyh
joey@gnu:~/debconf-share cp ~/sunrise_panorama.jpg debconf13/photos/joeyh
joey@gnu:~/debconf-share git annex add
joey@gnu:~/debconf-share git annex copy --auto --to incoming
joey@gnu:~/debconf-share git annex sync

That caused the file to be automatically published on the web:
http://annex.debconf.org/debconf-share/debconf13/photos/joeyh/sunrise_panorama.jpg
... but also be a git annex get away from anyone with a clone of this
repository.

So now's a great time to put your DebConf stuff into debconf-share!
Please limit uploads to things that are legal, respectful of others,
comply with DebConf policy, and that it's appropriate to share with the
world.

We have some disk space in the backend storage at annex.debconf.org ..
but not infinite amounts. (Currently 40 gb, and this can be
easily grown when needed.) Thanks to Ganneff for setting that up.

(See README in the repo for other details.)

-- 
see shy jo


signature.asc
Description: Digital signature
___
Debconf-discuss mailing list
Debconf-discuss@lists.debconf.org
http://lists.debconf.org/mailman/listinfo/debconf-discuss


[Debconf-discuss] Canon powershot charger

2013-08-15 Thread Joey Hess
Anyone have a battery charger for a Canon powershot or similar model?
Camera is not charging via USB..

-- 
see shy jo


signature.asc
Description: Digital signature
___
Debconf-discuss mailing list
Debconf-discuss@lists.debconf.org
http://lists.debconf.org/mailman/listinfo/debconf-discuss


Re: [Debconf-discuss] black- or whiteboard?

2013-08-13 Thread Joey Hess
Thomas Koch wrote:
 Is there a room with a black- or whiteboard? Helmut Grohne would like to give 
 the GPG-insights session but would like to have something to write on.
 
 Big paper sheets would also do!

I wanted this badly yesterday, and respectfully suggest it be added to
the things DebConf orga tries to provide in the facilities in the future.

In the meantime, flattened cardboard boxes can work. ;)

-- 
see shy jo


signature.asc
Description: Digital signature
___
Debconf-discuss mailing list
Debconf-discuss@lists.debconf.org
http://lists.debconf.org/mailman/listinfo/debconf-discuss


Re: [Debconf-discuss] Swiss power connector

2013-08-07 Thread Joey Hess
Steve Langasek wrote:
 Knowing that an adapter is needed is not much help if you don't know where
 to purchase one.  I have been unable to find any Swiss adapters for sale
 here in the US - ironically, I did find a Swiss-*branded* set of universal
 adapters in the store, which covered most of the world but *not*
 Switzerland.

YMMV, but from the pictures I see the $10 universal adapter that I
picked up at Radio Shack 15 years ago and has not failed me so far
anywhere will once again succeed in Swizerland. You just need a standard
European plug without too much mass around the 2 prongs to reach into
the Swiss socket.

Anyway, has there been a debconf in recent memory where each table in
the hacklab didn't have at least 3 different varieties of power outlets? ;)

-- 
see shy jo


signature.asc
Description: Digital signature
___
Debconf-discuss mailing list
Debconf-discuss@lists.debconf.org
http://lists.debconf.org/mailman/listinfo/debconf-discuss


Re: [Debconf-discuss] Information about accommodation at le camp (photos and plans) ·

2012-11-26 Thread Joey Hess
Remember that most of the happy people shown here were enjoying DebConf
accomidations that consisted of the floor of a gymnasium and whatever
sleeping gear they'd packed.
http://www.marlow.dk/site.php/pics/debconf3

The attendees rated this accomidation as 9% bad, 67% good, and 24% very good.
http://debconf3.debconf.org/questionnaire.html

I know that the average age of a DD has increased since then,
but not as much as my own age has increased.. and I'd happily do it
again. I still consider that one of the better DebConfs.

DebConf seems more likely to keep happening if the community of
attendees is able to be flexible about these things, and find ways to
accomidate one-another's needs, rather than requiring a perfectly
organised hotel every time.

Since I'll likely be in camping mode anyway, I do hope that some place
near Le Camp can be found where we can set up tents.

-- 
see shy jo, who does draw a personal line at the disgusting Cowgate hostel
... never again
___
Debconf-discuss mailing list
Debconf-discuss@lists.debconf.org
http://lists.debconf.org/mailman/listinfo/debconf-discuss


Re: [Debconf-discuss] Your biggest achievement during past DebConfs (aka new DebConf promoting campaign)

2012-02-16 Thread Joey Hess
Petter Reinholdtsen wrote:
 Are you sure the first successful installation of Debian happened during
 DebConf3?  I remember giving a talk about Skolelinux at that conference
 and how Skolelinux used d-i to automate the Debian installation.  During
 the talk I ran the installation as a demonstration, and I suspect I
 would not have tried to do this if I had not done a d-i installation
 before DebConf3.  But my memory is flaky, so I just wanted to ask if
 anyone remember when d-i actually was able to install Debian for the
 first time.

d-i was being used to install Skolelinux, at least as a proof of
concept, a little before Debconf, but not to install Debian as far as I
know. I had certianly not seen d-i install Debian before that point.

-- 
see shy jo


signature.asc
Description: Digital signature
___
Debconf-discuss mailing list
Debconf-discuss@lists.debconf.org
http://lists.debconf.org/mailman/listinfo/debconf-discuss


Re: [Debconf-discuss] Your biggest achievement during past DebConfs (aka new DebConf promoting campaign)

2012-02-15 Thread Joey Hess
Francesca Ciceri wrote:
 During DebConfN I wrote $cool-software which we now use to do
 $cool-things

At DebConf3 in Oslo, I finally met the other Debian Installer developers
gathered together in person, and after a week of challanging work, we
achieved the first successful installation of Debian with it. This
reinvigorated our team, leading to many new members, more rapid
development, and many more developer gatherings. The resulting program
has since been used to install Debian, and derivative distributions, on
tens of millions of systems.

-- 
see shy jo


signature.asc
Description: Digital signature
___
Debconf-discuss mailing list
Debconf-discuss@lists.debconf.org
http://lists.debconf.org/mailman/listinfo/debconf-discuss


Re: [Debconf-discuss] V Pay cards at ATMs in Bosnia and Croatia

2011-07-19 Thread Joey Hess
Marc Haber wrote:
 On Tue, Jul 19, 2011 at 10:53:47AM +0200, Vedran Omeragic wrote:
  Yes, Visa and MasterCard, both credit and debit, will work without any
  problems. _However_ ATMs will _only_ accept cards with chips
 
 The chip part is a vital bit of information. Especially Germany still
 has a good number of chipless credit cards in circulation.

And of course, America is entirely without chips in its credit cards.

-- 
see shy jo


signature.asc
Description: Digital signature
___
Debconf-discuss mailing list
Debconf-discuss@lists.debconf.org
http://lists.debconf.org/mailman/listinfo/debconf-discuss


Re: [Debconf-discuss] DebConf videos on Youtube?

2011-04-06 Thread Joey Hess
Damyan Ivanov wrote:
 I just checked and youtube didn't seem playable with the free gnash 
 player. You may see this as a way to promote Debian via youtube, but 
 I see it as a way to promote the non-free flash player :/

Should be possible to make sure to use a format that youtube converts to
webm, so they'd work with html5. The TOS (section 6 C) is however a
problem for any talks that are under a copyleft license, at a minimum.

On a completly unrelated subject, but one it seems silly to start a
thread for, my US passport expires on 21 Oct 2011. While I would expect
to be home at least a month before then, anyone have a sense of the
safety of traveling with a passport that near to expiration?

-- 
see shy jo


signature.asc
Description: Digital signature
___
Debconf-discuss mailing list
Debconf-discuss@lists.debconf.org
http://lists.debconf.org/mailman/listinfo/debconf-discuss


Re: [Debconf-discuss] Travel Sponsorship

2010-08-05 Thread Joey Hess
Michael Schultheiss wrote:
 If you have been selected to receive travel sponsorship, please provide
 me with a copy of your travel documentation (receipt or other document
 showing the price you paid)

Note that this includes the 5 people who will be receiving travel
funding as Debconf newbies.

-- 
see shy jo


signature.asc
Description: Digital signature
___
Debconf-discuss mailing list
Debconf-discuss@lists.debconf.org
http://lists.debconf.org/mailman/listinfo/debconf-discuss


Re: [Debconf-discuss] Please don't upload GPG keys to keyserver when signing them

2009-08-06 Thread Joey Hess
Christian Perrier wrote:
 Funnily, its implementation of the process *also* makes it (the
 process) more secure and reliable, thanks to the wisdom of the clever
 people who developed it

Whether verifying that someone currently gets email at the address on
their key actually adds any meausurable benefit when signing is
debatable, has been debated multiple times before, and neither side was,
IIRC, argued fully convincingly before. Unless there's new information[2],
discussing it again would not be useful.

However, caff does something clever: It encodes a particular viewpoint
on the best way to do things on the signing side into a somewhat[1] easy
to use program, thus encouraging even people who are not convinced that
it is the best way, to do things that way. This thread has shown that it
somewhat hides the cost by pushing it onto the person who receives the
caff mails. I think there's a broader lesson in there about arguing
persuasively through code.

-- 
see shy jo, channelling aj

[1] Less easy in my experience when one has more than one active key (N) and
is signing others with more than one key (M), that each have more than one
email address (E), as the number of questions caff asks scales badly,
O(N * M * E). It should be possible to reduce that to O(N * M + E), or
just O(M + E) or, ideally, to just one single question.
[2] Such as eg, madduck's mention of keyserver-no-modify.


signature.asc
Description: Digital signature
___
Debconf-discuss mailing list
Debconf-discuss@lists.debconf.org
http://lists.debconf.org/mailman/listinfo/debconf-discuss


[Debconf-discuss] power supply

2007-06-21 Thread Joey Hess
My laptop power supply died today and I'm wondering if anyone has a
spare supply capable of 16 volts and 3.75 amps that I could cannabalise
(cut and swap plugs). I wouldn't need it past debconf as a replacement
is on its way to my house.

-- 
see shy jo


signature.asc
Description: Digital signature
___
Debconf-discuss mailing list
Debconf-discuss@lists.debconf.org
http://lists.debconf.org/mailman/listinfo/debconf-discuss