I find it pretty cool. Some feedback: I tried to convert m/s in km/h and it wouldn't works, finally found how to do it, you need to specify `hour` in full letters I assumed it was something like an etherpad that you could edit collaboratively but apparently not
Show HN: I made a web-based notepad with a built in unit calculator
231–240 of 246 posts
Re: Show HN: I made a web-based notepad with a built in unit calculator
#232Earlier quoted context omitted.
Yeah, honestly this has been annoying me too, I just haven't got around to fixing it. It's using CodeMirror 6 as the editor, the author said he deliberately made this version not "break" the default tab behaviour, which I think is understandable as a library author, but that makes it my job to fix!
To save you some time, here is what I did to add tabs to CM 6 (I think I found it somewhere or I may have cobbled it together to insert two spaces): First import things you need: import { indentMore, indentLess } from "@codemirror/commands" Then create a command: export const insertTab: StateCommand = ({state, dispatch}) => { if (state.selection.ranges.some(r => !r.empty)) return indentMore({state, dispatch}) dispatc…
Re: Show HN: I made a web-based notepad with a built in unit calculator
#2331=2 1+1 // = 4 Really nice project though https://numpad.io?#text/IwXgTAUMDUxA
Re: Show HN: I made a web-based notepad with a built in unit calculator
#234Hey, great tool! Just a little bug: I found that if I click a number to copy, then click it again, I'll get the original string in my clipboard concatenated with " Copied!"
Re: Show HN: I made a web-based notepad with a built in unit calculator
#235Earlier quoted context omitted.
Just when I thought I understood the MIT license, I'm back to confused. Can you link me to where this is clearly outlined? Do you need to attribute somewhere in artifacts or not?
Not sure what you want. A link where this is clearly outlined? The license is two sentences and sets out the terms. The repeated distinction between source code and "artifacts" in this context is pure make-believe. The license doesn't even have those words in it, let alone say something like " Redistribution and use in source form requires inclusion of this permission notice and the above copyright notice, but if you…
And this was my understanding of how it works for artifacts. You don't have to attribute in the software itself, just the code.
Re: Show HN: I made a web-based notepad with a built in unit calculator
#236I have a side project slightly similar to the functionality your tool offers focused on expense tracking (or other measures) over time, adding date parsing to the equation in order to plot metrics into a graph and with tags and locations for filtering.
I'm (slowly) working on something that can eat up PSD2 data from banks and parse it into some usable data, but I'm bad at nicely presenting stuff. It would be great to see your tool and get some inspiration, or maybe even use it.
I've been thinking of ways to parser phone screenshots with payment data or use bank APIs to add data to my expense tracker, as opposed to adding everything manually, which is the best way I've found for consistency and to make sure everything is properly formatted.
I didn't know about PSD2. Do you have any links or references for me to look at?
Re: Show HN: I made a web-based notepad with a built in unit calculator
#237I have a side project slightly similar to the functionality your tool offers focused on expense tracking (or other measures) over time, adding date parsing to the equation in order to plot metrics into a graph and with tags and locations for filtering.
Nice! Can you send a link or is it still in development?
It's still in development. I built a proof-of-concept from scratch almost a year ago, which I just open-sourced at the following link.
https://github.com/nonoesp/note-parser
I intend to develop it a bit more and host it online.
A previous prototype, really barebones, is at https://expensed.me.
The idea is to drag and drop (or type) a plain-text note and visualize the data as a scatterplot or other charts.
Re: Show HN: I made a web-based notepad with a built in unit calculator
#238Earlier quoted context omitted.
Not sure what you want. A link where this is clearly outlined? The license is two sentences and sets out the terms. The repeated distinction between source code and "artifacts" in this context is pure make-believe. The license doesn't even have those words in it, let alone say something like " Redistribution and use in source form requires inclusion of this permission notice and the above copyright notice, but if you…
Well, there's tons of conflicting advice out there if that's the case. Top result on DDG links through to this answer: https://opensource.stackexchange.com/questions/5828/where-wo... And this was my understanding of how it works for artifacts. You don't have to attribute in the software itself, just the code.
Re: Show HN: I made a web-based notepad with a built in unit calculator
#239Earlier quoted context omitted.
Well, there's tons of conflicting advice out there if that's the case. Top result on DDG links through to this answer: https://opensource.stackexchange.com/questions/5828/where-wo... And this was my understanding of how it works for artifacts. You don't have to attribute in the software itself, just the code.
You get it that you're proving the point that comments like those are harmful, right?
Not sure if you were referring directly to me, but I don't think my comment was harmful. Others may have also been led astray and an exchange like this might be educational for them to read.
Re: Show HN: I made a web-based notepad with a built in unit calculator
#240Earlier quoted context omitted.
Just when I thought I understood the MIT license, I'm back to confused. Can you link me to where this is clearly outlined? Do you need to attribute somewhere in artifacts or not?
MIT makes no distinction between source and artifacts. The requirement to include a notice stems from any distribution of the software. https://opensource.org/licenses/MIT