Skip to content

YusufSM/FP1

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Final Project Assignment 1: Exploration (FP1)

DUE Friday, March 11, 2016

My Library: simple-qr

My name: Yusuf Mulyo

In this first part project, I played around with the simple-qr library. It was a great start learning to install outside packages/libraries than the default given when downloading Racket. With this library, I was able to create QR code images that are saved in my computer when a procedure is run. The QR code consist of writtings that can just be plain text or a web link that could be scan by your devices and redirect you to the link written in the QR code. I made three QR code where one is just saying Hello World! while the other two are links.

Here are the pictures of the QR codes produced: https://github.com/oplS16projects/FP1/tree/25a05ee46accb3f39ed3f81f35764cddb7f5e9cb

#lang racket
(require simple-qr)
(qr-code "Hello World!" "hello.png")

Example Query

(qr-code "www.uml.edu" "uml.png")

Example Query

(qr-code "https://github.com/YusufSM/FP1" "github.png" #:module_width 9)

Example Query

Each procedure call (qr-code) is followed by a string that you want the code to have and followed by the name and file type you want the code to be saved as in one string (for example "name.type").

About

Exploration 1

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Racket 100.0%