Talk:QuickQRCodes
From London Hackspace Wiki
Script to generate the qrcodes:
#!/bin/sh # wifi: qrencode -o lhswifi.png -l M 'WIFI:T:WPA;S:LondonHackspace;P:DFDE595F79;;' # vcard: qrencode -o lhsvcard.png -l M 'MECARD:\ N:London Hackspace;\ TEL:+442076135391;\ ADR:Laboratory 24,Unit 24,37 Cremer Street,London,London,E2 8HD,GB;\ URL:https://london.hackspace.org.uk/;\ URL:http://wiki.london.hackspace.org.uk/view/London_Hackspace;;' # subscribe to main mailing list: qrencode -o lhsmainlist.png -l M 'MATMSG:TO:london-hack-space+subscribe@googlegr oups.com;\ SUB:subscribe;\ BODY:subscribe;;' # Infrastructure list: qrencode -o lhsinfrastructure.png -l M 'MATMSG:TO:london-hack-space-infrastructu re+subscribe@googlegroups.com;\ SUB:subscribe;\ BODY:subscribe;;' # announcements list: qrencode -o lhsannounce.png -l M 'MATMSG:TO:london-hackspace-announce+subscribe@ googlegroups.com;\ SUB:subscribe;\ BODY:subscribe;;' # bookmarks: # main page: qrencode -o lhsmainbkm.png -l M 'MEBKM:TITLE:London Hackspace;\ URL:https://london.hackspace.org.uk/;;' # wiki: qrencode -o lhswikibkm.png -l M 'MEBKM:TITLE:London Hackspace Wiki;\ URL:http://wiki.london.hackspace.org.uk/view/London_Hackspace;;' # How to get to the space: qrencode -o lhgotobkm.png -l M 'MEBKM:TITLE:How to get to London Hackspace;\ URL:http://wiki.london.hackspace.org.uk/view/Laboratory_24/Getting_There;;'