Labelz: Unterschied zwischen den Versionen

aus Metalab Wiki, dem offenen Zentrum für meta-disziplinäre Magier und technisch-kreative Enthusiasten.
Zur Navigation springenZur Suche springen
(re-adding important information how to set up the printer)
 
(11 dazwischenliegende Versionen von 3 Benutzern werden nicht angezeigt)
Zeile 1: Zeile 1:
== About Labelz==
+
[http://metalab.github.io/labelz/ Create one yourself!]
 +
 
 
Labelz are small self-adhesive labels one can put on things that are somewhere in publicly used enviroments like hackerspaces, offices, workshops and so on.
 
Labelz are small self-adhesive labels one can put on things that are somewhere in publicly used enviroments like hackerspaces, offices, workshops and so on.
The label should make it possible to understand who owns this thing, what you are allowed to do with it, what to do if it is broken, wether you can move it someplace else, and things like that.
+
The label should make it possible to understand who owns this thing, what you are allowed to do with it, what to do if it is broken, if you can move it someplace else, and things like that.
 
 
The labels contain [http://de.wikipedia.org/wiki/QR-Code QR Codes] and human readable Info (Text and Icons)
 
 
 
 
 
[[Datei:Labelz_example.jpg]]
 
[[Datei:Labelz_bottle.jpg|200px]]
 
[[Datei:Labelz_printer.jpg|200px]]
 
== Creation ==
 
 
 
They can be created at the current [http://kariert.org/ test-implementation] using Firefox. After the creation, check that in printing page setup all the header and footers are disabled, and that the page borders are minimal. Also, select the right printer,  otherwise things go to the lazzzor...
 
The paper format should be set to 62x30mm.
 
Usually, the settings are safed by the web browser.
 
 
 
 
 
The labels can be printed on 62mm endless thermo-paper on the labelprinter on the Lazzzor computer. It is a Brother QL-560.
 
 
 
== Background==
 
The flags should apply not only to junk in the lab, e.g. Beamer,Printers,Displays,Styrofoam Cutters,Toolboxes, Repraps, Food?, Bikes, Furniture, unfinished projects, you name it;
 
Also a more general use context should be kept in mind.
 
 
 
Basically all the information should boil down to a short, coded, still human readable string<200 Letters, that is also replicated by the QR-Code
 
There should be data fields,
 
The Flags should be two-byte values that are at least human interpretable if possible, i.e. Public Domain="PD".
 
 
 
 
 
 
 
 
 
[http://xkcd.com/805/ http://imgs.xkcd.com/comics/paradise_city.png]
 
== Software Architecture ==
 
 
 
html form->data->executeable->png->html->printer
 
executeable might benefit from:
 
* [http://cairographics.org/download/ Cairo]
 
* [http://fukuchi.org/works/qrencode/index.en.html qr code library]
 
or maybe just
 
html form->display->html->printer
 
 
 
current proof of concept:
 
[http://kariert.org/ Labelz test]
 
Maybe use some existing online service for generating the QR codes or implement the QR library in JavaScript so we don't need an active component on the server?
 
 
 
==Content String schematic==
 
You have flags, that are defined by a one letter.
 
Then you have flag-specifiers, by two letters.
 
 
 
e.g. OwnershipType-Flag="O"
 
 
 
e.g. OwnershipType-Flag-Specifier="pd"=Public Domain
 
 
 
-> Opd
 
 
 
 
 
 
 
If there are strings included
 
 
 
"R"=responsible person
 
 
 
"8" number of characters following
 
 
 
"bkubicek"
 
 
 
-> R8bkubicek
 
 
 
 
 
as http:// links can be encoded in qr-codes, and are understand automatically by most qr-code decoders, one could per principle encode using a link [i know .lz does not exist]:
 
http://labe.lz/V1aOpdUfrD010110
 
could be something like
 
"Version 1a Ownership Public domain Use Freely".
 
The linked page could then decode the qr-code string and present it nicely.
 
 
 
==Included info:==
 
* Labelz version Flag
 
 
 
* OwnershipshipType
 
** Private
 
** Borrowed
 
** Public Domain
 
** Sponsored for Public Use
 
** HiveOwned
 
 
 
* OwnershipString: Name of owner/responsible person/
 
 
 
* Owner contact Flag
 
** M email
 
** T telephone
 
** A im
 
** J Jabber
 
* Owner contact String
 
 
 
* Date of tagging
 
 
 
* UseageFlag:
 
** Use as you wish
 
** Ask owner before use
 
** Use only if you know what you are doing
 
** do not touch
 
** use ultra carfully
 
 
 
* UsageString: intended useage
 
 
 
* LendingFlags:
 
** Permanent remove permitted
 
** borrowing allowed
 
** borrowing allowed with allowance of one owner
 
** borrowing allowed with allowance of the hive
 
** Moving to different room ok
 
  
* If broken
+
For information about earlier versions of Labelz, please look into the history of this Wiki article.
** return to owner
 
** repair yourself, if fail tell owner
 
** repair, if fail, throw it away
 
** destroyer rebuys, if no destroyer, notice owner
 
  
* if unwanted
+
Sourcecode: [https://github.com/Metalab/labelz Github]
** return to owner
 
** just throw it away
 
** store forever
 
  
* Value of thing
+
== Label Printer Settings in Firefox ==
  
 +
On a new install, the Preferences print.printer_Brother_QL-700.print_margin_* have to be 0, also print.printer_Brother_QL-700.print_header* set to "" and print.printer_Brother_QL-700.print_shrink_to_fit => true.
  
 +
In the printer driver a new format has to be created with width 62mm and height 30mm, printing in portrait mode.
  
 
[[Kategorie:Projekte]]
 
[[Kategorie:Projekte]]

Aktuelle Version vom 24. Oktober 2015, 15:15 Uhr

Create one yourself!

Labelz are small self-adhesive labels one can put on things that are somewhere in publicly used enviroments like hackerspaces, offices, workshops and so on. The label should make it possible to understand who owns this thing, what you are allowed to do with it, what to do if it is broken, if you can move it someplace else, and things like that.

For information about earlier versions of Labelz, please look into the history of this Wiki article.

Sourcecode: Github

Label Printer Settings in Firefox

On a new install, the Preferences print.printer_Brother_QL-700.print_margin_* have to be 0, also print.printer_Brother_QL-700.print_header* set to "" and print.printer_Brother_QL-700.print_shrink_to_fit => true.

In the printer driver a new format has to be created with width 62mm and height 30mm, printing in portrait mode.