- Initial Commit

This commit is contained in:
mrjohndowe 2021-11-30 01:03:25 -07:00
commit f48c628372
191 changed files with 2164 additions and 0 deletions

2
.gitattributes vendored Normal file
View File

@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
settings.php
phpMyAdmin

21
LICENSE Normal file
View File

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2020 sophia daniels
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

10
README.md Normal file
View File

@ -0,0 +1,10 @@
# Smart-Display-Pi
I'm building a smart display for the ecosystem of raspberry pi and other local web servers that I have running different Web-App projects.
This project has the new MVC project organization. Maybe someday I'll make it back into classes... but for now it's just a bunch of functions.
i'm putting all the functions that directly talk to the database in models... and then anything that does stuff with that or links together a bunch of models i'm putting under modules.Ii have a function for outputting JSON under views. I have a fancy file under includes that will include all the files under modules, models, and views. I then have an API folder where I'm putting in all the API files that actually use the modules, models, and views to do API stuff. and then I also have a helpers folder where I'm putting things I want to call with crontab.
The main benefit this has over the KITTY-MVC stuff is that KITTY-MVC doesn't nicely output JSON. Maybe I'll actually build KITTY-MVC around this current setup and make a KITTY-MVC repo. but only if i can figure out a better solution to have the modules be a meaningful data structure that loads and saves data from the database. so i can get lenting in VS-Code or something.

BIN
splash.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 869 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

29
www/api/info/index.php Normal file
View File

@ -0,0 +1,29 @@
<?php
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
date_default_timezone_set("America/Denver");
require_once("../../php/clsDB.php");
require_once("../../settings.php");
$db = new clsDB($db_info['database'], $db_info['username'], $db_info['password']);
$ifconfig = shell_exec("ifconfig wlan0");
if(strpos($ifconfig,"inet6") > 0){
$mac_address = substr($ifconfig,strpos($ifconfig,"inet6")+6,strpos($ifconfig,"prefixlen") -( strpos($ifconfig,"inet6")+6) - 1);
}
$data = [
'info' => [
'url' => $_SERVER['HTTP_HOST'],
'type' => "display",
'main' => 0,
'server' => "pi4b",
'mac_address' => $mac_address,
'name' => "basement tv"
]
];
header('Access-Control-Allow-Origin: *');
header('Content-Type: application/json');
echo json_encode($data);
?>

35
www/api/photos/index.php Normal file
View File

@ -0,0 +1,35 @@
<?php
require_once("../../includes/main.php");
$server = HubServer();
$info = file_get_contents("http://".$server['url']."/api/photos/");
$photos = json_decode($info);
$data = ["photos"=>[]];
$data['raw'] = $photos;
$hour = date("H");
$sunrise = GetSetting('sunrise');
$sunset = GetSetting('sunset');
if($hour >= $sunrise && $hour < $sunset){
foreach($photos->photos as $photo){
$isDay = false;
foreach($photo->tags as $tag){
if($tag == "day"){
$photo->url = "http://".$server['url'].$photo->filepath;
array_push($data['photos'],$photo);
}
}
}
} else {
foreach($photos->photos as $photo){
//echo $photo->filepath."<br>";
$isDay = false;
foreach($photo->tags as $tag){
if($tag == "night"){
$photo->url = "http://".$server['url'].$photo->filepath;
array_push($data['photos'],$photo);
}
}
}
}
$data['random'] = $data['photos'][rand(0,count($data['photos']))];
OutputJson($data);
?>

View File

@ -0,0 +1,13 @@
<?php
require_once("../../includes/main.php");
$data = [];
if(isset($_GET['var'], $_GET['value'])){
SetSetting($_GET['var'],$_GET['value']);
$data = SettingStamp($_GET['var']);
} elseif(isset($_GET['var'])){
$data = SettingStamp($_GET['var']);
} else {
$data = SimpleSettingsStamps();
}
OutputJson($data);
?>

15
www/api/tv/index.php Normal file
View File

@ -0,0 +1,15 @@
<?php
require_once("../../includes/main.php");
if($_GET['power']){
if($_GET['power'] == "on"){
TurnTVOn();
} elseif($_GET['power'] == "off" || $_GET['power'] == "standby") {
TurnTVOff();
TurnChromecastOff();
}
}
$osd_name = GetSetting("osd_name");
$data = ['tv'=>GetTVPow(),'osd_name'=>$osd_name['value']];
SetMyName($osd_name['value']);
OutputJson($data);
?>

19
www/api/weather/index.php Normal file
View File

@ -0,0 +1,19 @@
<?php
require_once("../../includes/main.php");
$server = HubServer();
if(isset($_GET['current'])){
$info = file_get_contents("http://".$server['url']."/api/weather/?current=".$_GET['current']);
$data = json_decode($info);
SetSetting('sunrise',RoundHour($data->current->sys->sunrise));
SetSetting('sunset',RoundHour($data->current->sys->sunset));
} elseif(isset($_GET['forecast'])){
$info = file_get_contents("http://".$server['url']."/api/weather/?forecast=".$_GET['forecast']);
$data = json_decode($info);
} else {
$info = file_get_contents("http://".$server['url']."/api/weather/");
$data = json_decode($info);
}
OutputJson($data);
?>

View File

@ -0,0 +1,9 @@
<?php
require_once("../../../includes/main.php");
$server = HubServer();
$info = file_get_contents("http://".$server['url']."/api/weather/log?verbose=true");
$data = json_decode($info);
OutputJson($data);
?>

BIN
www/apple-touch-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

57
www/css/fonts.css Normal file
View File

@ -0,0 +1,57 @@
@charset "utf-8";
@font-face {
font-family: 'KenyanCoffee';
src: url(../fonts/kenyan%20coffee%20rg.ttf); /* IE9 Compat Modes */
}
@font-face {
font-family: 'HeavyHeap';
src: url(../fonts/heavy%20heap.ttf) /* IE9 Compat Modes */
}
@font-face {
font-family: 'PincoyaBlack';
src: url(../fonts/pincoyablack.otf) /* IE9 Compat Modes */
}
@font-face {
font-family: 'Sansation';
src: url(../fonts/Sansation_Regular.ttf) /* IE9 Compat Modes */
}
@font-face {
font-family: 'Boogie';
src: url(../fonts/y2kboogie.ttf) /* IE9 Compat Modes */
}
@font-face {
font-family: 'Social';
src: url(../fonts/dings/Social%20Circles.otf) /* IE9 Compat Modes */
}
@font-face{
font-family: 'Neon';
src: url(../fonts/Neon.ttf);
}
@font-face{
font-family: 'Pompadour';
src: url(../fonts/02_APompadourTextSample.ttf)
}
@font-face{
font-family: 'Anjara';
src: url(../fonts/Anjara.ttf);
}
@font-face{
font-family: 'kgLetHerGo';
src: url(../fonts/KGLETHERGO.ttf);
}
@font-face{
font-family: 'Rimouski';
src: url(../fonts/rimouski\ sb.ttf);
}
@font-face{
font-family: 'ViceCitySans';
src: url(../fonts/ViceCitySans.otf);
}
@font-face{
font-family: 'EmojiFace';
src: url(../fonts/dings/Emoticonsoutline-AJB2.otf);
}
@font-face{
font-family: 'EmojiFace2';
src: url(../fonts/dings/Emoticons-DJ9m.otf);
}

83
www/css/main.css Normal file
View File

@ -0,0 +1,83 @@
html, body {
margin: 0em;
padding: 0em;
width: 100vw;
height: 100vh;
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
background-color: black;
}
header {
position: fixed;
top: 5vh;
left: 5vh;
font-size: 2em;
color: aliceblue;
text-shadow: black 0.1em 0.1em;
height: 15vh;
width: 90vw;
}
header h1,
header h2,
header h3 {
padding: 0em;
margin: 0.1em;
display: inline-block;
position: absolute;
white-space: nowrap;
}
header h1 {
width: 15vh;
background-repeat: no-repeat;
background-size: contain;
background-position: center center;
background-image: url(../img/null\ icon.png);
top: 0em;
left: 0em;
bottom: 0em;
}
header h2 {
font-size: 1.5em;
left: 15vh;
top:0em;
}
header h3 {
font-size: 0.75em;
left: 15vh;
bottom:1em;
}
footer {
position: fixed;
bottom: 5vh;
right: 5vh;
}
footer img.qr {
max-width: 20vh;
max-height: 20vh;
}
header h2[time="4:20am"],
header h2[time="4:20pm"],
header h3[date="4/20"]{
color: rgb(153, 255, 0);
}
header h2[time="4:20am"]::after,
header h2[time="4:20pm"]::after,
header h3[date="4/20"]::after{
content: icon;
height: 1em;
width: 1em;
display: inline-block;
background-position: center center;
}
header h2[time="4:20am"]::after{
background-image: url(../img/hemp.png);
}
header h2[time="4:20pm"]::after,
header h3[date="4/20"]::after{
background-image: url(../img/weed.png);
}

12
www/css/units.css Normal file
View File

@ -0,0 +1,12 @@
.percent::after,
[unit="percent"]::after{
content: '%';
}
.fahrenheit::after,
[unit="fahrenheit"]::after{
content: '°F';
}
.celsius::after,
[unit="celsius"]::after{
content: '°C';
}

164
www/css/weather.css Normal file
View File

@ -0,0 +1,164 @@
#live_weather {
position: fixed;
top: 5vh;
right: 5vh;
}
#live_weather {
padding: 0.5em;
border-radius: 1em;
font-size: 2em;
color: rgb(245, 245, 241);
text-shadow: black 0.05em 0.05em 0.01em, black -0.01em -0.01em 0.1em;
background-size: contain;
background-position: left center;
background-repeat: no-repeat;
padding-left: 5em;
text-align: center;
font-family: 'ViceCitySans';
}
#live_weather .temp{
font-size: 2.5em;
font-weight: bold;
}
#live_weather .temp[var='feels_like'],
#live_weather .humidity{
font-size: 0.75em;
}
/*
#live_weather .temp::before {
content: "";
display: inline-block;
height: 1em;
width: 1em;
background-size: contain;
background-repeat: no-repeat;
background-image: url(../img/thermometer-scale.png);
}
*/
#live_weather .temp[var='feels_like']::before {
content: "feels like";
display: inline-block;
font-size: 0.70em;
white-space: nowrap;
font-weight: normal;
width: 5em;
background: none !important;
}
#live_weather .humidity::before {
content: "";
display: inline-block;
height: 1em;
width: 1em;
background-size: contain;
background-repeat: no-repeat;
background-image: url(../img/raining.png);
}
#live_weather .temp::after {
font-size: 0.5em;
position: relative;
bottom: 0.5em;
}
#live_weather .temp[var='feels_like']::after,
#live_weather .humidity::after {
font-size: 0.75em;
position: relative;
bottom: 0.25em;
}
.temp[temp_range='-1'],
.temp[temp_range='0']{
color: #8900d3;
}
.temp[temp_range='1']{
color: #6300e9;
}
.temp[temp_range='2']{
color: #4600fd;
}
.temp[temp_range='3']{
color: #4814f9;
}
.temp[temp_range='4']{
color: #4a80f4;
}
.temp[temp_range='5']{
color: #4cb6f2;
}
.temp[temp_range='6']{
color: #6fdde0;
}
.temp[temp_range='7']{
color: #c7eab5;
}
.temp[temp_range='8']{
color: #e1db51;
}
.temp[temp_range='9']{
color: #dec21d;
}
.temp[temp_range='10']{
color: #e5921c;
}
.temp[temp_range='11'],
.temp[temp_range='12'],
.temp[temp_range='13']{
color: #f32a1a;
}
/* clouds */
[icon='01d']{
background-image: url(../img/weather/01d.png);
}
[icon='02d']{
background-image: url(../img/weather/02d.png);
}
[icon='03d']{
background-image: url(../img/weather/03d.png);
}
[icon='04d']{
background-image: url(../img/weather/04d.png);
}
[icon='01n']{
background-image: url(../img/weather/01n.png);
}
[icon='02n']{
background-image: url(../img/weather/02n.png);
}
[icon='03n']{
background-image: url(../img/weather/03n.png);
}
[icon='04n']{
background-image: url(../img/weather/04n.png);
}
/* rain */
[icon='09d']{ /* clouds and rain */
background-image: url(../img/weather/09d.png);
}
[icon='10d']{ /* rain and cloud and sun */
background-image: url(../img/weather/10d.png);
}
[icon='11d']{ /* clouds and lightning */
background-image: url(../img/weather/11d.png);
}
[icon='09n']{ /* clouds and rain */
background-image: url(../img/weather/09n.png);
}
[icon='10n']{ /* rain and cloud and sun */
background-image: url(../img/weather/10n.png);
}
[icon='11n']{ /* clouds and lightning */
background-image: url(../img/weather/11n.png);
}
/* snow */
[icon='13d']{
background-image: url(../img/weather/13d.png);
}
[icon='13n']{
background-image: url(../img/weather/13n.png);
}
/* haze */
[icon='50d']{
background-image: url(../img/weather/50d.png);
}
[icon='50n']{
background-image: url(../img/weather/50n.png);
}

BIN
www/favicon-16x16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 541 B

BIN
www/favicon-32x32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
www/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Binary file not shown.

BIN
www/fonts/Anjara.ttf Normal file

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,2 @@
For licensing information, please see http://kimberlygeswein.com :)

BIN
www/fonts/KGLETHERGO.ttf Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,4 @@
Neon is a Font by Nils von Blanc (www.nils-von-blanc.de).
Neon is a mod. REZ -Font.
----------------------------------------- This Font is licensed under a Creative Commons Attribution-Noncommercial 3.0 Unported (http://creativecommons.org/licenses/by-nc/3.0/). You are free: to Share Ñ to copy, distribute and transmit the work to Remix Ñ to adapt the work Under the following conditions: Attribution Ñ You must attribute the work in the manner specified by the author or licensor (but not in any way that suggests that they endorse you or your use of the work). Noncommercial Ñ You may not use this work for commercial purposes. IF YOU WANT TO USE THIS FONT COMMERCIAL: PLEASE SENT A EMAIL TO "VONBLANC@GMX.DE"

BIN
www/fonts/Neon.ttf Normal file

Binary file not shown.

BIN
www/fonts/PincoyaBlack.pdf Normal file

Binary file not shown.

View File

@ -0,0 +1,18 @@
Sansation - freeware font family
Version 1.31
Bernd Montag © 2011 - All Rights Reserved
This font family is freeware and can be used freely for personal and commercial purposes.
Although a PayPal donation in return is very much appreciated.
You may share this font on CDs, websites,... with the following restrictions:
- Modification of the font files is only allowed for personal use - don´t distribute a modified version of the font files!
- Do not rename the font files!
- Do not sell the font files!
- Do not pass the font files without this textfile!
- Make sure you have downloaded the latest update from www.dafont.com for best optical results.
If you have further questions - please contact me.
berndmontag@gmx.de

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 186 KiB

BIN
www/fonts/ViceCitySans.otf Normal file

Binary file not shown.

View File

@ -0,0 +1,14 @@
Hand Faces St.ttf, is an original design of southype, is free for personal and non-profit use.
This font can be used in charitable campaigns, school newsletters, teacher and university use (students in general), independent youtube videos and generally any use that does not generate profits.
Please do not use in political campaigns.
Help my work, all donations are greatly appreciated.
Paypal: southype@gmail.com
Please visit my site, http://www.southype.com
Thanks for download!!!

Binary file not shown.

View File

@ -0,0 +1,54 @@
Aierbazzi True Type Font
by Roberto Cecchi, www.civico201.com
I designed Aierbazzi to study possibilities offered
by ordinary fonts to create illustrations in a simple way through
combination / processing of some preset shapes (keys).
Letters don't follow themselves like in any other font, but they are put
one above the other, like layers, to build a new shape made of pieces
of each used letter.
This is a result born to grow the ideas that led me to bagarozz.
Aierbazzi (that means "weeds") is totally free and you may use it for commercial
and non commercial uses, without asking permission.
If You like Aierbazzi, feel free to leave me a comment in the "Aierbazzi" post
on my blog ( http://www.civico201.com/2008/10/29/aierbazzi/ ).
This zipfile must be kept intact, without alterations, if being transferred
via Disk, email, internet, or any other media. It can be made available
for downloading from website.
Roberto Cecchi.
http://www.civico201.com
<<<<<<<< CONDITIONS OF USE >>>>>>>>>
1. This font can be used for personal and commercial use.
2. The zipfile containing the font and this text file must be kept
intact, without alterations, additions or deletions.
3. This font can be transferred, stored or made available to other
computers or on the internet/bulletin board as long as no fee or
charge is requested for this service.
4. No warranty is offered, or understood to have been offered by the
supplier of this font, and the risk of any losses or damage from
use of this font remain with the user.
5. The supplier can not be responsible for any problems that may arise
by misuse of the font.

Binary file not shown.

BIN
www/fonts/dings/DRUGS.ttf Normal file

Binary file not shown.

BIN
www/fonts/dings/EU-Sym.ttf Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,69 @@
GemFont98 True Type Font
brought to you by me.
Conditions of use as of 10/4/2000
These conditions override all previous conditions
This font is Testware, in that you can use it totally free of charge,
COMMERCIAL AND NON COMMERCIAL, without asking permission.
This zipfile must be kept intact, without alterations, if being
transferred via Disk, email, internet, or any other media. It can be
made available for downloading from website.
If you like this font, and feel inclined, a small bequest, gratuity or donation of any amount
you determine to be appropriate to me would be appreciated. This is a suggestion, not a demand,
and in no way affects permission to use this font. Do not feel obligated to send any money if
you do not wish to.
G Meade.
P.O. Box 418
Carnegie, Melbourne
Australia 3163
GemFonts 98 - gem@c031.aone.net.au
http://skyscraper.fortunecity.com/windows/3/gemfont.htm
<<<<<<<< CONDITIONS OF USE >>>>>>>>>
1. This font can be used for personal and commercial use, with the
understanding that this font was created as a hobby and no claim
to professionalism is claimed.
2. It can now be included in any compilation CD's, disks or product.
3. The zipfile containing the font and this text file must be kept
intact, without alterations, additions or deletions.
4. This font can be transferred, stored or made available to other
computers or on the internet/bulletin board as long as no fee or
charge is requested for this service.
5. No warranty is offered, or understood to have been offered by the
supplier of this font, and the risk of any losses or damage from
use of this font remain with the user.
6. The supplier can not be responsible for any problems that may arise
by misuse of the font.
7. The term 'Testware' shall be taken and understood to mean that you
can use the font, without restrictions, in any manner that you wish,
as long as the user understands that the user is responsible for any
legal or moral situations that may arise for their use of this font in
any immoral, racial or illegal way.
8. You may definitely not eat, chew, sleep with, cook, slice, dice, barter,
shop, snort, inject, lick or wear this font. Any mental, health or legal
problems that will arise from attempted use in mentioned fashion are your
problems. I don't want to know, or hear, about your fetish's. (Well, then
again, I need a good laugh now and then.)
Anyway, that's it in total. As stated you can now do as you wish with my fonts, with full
responsibility upon your broad shoulders, but a kindness would be in letting me know
where and how you use my fonts, as I like to know someone out there uses them.

Binary file not shown.

Binary file not shown.

BIN
www/fonts/dings/IEC5000.otf Normal file

Binary file not shown.

Binary file not shown.

69
www/fonts/dings/Notes.txt Normal file
View File

@ -0,0 +1,69 @@
Company logos in the icons are copyright of their respective owners.
Social Icons Pro Set 1 - Rounded
Icons created by Phelan Riessen http://phelanriessen.com and thanks to http://alexpeattie.com for sharing his vector set to make this job easier.
0 - Email
1 - Phone
2 - FAQ
3 - Information
4 - RSS
5 - Home
6 - Left Arrow
7 - Right Arrow
8 - @ symbol
9 - Up arrow
@ - Like button
A - Behance
B - Bebo
C - Daily Booth
D - Digg
E - Delicious
F - Facebook Locations
G - Google+
H - Hyves
I - GitHub
J - Google Talk
K - Grooveshark
L - Flickr
M - MySpace
N - Netlog
O - Picassa
P - Pinterest
Q - Quora
R - Retweet
S - StumbleUpon
T - Twitter
U - Tumblr
V - Virb
W - w3
X - Wikipedia
Y - YouTube
Z - ZooTool
a - Arto
b - Blogger
c - CafeMom
d - Digg
e - FourSquare
f - Facebook
g - Google
h - hi5
i - Deviant Art
j - Friendster
k - Kik
l - LinkedIn
m - Meetup
n - Ning
o - Orkut
p - Pinterest
q - Quora
r - Reddit
s - Spotify
t - twitter
u - Tagged
v - Vimeo
w - WordPress
x - Xing
y - Yelp
z - Zerply

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,13 @@
Please take time to read this before using the font.
-----------------------
I'm perfectly happy to use this font in any way you wish, as long as you do not directly profile from the sale or modification of this font.
If you do want to use this font for profit, I'd appreciate any donations you'd like to offer. Thanks for downloading!
chris@christopherjackson.info
www.cjacks.uk
-------------------------------------------------
Copyright © 2016 Christopher Jackson. All Rights Reserved.
-----------------------

View File

@ -0,0 +1,33 @@
Floral Flush was made by Michelle Grewe
Websites:
Get Free Design Stuff; photos, illustrations, fonts, photoshop brushes, patterns and textures all commercial free for use at http://doodlegraphs.blogspot.com/
Read my stupid blog at http://www.crumpetsandbollocks.com
Read my blogging as I learn it at http://bellafontsblog.blogspot.com/
I'm also a contributer for a blog about Indie Publishing http://thepublishingbloggersnetwork.blogspot.com/
License:
Floral Flush is free to use for any reason. Private or Commercial. Go make millions off this stupid font. Try to donate to any cause other than the KKK and be a decent human being. God Bless. If you are an atheist, I hope that pissed you off. Just kidding. Have a good day.
About this font:
I made this font from photographs of weeds. Yes, I drove around town looking for cool looking weeds and got out of the car to take a photo on a white backboard or picked weeds looking like a crazy person so you can have this. People kept asking me what I was doing. I'm contributing to art. Quit asking too many questions. Fortunately, nobody thought I was homeless. The white backboard thingy was a trifold presentation cardboard thing near the poster board at Dollar General. For the most part, I took pictures of the shadows of plants, and then I took pictures of the plant trying not to get anything in the way of the plant and avoiding shadows. Then I opened them up in photoshop. I cropped. I auto-toned. I played with the curves making it more white and more colorful. Then I inserted graphic into an outdated version of FontCreator by High Logic. Tip, you want the pictures to be smaller, or you will starve from boredom waiting for the computer to think.
Some of the original photos and good photos with shadows can be found on Doodlegraphs for free use.
If you are still reading, I'm sorry about the death of your social life. Don't let it die in vain. Create something epic.
P.S. I wrote this entire thing under the influence of cheap vodka.
Warranty and Liability:
You can't return this. I will not refund your money, especially considering you didn't pay for it. I am not liable for any damage this font may cause, so use this font carefully. Batteries for this font are not included.
Oh, and if you want to use it on something where you are compiling fonts or something like that, electronic reproductions, just let them know about Doodlegraphs somewhere. It's more free stuff, like that shouldn't affect your business. Oh, and don't spam if you use this font in a compilation. Don't use it for any malicious reasons like malware or spyware, or I'm suing your funky ass if I don't go all Jay and Silent Bob on you.

View File

@ -0,0 +1,21 @@
Bella K. Dings Are Cool is a font created with Type light Software.
Bella K. Dings Are Cool is a free font. Use freely, share freely and, most of
all, enjoy the font. I just ask you to don't claim as your own!
If you use it commercially, please link to my blog below.
Thank you for downloading and be sure to visit us: http://elfadophotoscape.blogspot.com.br/
With Love,
Izabela de Lima.
--------------------------------------------------------------------------------------------------------------
Bella K. Dings Are Cool é uma fonte criada com o software Type light.
Bella K. Dings Are Cool é uma fonte grátis. Use-a livremente, compartilhe-a livremente, e, acima de tudo, aproveite a fonte. Só lhe peço para não dizer que você criou a fonte!
Se usá-la comercialmente, por favor, linke ao meu blog abaixo.
Obrigada por fazer o download, e visite-nos:
http://elfadophotoscape.blogspot.com.br/
Com amor,
Izabela de Lima.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,91 @@
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
www/fonts/dings/Words.ttf Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
www/fonts/dings/demo.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,8 @@
Donationware font:
http://fontm.com/author/socialh/
http://www.behance.net/socialh
http://socialh.deviantart.com/gallery/
http://www.dafont.com/ayman-hafez.d4343

Binary file not shown.

BIN
www/fonts/dings/preview.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 407 KiB

BIN
www/fonts/dings/scenery.ttf Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
www/fonts/heavy heap.ttf Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
www/fonts/pincoyablack.otf Normal file

Binary file not shown.

195
www/fonts/read-this.html Normal file
View File

@ -0,0 +1,195 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Typodermic Fonts Inc. Freeware Font instructions 2014</title>
<style type="text/css">
body {
margin:30px 20% 120px 20%;
padding:0px;
font-family:Consolas, Courier, sans-serif;
color:#4c4b44;
background-color:#c2c1b3;
/* IE10 Consumer Preview */
background-image: -ms-linear-gradient(top left, #DEDDD6 0%, #9D9B87 100%);
/* Mozilla Firefox */
background-image: -moz-linear-gradient(top left, #DEDDD6 0%, #9D9B87 100%);
/* Opera */
background-image: -o-linear-gradient(top left, #DEDDD6 0%, #9D9B87 100%);
/* Webkit (Safari/Chrome 10) */
background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0, #DEDDD6), color-stop(1, #9D9B87));
/* Webkit (Chrome 11+) */
background-image: -webkit-linear-gradient(top left, #DEDDD6 0%, #9D9B87 100%);
/* W3C Markup, IE10 Release Preview */
background-image: linear-gradient(to bottom right, #DEDDD6 0%, #9D9B87 100%);
}
h2 {color:#6d6c61;}
a {color:#8f5b54;}
a:hover {color:#ffffff; background-color:#9a998c;}
</style>
</head>
<body>
<svg width="350px" height="30px">
<path fill="#69685D" d="M0,4.006L0.554,0h20.674l-0.553,4.006l-2.559,2.772h-4.688l-0.682,4.816l-2.515,3.026l1.663,3.07
l-1.62,11.594H4.987l-1.448-1.79l2.94-20.716H1.791L0,4.006z"/>
<path fill="#69685D" d="M35.8,0h5.285l1.408,1.791l-1.876,13.343l-2.515,3.111h-4.264l-1.534,11.04h-5.286l-1.449-1.79l1.322-9.25
h-4.263l-1.705-3.111l1.875-13.343L24.76,0h5.242l-1.706,12.064h5.799L35.8,0z"/>
<path fill="#69685D" d="M62.09,0l2.899,3.453L63.412,14.58l-3.496,3.962h-9.805l-1.491,10.742h-5.244l-1.493-1.79l3.625-25.704
L47.469,0H62.09z M50.965,12.362h5.797l0.81-5.583h-5.799L50.965,12.362z"/>
<path fill="#69685D" d="M64.256,26.642l3.367-24.041L70.523,0h14.664l2.132,2.601l-3.368,24.041l-2.856,2.643H66.431L64.256,26.642
z M73.335,11.595l-2.514,3.026l1.663,3.07l-0.683,4.816H77.6l0.68-4.816l2.516-3.07l-1.663-3.026l0.681-4.816h-5.796L73.335,11.595
z"/>
<path fill="#69685D" d="M86.926,29.285L91.017,0h15.518l3.581,4.307l-2.899,20.673l-4.774,4.305H86.926z M96.345,11.595
l-2.515,3.026l1.664,3.07l-0.683,4.816h5.798l0.681-4.816l2.516-3.07l-1.663-3.026l0.681-4.816h-5.796L96.345,11.595z"/>
<path fill="#69685D" d="M127.114,29.285h-15.473l-1.492-1.79l3.624-25.704L115.731,0h15.389l-0.554,4.006l-2.557,2.772h-7.971
l-0.684,4.816h6.906l1.662,3.026l-2.515,3.111h-6.905l-0.683,4.775h8.057l1.791,2.771L127.114,29.285z"/>
<path fill="#69685D" d="M150.21,0l2.898,3.453l-1.405,9.977l-3.881,3.452l2.217,10.613l-1.748,1.79h-4.944l-2.387-11.553h-2.6
l-1.622,11.553h-5.241l-1.493-1.79l3.624-25.704L135.588,0H150.21z M145.691,6.779h-5.796l-0.683,4.816h5.799L145.691,6.779z"/>
<path fill="#69685D" d="M159.92,29.285h-5.242l-1.492-1.79l3.41-24.042L160.432,0h21.911l2.897,3.453l-3.409,24.042l-1.876,1.79
h-5.284l1.617-11.594l2.517-3.07l-1.662-3.026l0.681-4.816h-4.092l-3.154,22.506h-6.522l3.155-22.506h-4.134l-0.683,4.816
l-2.515,3.026l1.663,3.07L159.92,29.285z"/>
<path fill="#69685D" d="M191.879,29.285h-5.244l-1.492-1.79l3.624-25.704L190.728,0h5.242l-1.619,11.595l-2.516,3.026l1.663,3.07
L191.879,29.285z"/>
<path fill="#69685D" d="M213.018,25.279l-0.554,4.006h-13.854l-2.899-3.494l3.156-22.338L202.702,0h13.854l-0.555,4.006
l-2.558,2.772h-8.1l-0.683,4.816l-2.515,3.026l1.663,3.07l-0.683,4.816h8.1L213.018,25.279z"/>
<path fill="#69685D" d="M226.007,29.285l-1.492-1.79l3.624-25.704L230.1,0h15.473l-0.554,4.006l-2.557,2.772h-8.058l-0.724,5.115
h6.818l1.664,3.07l-2.557,3.11h-6.82l-1.535,11.211H226.007z"/>
<path fill="#69685D" d="M243.903,26.642l3.368-24.041L250.17,0h14.663l2.131,2.601l-3.367,24.041l-2.855,2.643h-14.664
L243.903,26.642z M252.983,11.595l-2.516,3.026l1.662,3.07l-0.681,4.816h5.796l0.684-4.816l2.515-3.07l-1.664-3.026l0.684-4.816
h-5.798L252.983,11.595z"/>
<path fill="#69685D" d="M280.639,19.822l-4.731-7.758l-2.516,3.069l1.662,3.069l-1.533,11.082h-5.244l-1.493-1.79l3.626-25.704
L272.37,0h4.773l4.902,9.677L283.41,0h5.285l1.407,1.791l-3.623,25.704l-1.877,1.79h-5.285L280.639,19.822z"/>
<path fill="#69685D" d="M291.926,4.006L292.48,0h20.674l-0.554,4.006l-2.557,2.772h-4.691l-0.681,4.816l-2.516,3.026l1.664,3.07
l-1.621,11.594h-5.285l-1.451-1.79l2.942-20.716h-4.689L291.926,4.006z"/>
<path fill="#69685D" d="M325.168,17.478h-9.209l-2.387-3.923l1.45-10.102L318.857,0h14.452l-0.682,4.86l-1.621,1.918h-9.506
l-0.64,4.561h9.208l2.388,3.878l-1.493,10.572l-3.836,3.494h-14.579l-1.107-1.917l0.682-4.86h12.362L325.168,17.478z"/>
</svg>
<br>
<p translate="no">
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=de&u=http://typodermicfonts.com/wp-content/uploads/2014/02/read-this.html&sandbox=0&usg=ALkJrhivq6___mill12Uw6fPvMWyJxstkw">Deutsch</a>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=es&u=http://typodermicfonts.com/wp-content/uploads/2014/02/read-this.html&sandbox=0&usg=ALkJrhjAt3cpinDeMTX6Ro8UcZFqaE8K5Q">Español</a>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=fr&u=http://typodermicfonts.com/wp-content/uploads/2014/02/read-this.html&sandbox=0&usg=ALkJrhjObLPhFyyhwigF-dBoOZ3eXYdDsw">Français</a>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=ar&u=http://typodermicfonts.com/wp-content/uploads/2014/02/read-this.html&sandbox=0&usg=ALkJrhg2hs-st3zodt-AjmoeuPHfyJsTEg">العربية</a>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=zh-CN&u=http://typodermicfonts.com/wp-content/uploads/2014/02/read-this.html&sandbox=0&usg=ALkJrhiilVnjG1Ks0DN7UyRqbKExhxAT-Q">中国简体</a>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=zh-TW&u=http://typodermicfonts.com/wp-content/uploads/2014/02/read-this.html&sandbox=0&usg=ALkJrhiSCPRAYToARlHI4kxIK9eCIFKQhw">簡體字</a>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=cs&u=http://typodermicfonts.com/wp-content/uploads/2014/02/read-this.html&sandbox=0&usg=ALkJrhj3z2HOOmCXLT-ApYW2SCeBvTGvTA">Čeština</a>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=el&u=http://typodermicfonts.com/wp-content/uploads/2014/02/read-this.html&sandbox=0&usg=ALkJrhhoORG-43TvZ2NVrll3T0oyOZE0VA">Ελληνικά</a>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=iw&u=http://typodermicfonts.com/wp-content/uploads/2014/02/read-this.html&sandbox=0&usg=ALkJrhiP4kLXdDxVNuV6-9tHJ8Tbt-1xKw">עִבְרִית</a>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=hi&u=http://typodermicfonts.com/wp-content/uploads/2014/02/read-this.html&sandbox=0&usg=ALkJrhhJmUufReWrMTSaGKPPOqV7q5jpGQ">हिन्दी</a>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=hu&u=http://typodermicfonts.com/wp-content/uploads/2014/02/read-this.html&sandbox=0&usg=ALkJrhgfcL_UwP3jkr6Vvq35rkhETFuTug">Magyar</a>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=is&u=http://typodermicfonts.com/wp-content/uploads/2014/02/read-this.html&sandbox=0&usg=ALkJrhjpK9lELyRP50Vv3RNgqCJDb6d-GQ">Íslenska</a>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=id&u=http://typodermicfonts.com/wp-content/uploads/2014/02/read-this.html&sandbox=0&usg=ALkJrhiExV3gmyXBUVqcwNiGiUWQSRrgIQ">Indonesia</a>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=it&u=http://typodermicfonts.com/wp-content/uploads/2014/02/read-this.html&sandbox=0&usg=ALkJrhgMr2_uulaLYRSFz8C34rtcbN6XEg">Italiano</a>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=ko&u=http://typodermicfonts.com/wp-content/uploads/2014/02/read-this.html&sandbox=0&usg=ALkJrhhl_nNXiOMIiBERq879UXH1XYfZGw">한국말</a>
<a href="http://translate.google.com/translate?hl=en&ie=UTF8&prev=_t&sl=en&tl=ja&u=http://typodermicfonts.com/wp-content/uploads/2014/02/read-this.html&sandbox=0&usg=ALkJrhi2FvSFgSUub72-Sq2moIRAosCiLA">日本語</a>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=no&u=http://typodermicfonts.com/wp-content/uploads/2014/02/read-this.html&sandbox=0&usg=ALkJrhhnf9AGd5hfxwA04e1w-tfYPha1ww">Norsk</a>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=pl&u=http://typodermicfonts.com/wp-content/uploads/2014/02/read-this.html&sandbox=0&usg=ALkJrhjZTe5eJRrZffLe0zgqEHPrMb8pOQ">Język&nbsp;Polski</a>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=pt-BR&u=http://typodermicfonts.com/wp-content/uploads/2014/02/read-this.html&sandbox=0&usg=ALkJrhg-zp3i6AcZCv02ONjZ5YvkcCFDBw">Português</a>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=pa&u=http://typodermicfonts.com/wp-content/uploads/2014/02/read-this.html&sandbox=0&usg=ALkJrhhPEMoYvW59_DJT7y6fxgG2IMh23A">ਪੰਜਾਬੀ</a>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=ro&u=http://typodermicfonts.com/wp-content/uploads/2014/02/read-this.html&sandbox=0&usg=ALkJrhgD0R8zxuQQh-YmFpQTJdvjhAYm2A">Română</a>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=ru&u=http://typodermicfonts.com/wp-content/uploads/2014/02/read-this.html&sandbox=0&usg=ALkJrhgI6c7Pd-FCcipT4xc2NPTefj5JJg">Русский</a>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=sv&u=http://typodermicfonts.com/wp-content/uploads/2014/02/read-this.html&sandbox=0&usg=ALkJrhhA8gW_-rjCbZQ5TK46zFMB3_StEQ">Svenska</a>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=ta&u=http://typodermicfonts.com/wp-content/uploads/2014/02/read-this.html&sandbox=0&usg=ALkJrhiwxxCEPzu3pHBXP-fbTZaOzYqe3g">தமிழ்</a>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=th&u=http://typodermicfonts.com/wp-content/uploads/2014/02/read-this.html&sandbox=0&usg=ALkJrhjP1N1DRUB1M81k5mi5KnRtt5C2-Q">ภาษาไทย</a>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=tr&u=http://typodermicfonts.com/wp-content/uploads/2014/02/read-this.html&sandbox=0&usg=ALkJrhiTYbD039OWznCcGyQnMy89_v-1gA">Türkçe</a>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=uk&u=http%3A%2F%2Ftypodermicfonts.com%2Fwp-content%2Fuploads%2F2014%2F02%2Fread-this.html">Українська&nbsp;мова</a>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=vi&u=http://typodermicfonts.com/wp-content/uploads/2014/02/read-this.html&sandbox=0&usg=ALkJrhirTQPOLCZognLpxOvJQT_158y07A">Tiếng&nbsp;Việt</a>
</p>
<p>Thanks for downloading a free font from <span translate="no">Typodermic Fonts Inc.</span> This font is <em>free for commercial use</em>. Read the attached license agreement for details.</p>
<h2>Installation</h2>
<ul>
<li>Windows 8/7/Vista: Get the font out of the ZIP. Right-click on the font and <em>Install</em>
<li>Windows XP: Get the font out of the ZIP. Put it into <cite translate="no">Start Menu/Control Panel/Appearance and Themes/Fonts</cite>
<li>Mac OS X: Get the font out of the ZIP. Put it into <cite translate="no">/Library/Fonts</cite> or <cite translate="no">/Users/Your_username/Library/Fonts</cite>
<li>Mac OS X 10.3 or above: Double-click the font file and <em>Install font</em>
</ul>
<h2>Allowed</h2>
<ul>
<li>art
<li>sign
<li>poster
<li>banner
<li>book
<li>business card
<li>album
<li>movie
<li>television
<li>logo
<li>trademarked logo
<li>clothing
<li>sticker
<li>stamp
<li>product label
<li>web page (not embedded)
<li>app (not embedded)
<li>PDF (not editable)
</ul>
<h2>Not allowed</h2>
<ul>
<li>ebook
<li>app (embedded)
<li>web page (embedded)
<li>product creation platform
<li>alphabet stamps
<li>advertisment server
<li>web template
<li>PDF (editable)
<li>OEM
<li>device embedding
</ul>
<p>It&rsquo;s easy to get a different license agreement. Read the <a href="http://typodermicfonts.com/custom/">this page</a> for details.</p>
<h2>Other styles</h2>
<p>Many of my free fonts have other styles available. Please visit <a href="http://typodermicfonts.com">Typodermic Fonts</a> and search for the name of this font in the search bar.</p>
<h2>About me</h2>
<p>My name is <span translate="no">Ray Larabie</span> and I&rsquo;ve been creating fonts since 1996.</p>
<p>Please visit <a href="http://typodermicfonts.com">typodermicfonts.com</a> to find out more.</p>
<p translate="no"><a href="https://www.facebook.com/pages/Typodermic-Fonts/7153899975">Facebook</a></p>
<p translate="no"><a href="http://about.me/raylarabie/#">About.me</a></p>
<p translate="no"><p><a href="https://twitter.com/typodermic">Twitter</a></p>
<p translate="no"><p><a href="http://www.pinterest.com/plywood747/">Pinterest</a></p>
</body>

12
www/fonts/readme.txt Normal file
View File

@ -0,0 +1,12 @@
Victory Type co.
-----------------
Have fun with fonts! Remember to sign-up on the mailing list at our webpage...
-----------------
visit Victory's website @:
http://www.type.nu
-----------------
Questions or Concerns? Contact Victory: typeface@aol.com
-----------------
© 2000 Victory Type
http://www.type.nu
-----------------

BIN
www/fonts/rimouski sb.ttf Normal file

Binary file not shown.

BIN
www/fonts/rimouski-a.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

BIN
www/fonts/rimouski-b.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

Some files were not shown because too many files have changed in this diff Show More