P
P
pushbot2015-04-24 12:43:55
Skype
pushbot, 2015-04-24 12:43:55

Is there a service for beautiful design of messages from icq/skype logs?

There is a long Skype text log, in the form
[11:20:00] XXX: hello
[11:20:05] YYY: hello
[11:20:08] XXX: how are you?
...
Is there such an online service, by uploading this log into which the output will be a beautifully designed correspondence?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
P
Puma Thailand, 2015-04-24
@opium

It's easier to write yourself.

M
Moskus, 2015-04-29
@Moskus

Neither "service" nor "program" is needed for this.
In five minutes, in any text editor that supports regular expression search and replace, you can mark up this log in HTML. If regex support is good, you can do it in one pass (and save the pattern for later). For example, like this:

<div class="a"><date>[11:20:00]</date><em>XXX</em><p>привет</p></div>
<div class="b"><date>[11:20:05]</date><em>YYY</em><p>привет</p></div>
<div class="a"><date>[11:20:08]</date><em>XXX</em><p>как дела?</p></div>

Then, in a little time (which will depend on how complex the formatting needs to be), you can throw in the CSS for this.
div {display:block;
width: 80%;
border-radius:10px;
border-width:1px;
padding:10px;
margin:5px;
border-style:solid;
}
.a {background-color: #89FFA1;
float:right;
border-color:#3FA346;
}
.b {background-color: #89DBFF;
float:left;
border-color: #3F85A3;
}

And then - throw on any static hosting.
The solution is a little artisanal, but the method is perfectly working and does not require gigantic effort.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question