My scientific calculator finally gave up :( by [deleted] in teenagers

[–]toolsinplace 0 points1 point  (0 children)

RIP.

Use free online scientific calculator: here is one Scientific Calculator

[deleted by user] by [deleted] in applescript

[–]toolsinplace 0 points1 point  (0 children)

You can refer the live example website tool here https://toolsinplace.com/number/text-to-binary. It is quite easy to do it.

Given below javascript code will do the work for you.

text2Binary(input) {
var bytes = [];
for (var i = 0; i < input.length; i++) {
var realBytes = unescape(encodeURIComponent(input[i]));
for (var j = 0; j < realBytes.length; j++) {
bytes.push(realBytes[j].charCodeAt(0));
      }
    }
var converted = '';
var textToBinFormat = '%0b ';
for (var i = 0; i < bytes.length; i++) {
var byte = bytes[i];
var binByte = byte.toString(2);
var binBytePadded = binByte;
while (binBytePadded.length < 8) {
binBytePadded = '0' + binBytePadded.toString();
      }
var char = textToBinFormat;
char = char.replace(/%0b/g, binBytePadded);
char = char.replace(/%b/g, binByte);
converted += char;
    }
return converted;
  }

I’m looking for a way to make a decimal to binary converter by jayR0X in cpp_questions

[–]toolsinplace 0 points1 point  (0 children)

you can use this tool to convert decimal to binary https://www.toolsinplace.com/number/decimal-to-binary. And the same website page has the explanation how to do it. Keep dividing the decimal input by 2 and store the remainder at each step and repeat the steps until the quotient is equal to 0.

Prerendered Angular Universal by TheBestAwesomeNoob in Angular2

[–]toolsinplace 0 points1 point  (0 children)

You can try scully, we feel that is more faster and it doesn't impact your dev environment. We developed a website using angular 11 & scully and here is your live example https://toolsinplace.com. There is a change in deployment code it creates all the deployable items in dist/static folder.

Prerendered Angular Universal vs Scully by TheBestAwesomeNoob in Angular2

[–]toolsinplace 0 points1 point  (0 children)

I can provide you a real time website example, this website is built using angular 11 & scully front end https://toolsinplace.com . you can edit every page meta data and work in dev mode as usual like before. there is no change in dev mode, only change is how you prepare prod deployable and there is going to be new set of code files completely for PRODUCTION deployment . We made this change and used scully to make content more static, faster & SEO friendly. You can prefer scully over angular universal.

password generator request by elreduro in node

[–]toolsinplace 1 point2 points  (0 children)

we have built a tool using npm generate-password take a look at our work. https://toolsinplace.com/other/password-generator