Live data from Hacker News

Ask HN: What kind of side projects are you working on?

news.ycombinator.com

51–60 of 128 posts

Re: Ask HN: What kind of side projects are you working on?

#51
A personal automated email sender, using vars and conditional statements (Eg. Multiple languages are possible, we live in a country where most of them speak: french, dutch, german or english, so that's a big + over here).

Create a poll (or mail) and mail them to clients when you sold for > 1000 € should be an option :)

It's actually meant to get feedback (automated) from clients with a more personal touch or to follow up on a sale of 1 month ago (how the car is, ...)

Re: Ask HN: What kind of side projects are you working on?

#52
A simple CSS/JS library recreating the Windows 8 Modal. Still working on tablet/mobile support (which im pretty sure is just a css style cursor: pointer;)

http://ace-subido.github.io/windows8-metro-modal

Another side project I'm currently in the process of designing:

Personal Problem: Me and my wife have some folders with so many random files. Too troublesome and time consuming maintaining it to be clean and organized. Pictures should be in a specific folder, installers in another one, etc. an example is the "Downloads Folder"

Solution: A small command-line utility that organizes a folder on where it runs from. This small command-line tool has only one parameter: a JSON file that contains "Rules" on what it will do on specific files. ex: .mp3's should be placed on a folder, .docs on another, etc. And so on and so forth. It could also come as an "installable" service/daemon that watches over folders. Still learning more about Scala, it's used in where I work, may write this command-line tool in that language for educational purposes.

Re: Ask HN: What kind of side projects are you working on?

#54
post #21

I made embedding transcoded videos as simple as using the tag --> http://transcode.io Working on the production version atm.

I hate to be the guy who points this out, but heads up--you have an extra apostrophe in "its" on the front page. Normally I'd keep quiet, but since it's your headline...

Re: Ask HN: What kind of side projects are you working on?

#55
post #54
post #21

I made embedding transcoded videos as simple as using the tag --> http://transcode.io Working on the production version atm.

I hate to be the guy who points this out, but heads up--you have an extra apostrophe in "its" on the front page. Normally I'd keep quiet, but since it's your headline...

Didn't get it, what are you talking about?

Re: Ask HN: What kind of side projects are you working on?

#56

A simple CSS/JS library recreating the Windows 8 Modal. Still working on tablet/mobile support (which im pretty sure is just a css style cursor: pointer;) http://ace-subido.github.io/windows8-metro-modal Another side project I'm currently in the process of designing: Personal Problem: Me and my wife have some folders with so many random files. Too troublesome and time consuming maintaining it to be clean and organize…

A simple script (in linux, windows or whatever) could do that no problem. In fact, I'm pretty sure something like:

find -iname ".txt" -exec mv -v {} /home/user \;

or

mv .mp3 /whatever/folder/youd/like mv .jpg /repeat/as/many/times/as/needed

would work. Is this what you had in mind? Hope I'm not way off base here.

EDIT: for some reason Hacker News edited out my asterisks and the letters within are displayed as italics. Curious.

Re: Ask HN: What kind of side projects are you working on?

#59
post #56

A simple CSS/JS library recreating the Windows 8 Modal. Still working on tablet/mobile support (which im pretty sure is just a css style cursor: pointer;) http://ace-subido.github.io/windows8-metro-modal Another side project I'm currently in the process of designing: Personal Problem: Me and my wife have some folders with so many random files. Too troublesome and time consuming maintaining it to be clean and organize…

A simple script (in linux, windows or whatever) could do that no problem. In fact, I'm pretty sure something like: find -iname " .txt " -exec mv -v {} /home/user \; or mv .mp3 /whatever/folder/youd/like mv .jpg /repeat/as/many/times/as/needed would work. Is this what you had in mind? Hope I'm not way off base here. EDIT: for some reason Hacker News edited out my asterisks and the letters within are displayed as itali…

Yep exactly! I know that it could be done via bash or a batch file. I just wanted to solve this usual problem with a simple project that also allows me to learn more about Scala since it's used at where I work.
Post reply on HN