TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Show HN: Online web tools to get your work done faster

118 pointsby eashish93over 7 years ago

13 comments

headcanonover 7 years ago
I'm curious, who here has a development workflow such that compressing/minifying code via an ad-hoc web tool makes sense? I've always just included it as part of a build process, or at the very least would pipe it into uglifyjs command line. I'm sure everyone's got their own needs but I just don't understand how that would be useful.
评论 #16306606 未加载
评论 #16306326 未加载
评论 #16306670 未加载
taspeotisover 7 years ago
Anybody interested in this might be interested in CyberChef [1].<p>[1] <a href="https:&#x2F;&#x2F;gchq.github.io&#x2F;CyberChef&#x2F;" rel="nofollow">https:&#x2F;&#x2F;gchq.github.io&#x2F;CyberChef&#x2F;</a>
评论 #16305968 未加载
eashish93over 7 years ago
Current list of tools: html, css, js compressor, image to base64, json to csv, csv to json, OCR Reader, unzipper (browser only). Built with react.js (next.js framework) and node.js. Uses some open source packages.
评论 #16305977 未加载
fermienricoover 7 years ago
I very much love the simple design. Excellent. Please add a favicon generator!
chrismorganover 7 years ago
What is the HTML compressor using? It’s missing quite a few opportunities.<p>Take this input HTML:<p><pre><code> &lt;!doctype html&gt; &lt;html lang=&quot;en-au&quot;&gt; &lt;head&gt; &lt;meta charset=&quot;utf-8&quot;&gt; &lt;title&gt;This is a title&lt;&#x2F;title&gt; &lt;&#x2F;head&gt; &lt;body class=&quot;foo&quot;&gt; &lt;h1&gt;Well.&lt;&#x2F;h1&gt; &lt;p&gt;I wonder…&lt;&#x2F;p&gt; &lt;&#x2F;body&gt; &lt;&#x2F;html&gt; </code></pre> It produces this output:<p><pre><code> &lt;!DOCTYPE html&gt;&lt;html lang=&quot;en-au&quot;&gt;&lt;head&gt;&lt;meta charset=&quot;utf-8&quot;&gt;&lt;title&gt;This is a title&lt;&#x2F;title&gt;&lt;&#x2F;head&gt;&lt;body class=&quot;foo&quot;&gt;&lt;h1&gt;Well.&lt;&#x2F;h1&gt;&lt;p&gt;I wonder…&lt;&#x2F;p&gt;&lt;&#x2F;body&gt;&lt;&#x2F;html&gt; </code></pre> It converted “doctype” to uppercase (equivalent, but bad for compression). It didn’t strip &lt;head&gt; and &lt;&#x2F;head&gt; as superfluous. It didn’t remove unnecessary quotes around attribute values. It didn’t remove the unnecessary &lt;&#x2F;p&gt;&lt;&#x2F;body&gt;&lt;&#x2F;html&gt; closing tags.<p>Here’s what I say it should have emitted:<p><pre><code> &lt;!doctype html&gt;&lt;html lang=en-au&gt;&lt;meta charset=utf-8&gt;&lt;title&gt;This is a title&lt;&#x2F;title&gt;&lt;body class=foo&gt;&lt;h1&gt;Well.&lt;&#x2F;h1&gt;&lt;p&gt;I wonder… </code></pre> 30 characters shorter, and structurally equivalent.
评论 #16306597 未加载
fvargasover 7 years ago
Looks neat! My one critique is the Contact Us link. I find unexpected mailto: links annoying because they cause my desktop mail client (which I don&#x27;t use) to open unexpectedly when I&#x27;m expecting to be taken to a page, in this case a Contact Us page.
评论 #16306221 未加载
rchrd2over 7 years ago
Feature request: url encoder&#x2F;decoder
notrootover 7 years ago
maybe it&#x27;s just me but i feel like using of any of these &quot;tools&quot; would slow me down when compared to using the equivalent shell-foo or a language built-in&#x2F;library.<p>also seems like a terribly brittle externality to add to my life
评论 #16314623 未加载
slackoverflowerover 7 years ago
What is your privacy policy with the data people give you to use your FREE tools?
评论 #16305981 未加载
dandareover 7 years ago
In my bookmarks I have HTML encode&#x2F;decode and URL encode&#x2F;decode. Have you considered creating a single input and single output field with different buttons around?
reimertzover 7 years ago
Nice work! Looking forward to see what tools you&#x27;ll add to the site in the coming future.
siquickover 7 years ago
This is great, would love a way of being notified when you add new tools.
beefinethanover 7 years ago
add a json validator!
评论 #16306292 未加载