forked from interclip/interclip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
94 lines (79 loc) · 5.21 KB
/
about.php
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<html>
<head>
<title>About | Interclip</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" href="./css/about.css">
<link rel="stylesheet" href="./css/dark.css" media="(prefers-color-scheme: dark)">
<link rel='stylesheet' type='text/css' href='//code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css' />
</head>
<div class="nav">
<?php
include "includes/menu.php";
?>
</div>
<br>
<body>
<div class="center">
<h1>About Interclip</h1>
<div id="repoInfo">
Read the <a href="https://aperta-principium.github.io/Interclip/">Documentation</a>
<br />
Current release: <span id="version"></span>
<br />
Latest commit: <span id="commit"></span>
</div>
<p>From <a href="https://dev.to/filiptronicek/interclip-2hcn/"> the article</a> on <a href="https://dev.to">dev.to </a></p>
<p>
<p>Hi devs,
I want to ask you a question: Do you use the same operating system and tools for everything you do at work (or home)? If your answer is yes, well, then there's nothing to worry about but if not, a tool I made may come in handy.
You probably use a deployment tool for your work (if you do web development), or you have a documentation website which you want to read on your computer. For both of those things (and anything else URL related), you can use Interclip. </p>
<h2 id="what-is-interclip-">What is Interclip?</h2>
<p>Interclip is a modern solution for sharing URLs with yourself or someone else. You probably share URLs by just emailing them to yourself, right? Think about it. Isn't this just like... dumb? Filling your inbox and taking so much time is just nonsense. If you use Interclip, you can just paste a URL and get back a five-digit randomly generated code. This code you can then input on your other device (doesn't even have to be yours) and get the URL back.</p>
<h2 id="don-t-know-where-to-host-a-file-interclip-can-also-help">Don't know where to host a file? Interclip can also help</h2>
<p>Interclip is not just about URLs, but also about files. Any file smaller than 100 MB can be uploaded to Interclip and never be deleted. So you can host anything because there's also no file-type limitation. Also, every file is encrypted so no-one else will be able to see it.</p>
<h2 id="api-of-course-we-do">API? Of course we do</h2>
<p>There's also a very simple API for developers to use. Check the documentation for details.</p>
<h2 id="open-source">Open Source</h2>
<p>The entirety of Interclip is open source. I am working on it just by myself now so any contributions are welcome! And if you're not really into web-development or you don't have the time, a star on GitHub would be very appreciated. </p>
<p>The APP: <a href="http://uni.hys.cz">uni.hys.cz</a>
Github repo: <a href="https://github.com/aperta-principium/Interclip">aperta-principium/Interclip</a></p>
<p>Thanks for reading. Happy developing!</p>
<p>
<img src="https://user-images.githubusercontent.com/29888641/62826686-faa86b80-bbbf-11e9-81db-c7e321eaf2e4.png" alt="image">
<img src="https://user-images.githubusercontent.com/29888641/62826693-127fef80-bbc0-11e9-95fe-300241e31397.png" alt="image">
<img src="https://user-images.githubusercontent.com/29888641/62826696-24619280-bbc0-11e9-81d1-e99c1c37e0d1.png" alt="image">
<img src="https://user-images.githubusercontent.com/29888641/62826699-36433580-bbc0-11e9-925b-00c7f0e4e8f4.png" alt="image">
<img src="https://user-images.githubusercontent.com/29888641/62826703-4e1ab980-bbc0-11e9-9bc1-eb102f8059fa.png" alt="image">
<img src="https://user-images.githubusercontent.com/29888641/62826710-6094f300-bbc0-11e9-8511-59d12efb8618.png" alt="image">
</p>
</p>
</div>
<!-- Compiled and minified JavaScript -->
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="js/about.js"></script>
<style>
@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');
.madeBy {
font-family: 'Open Sans', cursive;
text-transform: uppercase;
font-size: 1.2rem;
}
.madeBy>span>a {
font-weight: 600;
color: black;
text-decoration: none;
}
.madeBy>span>a>img {
border-radius: 250px;
width: 25px;
}
</style>
<div class='madeBy center'>
made with <i class="icon ion-heart"></i> and a little bit of code by
<span><a href="https://github.com/filiptronicek"><img src="http://github.com/filiptronicek.png"></a></span></div>
</body>
</html>