Browse Source

update

master
root 4 years ago
parent
commit
34ff4e189f
22 changed files with 249 additions and 21 deletions
  1. +1
    -0
      .gitignore
  2. +0
    -1
      .well-known/acme-challenge/test
  3. BIN
      DSCN0212.JPG
  4. BIN
      DSCN0765.JPG
  5. BIN
      DSCN0787.JPG
  6. BIN
      DSCN1278.JPG
  7. +1
    -1
      about.html
  8. +104
    -0
      archive/old_index_20200406.html
  9. +101
    -0
      archive/old_index_20200406b.html
  10. BIN
      books/steakelectronics_2018_2019.pdf
  11. +42
    -19
      index.html
  12. BIN
      logo3.jpg_BAK
  13. BIN
      logo4.png
  14. BIN
      logo_fullsize.png
  15. BIN
      picofday.jpg
  16. BIN
      picofday2.jpg
  17. BIN
      picofday3.jpg
  18. BIN
      picofday4.jpg
  19. BIN
      picofday5.jpg
  20. BIN
      picofday6.jpg
  21. BIN
      picofday7.jpg
  22. BIN
      picofday8.jpg

+ 1
- 0
.gitignore View File

@ -0,0 +1 @@
picsofday/

+ 0
- 1
.well-known/acme-challenge/test View File

@ -1 +0,0 @@
ok

BIN
DSCN0212.JPG View File

Before After
Width: 800  |  Height: 600  |  Size: 144 KiB

BIN
DSCN0765.JPG View File

Before After
Width: 800  |  Height: 600  |  Size: 132 KiB

BIN
DSCN0787.JPG View File

Before After
Width: 800  |  Height: 600  |  Size: 138 KiB

BIN
DSCN1278.JPG View File

Before After
Width: 800  |  Height: 600  |  Size: 178 KiB

+ 1
- 1
about.html View File

@ -38,7 +38,7 @@ When troubleshooting this do the following:
<body bgcolor="#0a0a0a" link="grey">
<pre><font color="#fafafa"><p>
Steak Electronics is a carnivore run business which focuses on Electronics contracting and IT Services.
Steak Electronics is an Electronics contracting and IT Services firm.
<!--"Try Steak"-->

+ 104
- 0
archive/old_index_20200406.html View File

@ -0,0 +1,104 @@
<html>
<head>
<title>Steak Electronics: Electronics and IT Services</title>
<style type="text/css">
@font-face {
font-family: 'ebfont';
src: url('http://steakelectronics.com/apple_kid.ttf') format('truetype');
font-weight: normal;
font-style: normal;}
p {
font-family: 'ebfont';
font-size: 23px;
}
</style>
<!-- A few comments about embedding fonts.
these two lines here (weight, style) in font face are necessary
They must be in fontface, and not needed in paragraph
fontface works in paragraph but not in body
no matter how you try to make it work, it will NOT work in my firefox.
but paragraph tag works.
@font-face is very poorly implemented in firefox is what I found. My notes above show subtle
changes that were required, OUTSIDE of the examples. I did not test other browsers.
different firefox browsers give different results as well. A real disaster.
When troubleshooting this do the following:
- Use inspector / firebug for the following points
- Watch network to see if font downloaded
- Review console to see any error messages about font
- Review code to make sure it's not caching (disable caching if needed in inspector, settings)
If anyone is interested where this font came from it's the EBMain font (of course from Mother 2 aka Earthbound).
-->
</head>
<body bgcolor="#000000" link="grey">
<img width="450px" src="logo_fullsize.png">
<pre><font color="#fafafa"><p>Steak Electronics is an electronics and IT consulting firm located near Boston, MA.
<!--This company promotes Free and Open source software.-->
<!--"Try Steak"-->
<a href="http://steakelectronics.com/about.html">About</a>
<a href="https://blog.steakelectronics.com/">Blog</a>
<a href="https://git.steakelectronics.com/">Projects</a> Git repository. Public domain.
<a href="https://steakwiki.com/">Wiki</a>
<hr>
<!-- Pic of Day:
something like:
/etc/crontab
*/2 * * * * root cp $(find /picsofday/* -print | shuf | head -n 1) picofday.jpg > /dev/null 2>&1
-->
Featured Pictures:
<table>
<tr>
<td><img width="250px" src="picofday.jpg">
</td>
<td><img width="250px" src="picofday2.jpg">
</td>
<td><img width="250px" src="picofday3.jpg">
</td>
<td><img width="250px" src="picofday4.jpg">
</td>
</tr>
<tr>
<td><img width="250px" src="picofday5.jpg">
</td>
<td><img width="250px" src="picofday6.jpg">
</td>
<td><img width="250px" src="picofday7.jpg">
</td>
<td><img width="250px" src="picofday8.jpg">
</td>
</tr>
</table>
<!--
<img width="450px" src="picofday.jpg">
<img width="450px" src="picofday2.jpg">
<img width="450px" src="picofday3.jpg">
<img width="450px" src="picofday4.jpg">
<img width="450px" src="picofday5.jpg">
<img width="450px" src="picofday6.jpg">
<img width="450px" src="picofday7.jpg">
<img width="450px" src="picofday8.jpg">
-->
</p>
</font>
</pre>
</body>
</html>
<!-- TODO: Need to have outline of fish, bulls head, or deer, change randomly on homepage -->
<!-- TODO: Need to have some other random input from outside here. -->

+ 101
- 0
archive/old_index_20200406b.html View File

@ -0,0 +1,101 @@
<html>
<head>
<title>Steak Electronics: Electronics and IT Services</title>
<style type="text/css">
@font-face {
font-family: 'ebfont';
src: url('http://steakelectronics.com/apple_kid.ttf') format('truetype');
font-weight: normal;
font-style: normal;}
p {
font-family: 'ebfont';
font-size: 23px;
}
</style>
<!-- A few comments about embedding fonts.
these two lines here (weight, style) in font face are necessary
They must be in fontface, and not needed in paragraph
fontface works in paragraph but not in body
no matter how you try to make it work, it will NOT work in my firefox.
but paragraph tag works.
@font-face is very poorly implemented in firefox is what I found. My notes above show subtle
changes that were required, OUTSIDE of the examples. I did not test other browsers.
different firefox browsers give different results as well. A real disaster.
When troubleshooting this do the following:
- Use inspector / firebug for the following points
- Watch network to see if font downloaded
- Review console to see any error messages about font
- Review code to make sure it's not caching (disable caching if needed in inspector, settings)
If anyone is interested where this font came from it's the EBMain font (of course from Mother 2 aka Earthbound).
-->
</head>
<body bgcolor="#000000" link="grey">
<img width="450px" src="logo_fullsize.png">
<pre><font color="#fafafa"><p>Steak Electronics is an electronics and IT consulting firm located near Boston, MA.
<!--This company promotes Free and Open source software.-->
<!--"Try Steak"-->
<a href="http://steakelectronics.com/about.html">About</a>
<a href="https://blog.steakelectronics.com/">Blog</a>
<a href="https://git.steakelectronics.com/">Projects</a> Git repository. Public domain.
<a href="https://steakwiki.com/">Wiki</a>
<hr>
<!-- Pic of Day:
something like:
/etc/crontab
*/2 * * * * root cp $(find /picsofday/* -print | shuf | head -n 1) picofday.jpg > /dev/null 2>&1
-->
Featured Pictures:
<!--minimalist inline css, because complex css sheets are messy -->
<div style="position: relative; z-index: 1;"> <!-- relative with absolute child (css - fundamental) -->
<div style="background-image: url('logo_fullsize.png'); position: absolute; top: 100px; left: 200px; width:703px; height: 581px; z-index: 5;">
</div>
<table>
<tr>
<td><img width="250px" src="picofday.jpg"></td>
<td><img width="250px" src="picofday2.jpg"></td>
<td><img width="250px" src="picofday3.jpg"></td>
<td><img width="250px" src="picofday4.jpg"></td>
</tr>
<tr>
<td><img width="250px" src="picofday5.jpg"></td>
<td><img width="250px" src="picofday6.jpg"></td>
<td><img width="250px" src="picofday7.jpg"></td>
<td><img width="250px" src="picofday8.jpg"></td>
</tr>
</table>
</div>
<!--
<img width="450px" src="picofday.jpg">
<img width="450px" src="picofday2.jpg">
<img width="450px" src="picofday3.jpg">
<img width="450px" src="picofday4.jpg">
<img width="450px" src="picofday5.jpg">
<img width="450px" src="picofday6.jpg">
<img width="450px" src="picofday7.jpg">
<img width="450px" src="picofday8.jpg">
-->
</p>
</font>
</pre>
</body>
</html>
<!-- TODO: Need to have outline of fish, bulls head, or deer, change randomly on homepage -->
<!-- TODO: Need to have some other random input from outside here. -->

BIN
books/steakelectronics_2018_2019.pdf View File


+ 42
- 19
index.html View File

@ -1,6 +1,6 @@
<html>
<head>
<title>Steak Electronics: Steaky Steak Steak</title>
<title>Steak Electronics: Electronics and IT Services</title>
<style type="text/css">
@font-face {
@ -40,33 +40,56 @@ If anyone is interested where this font came from it's the EBMain font (of cours
<body bgcolor="#000000" link="grey">
<img width="450px" src="logo3.jpg">
<!--minimalist inline css, because complex css sheets are messy -->
<div style="position: relative; z-index: 1;"> <!-- relative with absolute child (css - fundamental) -->
<div style="background-image: url('logo_fullsize.png'); position: absolute; top: 20px; left: 35px; width:703px; height: 450px; z-index: 5;">
</div>
<table>
<tr>
<td><img width="180px" src="picofday.jpg"></td>
<td><img width="180px" src="picofday2.jpg"></td>
<td><img width="180px" src="picofday3.jpg"></td>
<td><img width="180px" src="picofday4.jpg"></td>
</tr>
<tr>
<td><img width="180px" src="picofday5.jpg"></td>
<td><img width="180px" src="picofday6.jpg"></td>
<td><img width="180px" src="picofday7.jpg"></td>
<td><img width="180px" src="picofday8.jpg"></td>
</tr>
</table>
</div>
<!-- Pic of Day:
something like:
/etc/crontab
*/2 * * * * root cp $(find /picsofday/* -print | shuf | head -n 1) picofday.jpg > /dev/null 2>&1
-->
<pre>
<pre><font color="#fafafa"><p>Steak Electronics is an electronics and IT consulting firm located near Boston, MA.
This company promotes Free and Open source software.
<!--"Try Steak"-->
<a href="http://steakelectronics.com/about.html">About</a>
<a href="https://blog.steakelectronics.com/">Blog</a> (Temporarily down)
Contact me at website/at/steakelectronics/dot/com
<a href="https://git.steakelectronics.com/">Documentation</a> Git repository. Public domain.
Extras (Coming soon)
<hr>
Featured Pic of the Day:
<img width="450px" src="picofday.jpg">
Folks, gather around, and behold,
The future of electronics, and all metal...
I present to you - RUST.
<font color="#fafafa"><p>Steak Electronics is an electronics and IT consulting firm located near Boston, MA.<!--This company promotes Free and Open source software.-->
<!--"Try Steak"-->
<a href="http://steakelectronics.com/about.html">About</a> <a href="https://git.steakelectronics.com/">Projects</a> Git repository. Public domain.
<a href="https://blog.steakelectronics.com/">Blog</a> <a href="https://steakwiki.com/">Wiki</a>
<!-- <a href="https://git.steakelectronics.com/">Projects</a> Git repository. Public domain.
<a href="https://steakwiki.com/">Wiki</a> -->
</p>
</font>
</pre>
</body>
</html>
<!-- TODO: Need to have outline of fish, bulls head, or deer, change randomly on homepage -->
<!-- TODO: Need to have some other random input from outside here. -->
<!-- DONE 4/2020: Need to have outline of fish, bulls head, or deer, change randomly on homepage -->
<!-- TODO: Need to have some other random input from outside here. Sensors for example -->

BIN
logo3.jpg_BAK View File

Before After
Width: 703  |  Height: 581  |  Size: 30 KiB

BIN
logo4.png View File

Before After
Width: 180  |  Height: 149  |  Size: 15 KiB

BIN
logo_fullsize.png View File

Before After
Width: 703  |  Height: 581  |  Size: 94 KiB

BIN
picofday.jpg View File

Before After
Width: 800  |  Height: 600  |  Size: 147 KiB Width: 800  |  Height: 600  |  Size: 118 KiB

BIN
picofday2.jpg View File

Before After
Width: 800  |  Height: 600  |  Size: 138 KiB

BIN
picofday3.jpg View File

Before After
Width: 800  |  Height: 600  |  Size: 148 KiB

BIN
picofday4.jpg View File

Before After
Width: 800  |  Height: 600  |  Size: 166 KiB

BIN
picofday5.jpg View File

Before After
Width: 800  |  Height: 600  |  Size: 81 KiB

BIN
picofday6.jpg View File

Before After
Width: 1000  |  Height: 750  |  Size: 169 KiB

BIN
picofday7.jpg View File

Before After
Width: 800  |  Height: 600  |  Size: 142 KiB

BIN
picofday8.jpg View File

Before After
Width: 800  |  Height: 600  |  Size: 123 KiB

Loading…
Cancel
Save