1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>Spragg Software Services Ltd.</title>
<link rel="stylesheet" href="/style/main.css" />
<!--
Hi there. Nice to see you here. Feel free to have a look around. Also check out the /about page
while you're at it. It's got a little bit more info about the site and the resources used.
-->
</head>
<body>
<header>
<h1>Spragg Software Services Ltd</h1>
<nav>
<ul>
<li class="selected"><a href="/">Home</a></li>
<li><a href="/projects">Projects</a></li>
<li><a href="/blog">Blog</a></li>
<li><a href="/privacy">Privacy</a></li>
<li><a href="/contact">Contact</a></li>
<!--li><a href="/about">About</a></li-->
</ul>
</nav>
</header>
<main>
<h2><img src="/img/icons/Faenza/mimetypes/32/text-x-source.png" alt="•" /> Software customisation</h2>
<p>Sometimes a software package does 99% of the things you need it to do, but if it just did
<em>one</em> thing slightly differently, it would save you a lot of time, or make you
a lot more productive.
Some software, especially (but not only)
<a href="https://www.gnu.org/philosophy/free-sw.html">Free Software</a>, is made with
customisability, or even just extensibility, in mind.
It's possible that your software could be customised to fit your needs better.</p>
<h2><img src="/img/icons/Faenza/categories/32/preferences-desktop.png" alt="•" /> Software configuration</h2>
<p>Sometimes software <em>can</em> can do the thing you need it to do, but <em>making</em> it
do that thing can be poorly documented or even just spectacularly non-obvious.</p>
<h2><img src="/img/icons/Faenza/mimetypes/32/text-x-install.png" alt="•" /> Software installation</h2>
<p>Sometimes, just getting software installed correctly can be a battle.
In those cases, just figuring out what the issue is can be a struggle.</p>
<h2><img src="/img/icons/Faenza/mimetypes/32/text-x-script.png" alt="•" /> Custom automation</h2>
<p>Sometimes you've got two software packages that do exactly what they're supposed to do,
but they don't talk to each other.
Maybe that manual procedure you have to repeat again and again to get data from one
place to another could be automated.</p>
<h2><img src="/img/icons/Faenza/categories/32/applications-development.png" alt="•" /> Tech troubleshooting</h2>
<!--
src="/img/icons/Faenza/categories/32/applications-system.png"
src="/img/icons/Faenza/apps/32/utilities-system-monitor.png"
src="/img/icons/Faenza/apps/32/logviewer.png"
-->
<p>Sometimes tech just plays up, doesn't do what it's supposed to, or stops doing what it used
to do for no apparent reason.</p>
<h2><img src="/img/icons/Faenza/mimetypes/32/message.png" alt="•" /> Who you gonna... uh, email?</h2>
<p><a href="mailto:adam@spragg-ssl.co.uk">Drop me a line</a>, and I'll let you know if I think I
can help.
My expertise is mostly with Linux- and other Free-Software-based systems, but I might be
able to lend a hand with other platforms too.</p>
</main>
<footer>
<hr />
<p>Spragg Software Services Ltd is registered in England, No. 11248242.
Registered office: 82 Upper Hanover Street, Sheffield, S3 7RQ.
VAT reg No. 295343283.</p>
</footer>
</body>
</html>
|