├── src ├── lib │ ├── helpers.js │ ├── Copy.svelte │ └── CountrySelector.svelte ├── routes │ ├── (tools) │ │ ├── watermark-pdf │ │ │ ├── meta.json │ │ │ └── +page.svelte │ │ ├── .blank │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── color-tools │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── css-toolkit │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── list-toolkit │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── text-toolkit │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── camera-recorder-2 │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── camera-recorder │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── flowchart-maker │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── font-pairing-tool │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── health-calculator │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── integer-toolkit-2 │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── integer-toolkit │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── markdown-tool │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── remove-unused-css │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── code-comparison-tool │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── email-header-analyzer │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── multi-timer-with-alarm │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── readibility-calculator │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── svg-shape-generator-2 │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── svg-shape-generator │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── virtual-graph-paper │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── color-blindness-simulator-2 │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── color-blindness-simulator │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── css-clip-path-generator │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── keyword-density-checker │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── metatag-checker-generator │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── svg-placeholder-generator │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── wordpress-theme-detector │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── youtube-thumbnail-grabber │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── css-background-pattern-generator │ │ │ ├── +page.svelte │ │ │ └── meta.json │ │ ├── gradient-generator │ │ │ └── meta.json │ │ ├── random-data-generator │ │ │ ├── meta.json │ │ │ ├── dataConverter.js │ │ │ ├── generate.js │ │ │ ├── Field.svelte │ │ │ ├── store.js │ │ │ └── +page.svelte │ │ ├── annuity-payout-calculator │ │ │ ├── meta.json │ │ │ └── +page.svelte │ │ ├── file-converter │ │ │ ├── meta.json │ │ │ └── +page.svelte │ │ ├── advice-generator │ │ │ ├── meta.json │ │ │ └── +page.svelte │ │ ├── device-details │ │ │ ├── meta.json │ │ │ └── +page.svelte │ │ ├── random-image-generator │ │ │ ├── meta.json │ │ │ └── +page.svelte │ │ ├── image-base64-encode │ │ │ ├── meta.json │ │ │ └── +page.svelte │ │ ├── add-prefix-suffix │ │ │ ├── meta.json │ │ │ └── +page.svelte │ │ ├── image-base64-decode │ │ │ ├── meta.json │ │ │ └── +page.svelte │ │ ├── image-color-picker │ │ │ ├── meta.json │ │ │ └── +page.svelte │ │ ├── pomodoro │ │ │ ├── meta.json │ │ │ └── +page.svelte │ │ ├── living-background-generator │ │ │ └── meta.json │ │ ├── css-animator │ │ │ └── meta.json │ │ ├── password-generator │ │ │ ├── meta.json │ │ │ └── +page.svelte │ │ ├── lorem-ipsum-generator │ │ │ ├── meta.json │ │ │ └── +page.svelte │ │ ├── robots-txt-generator │ │ │ ├── meta.json │ │ │ └── +page.svelte │ │ ├── screen-video-recorder │ │ │ ├── meta.json │ │ │ └── +page.svelte │ │ ├── whatsapp-api-generator │ │ │ ├── meta.json │ │ │ └── +page.svelte │ │ ├── neumorphism-generator │ │ │ ├── meta.json │ │ │ └── +page.svelte │ │ ├── base64-encode-decode │ │ │ ├── meta.json │ │ │ └── +page.svelte │ │ ├── ascii-encode-decode │ │ │ ├── meta.json │ │ │ └── +page.svelte │ │ ├── website-links-count │ │ │ ├── meta.json │ │ │ └── +page.server.js │ │ ├── image-text-extractor │ │ │ ├── meta.json │ │ │ └── +page.svelte │ │ ├── api-tool │ │ │ ├── meta.json │ │ │ └── +page.svelte │ │ ├── binary-text-converter │ │ │ ├── meta.json │ │ │ └── +page.svelte │ │ ├── business-card-generator │ │ │ ├── meta.json │ │ │ ├── businessCard.svelte │ │ │ └── +page.svelte │ │ └── +layout.svelte │ ├── +layout.js │ ├── sitemap.xml │ │ └── +server.js │ ├── +page.svelte │ ├── contact │ │ └── +page.svelte │ ├── privacy-policy │ │ └── +page.svelte │ ├── +layout.svelte │ └── terms-and-conditions │ │ └── +page.svelte ├── app.d.ts ├── app.html └── app.pcss ├── .npmrc ├── static ├── copy.png ├── chain-ok.png ├── download.png ├── favicon.png ├── robots.txt ├── server-ok.png ├── setting.png ├── logoUpload.png ├── Texttospeech.png ├── color-palatte.png ├── flagSprite42.png ├── fonts │ ├── icomoon.eot │ ├── icomoon.ttf │ └── icomoon.woff ├── terminal-dark.png ├── terminal-light.png ├── quino-al-J1_1YigSUPA-unsplash.jpg ├── annie-spratt-MChSQHxGZrQ-unsplash.jpg ├── samples │ ├── file_example_AVI_480_750kB.avi │ └── file_example_AVI_640_800kB.avi ├── james-mcdonald-3d4sSUChunA-unsplash.jpg └── favicon.svg ├── platform-screenshot.png ├── postcss.config.cjs ├── vite.config.js ├── .gitignore ├── svelte.config.js ├── LICENSE ├── package.json ├── tailwind.config.cjs ├── generate-tools.js ├── README.md └── docs ├── CONTRIBUTING.md └── CODE_OF_CONDUCT.md /src/lib/helpers.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /static/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersurajsahani/devstar/HEAD/static/copy.png -------------------------------------------------------------------------------- /static/chain-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersurajsahani/devstar/HEAD/static/chain-ok.png -------------------------------------------------------------------------------- /static/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersurajsahani/devstar/HEAD/static/download.png -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersurajsahani/devstar/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | Sitemap: https://developerstar.com/sitemap.xml 4 | -------------------------------------------------------------------------------- /static/server-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersurajsahani/devstar/HEAD/static/server-ok.png -------------------------------------------------------------------------------- /static/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersurajsahani/devstar/HEAD/static/setting.png -------------------------------------------------------------------------------- /static/logoUpload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersurajsahani/devstar/HEAD/static/logoUpload.png -------------------------------------------------------------------------------- /platform-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersurajsahani/devstar/HEAD/platform-screenshot.png -------------------------------------------------------------------------------- /static/Texttospeech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersurajsahani/devstar/HEAD/static/Texttospeech.png -------------------------------------------------------------------------------- /static/color-palatte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersurajsahani/devstar/HEAD/static/color-palatte.png -------------------------------------------------------------------------------- /static/flagSprite42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersurajsahani/devstar/HEAD/static/flagSprite42.png -------------------------------------------------------------------------------- /static/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersurajsahani/devstar/HEAD/static/fonts/icomoon.eot -------------------------------------------------------------------------------- /static/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersurajsahani/devstar/HEAD/static/fonts/icomoon.ttf -------------------------------------------------------------------------------- /static/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersurajsahani/devstar/HEAD/static/fonts/icomoon.woff -------------------------------------------------------------------------------- /static/terminal-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersurajsahani/devstar/HEAD/static/terminal-dark.png -------------------------------------------------------------------------------- /static/terminal-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersurajsahani/devstar/HEAD/static/terminal-light.png -------------------------------------------------------------------------------- /static/quino-al-J1_1YigSUPA-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersurajsahani/devstar/HEAD/static/quino-al-J1_1YigSUPA-unsplash.jpg -------------------------------------------------------------------------------- /static/annie-spratt-MChSQHxGZrQ-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersurajsahani/devstar/HEAD/static/annie-spratt-MChSQHxGZrQ-unsplash.jpg -------------------------------------------------------------------------------- /static/samples/file_example_AVI_480_750kB.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersurajsahani/devstar/HEAD/static/samples/file_example_AVI_480_750kB.avi -------------------------------------------------------------------------------- /static/samples/file_example_AVI_640_800kB.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersurajsahani/devstar/HEAD/static/samples/file_example_AVI_640_800kB.avi -------------------------------------------------------------------------------- /static/james-mcdonald-3d4sSUChunA-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineersurajsahani/devstar/HEAD/static/james-mcdonald-3d4sSUChunA-unsplash.jpg -------------------------------------------------------------------------------- /src/routes/(tools)/watermark-pdf/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Watermark PDF", 3 | "description": "Add Text or Image as a watermark to the PDF document", 4 | "contributors": [] 5 | } -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- 1 | const tailwindcss = require('tailwindcss'); 2 | 3 | const config = { 4 | plugins: [ 5 | tailwindcss() 6 | ] 7 | }; 8 | 9 | module.exports = config; 10 | -------------------------------------------------------------------------------- /src/routes/(tools)/.blank/+page.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 |
20 | {data.meta.description} 21 |
22 |{title}
15 |Email: {email}
18 |Phone: {phone}
19 |Your BMI is: {bmi.toFixed(2)}
104 | {/if} 105 |22 | Maximize your efficiency and productivity as a developer with our free online developer toolkit. Experience the convenience of our user-friendly platform and unlock your full potential. 23 |
24 |{tool.description.length > 80 ? tool.description.substring(0, 80) + '...' : tool.description}
39 |46 | No Results Found 47 |
48 |49 | We couldn't find any matching tool 50 |
51 | Request this tool 52 |{formatTime(pomodoroTime)}
65 | 82 |18 | Let us know what you need and we will get back to you in no time. 19 |
20 |
98 | You can withdraw
99 | ${new Intl.NumberFormat('en-IN', { maximumSignificantDigits: 3 }).format((result))}
100 | {type}
101 | Total of {years*period}
102 | payments of
103 | ${new Intl.NumberFormat('en-IN', { maximumSignificantDigits: 3 }).format((totalAmountReceived))}
104 |
105 | Total Interest on Investment is ${new Intl.NumberFormat('en-IN', { maximumSignificantDigits: 3 }).format((totalInterestReceived))}
106 |
98 | {operatingSystem || ''} 99 | {osVersion || ''} 100 | {osArchitecture || ''} 101 |
102 | {/if} 103 | {#if item === 'Browser'} 104 |105 | {browserName || ''} 106 | {browserVersion || ''} 107 |
108 | {/if} 109 | {#if item === 'Browser Resolution'} 110 | {#if innerWidth || innerHeight} 111 |112 | {innerWidth} x {innerHeight} 113 |
114 | {/if} 115 | {/if} 116 | {#if item === 'Screen Resolution'} 117 | {#if screenWidth || screenHeight} 118 |119 | {screenWidth} x {screenHeight} 120 |
121 | {/if} 122 | {/if} 123 |7 | Read about the privacy policy for Flowbite. Have a question? Feel free to contact us and we will help you out. 8 |
9 |11 | Your privacy is important to Developerstar. This privacy statement provides information about the Personal Information that Developerstar collects and the ways in which Developerstar uses that Personal Information. 12 |
13 |15 | Developerstar may collect and use Personal Information about your use of this website, namely information about browsing and linking ("Personal Information"). 16 |
17 | 18 |19 | The Tools available on Developerstar at www.developerstar.com (the "Tools"), that require server-side processing keep all the data in 'transient memory (RAM)' for a very short period of time. This data is not collected, stored, or otherwise persisted. 20 |
21 | 22 |24 | Developerstar may use your Personal Information to: 25 |
26 |33 | Cookies are strictly used for load balancing, clustering, and session affinity. Developerstar does not track Sensitive Information or single users. Additionally, Developerstar uses third-party add-ons, including but not limited to Google Analytics, Amazon Web Services, and Facebook Social ("Third-Party Add-Ons"). Such Third-Party Add-Ons may have different cookie policies, and Developerstar does not control or administer the cookies dropped by these Third-Party Add-Ons. It is the user's responsibility to ensure compliance with the respective policies. 34 |
35 | 36 |No data or file uploaded on Developerstar's servers is read, analyzed, or similarly processed.
37 | 38 |40 | Before submitting documents containing Sensitive Information such as information pertaining to someone's health, finances, proprietary data, security data, biometric data, or any information otherwise considered confidential ("Sensitive Information"), users should obtain prior consent from their respective security officer, compliance officer, or legal department to do so. 41 |
42 | 43 |Developerstar shall not be liable for any data uploaded by a user, including any user that uploads Sensitive Information on developerstar.com.
44 | 45 |47 | Where Developerstar discloses your Personal Information to its agents or sub-contractors for these purposes, the agent or sub-contractor in question will be obligated to use that Personal Information in accordance with the terms of this privacy statement. 48 |
49 | 50 |51 | In addition to the disclosures reasonably necessary for the purposes identified elsewhere above, Developerstar may disclose your Personal Information to the extent that it is required to do so by law, in connection with any legal proceedings or prospective legal proceedings, and in order to establish, exercise, or defend its legal rights. 52 |
53 | 54 |If Developerstar is being acquired or merges with another company, your information may be transferred to the new owners in order to facilitate ongoing operations.
55 | 56 |58 | Developerstar will take reasonable technical and organizational precautions to prevent the loss, unauthorized access, misuse, disclosure, alteration, or destruction of your Personal Information. 59 |
60 | 61 |62 | Developerstar supports SSL (HTTPS) communications whenever applicable, with the intent of further protecting your privacy and providing security for your data. 63 |
64 | 65 |66 | Developerstar will store all the Personal Information you provide on its secure servers. Security measures are based on open-source libraries which are not audited by Developerstar. Developerstar is not liable for any security flaws these security measures may have. 67 |
68 | 69 |71 | Information that Developerstar collects may be stored, processed, and transferred between any of the countries in which Developerstar operates to enable the use of the information in accordance with this privacy policy. 72 |
73 | 74 |You agree to such cross-border transfers of Personal Information.
75 | 76 |78 | Developerstar may update this privacy policy by posting a new version on this website. Developerstar will notify you of any changes by posting a new version of the Privacy Statement on this website. 79 |
80 | 81 |You should check this page occasionally to ensure you are familiar with any changes.
82 | 83 |85 | This website contains links to other websites. If you click on a third-party link, you will be directed to that third party's site. Developerstar is not responsible for the content and privacy practices of other websites, and we strongly advise you to review the privacy policy of every third-party site you visit. 86 |
87 |{responseText}
170 | 7 | Read about the terms and conditions for Flowbite. Have a question? Feel free to contact us and we will help you out. 8 |
9 |Please read these Terms and Conditions ("Terms") carefully before accessing or using the Developerstar ("Platform") accessible via www.developerstar.com. These Terms constitute a legal agreement between you ("User," "you," or "your") and Developerstar ("Company," "we," "us," or "our") regarding your use of the Platform. By accessing or using the Platform, you agree to be bound by these Terms. If you do not agree with any part of these Terms, you should not access or use the Platform.
11 |
13 | 1.1. "Platform" refers to the Developerstar Platform provided by the Company, including all associated websites, applications, software, tools, and services accessible via www.developerstar.com.
14 | 1.2. "User" refers to any individual or entity accessing or using the Platform.
15 | 1.3. "Content" refers to any information, data, text, images, graphics, code, or other materials uploaded, downloaded, or accessed through the Platform.
16 | 1.4. "Tools" refer to the tools available on www.developerstar.com.
17 |
21 | 2.1. In order to use certain features of the Platform, you may be required to register for an account.
22 | 2.2. You agree to provide accurate, complete, and up-to-date information during the registration process and to keep your account credentials secure and confidential.
23 | 2.3. You are solely responsible for all activities that occur under your account.
24 |
28 | 3.1. Subject to compliance with these Terms, the Company grants you a limited, non-exclusive, non-transferable, and revocable license to access and use the Platform for the purpose of developing applications and software.
29 | 3.2. You acknowledge that the Company retains all intellectual property rights in the Platform, and you shall not use, copy, modify, distribute, or create derivative works based on the Platform without the Company's prior written consent.
30 |
34 | 4.1. You shall comply with all applicable laws, regulations, and these Terms while using the Platform.
35 | 4.2. You shall not use the Platform for any unlawful, fraudulent, or unauthorized purposes.
36 | 4.3. You shall not upload, post, transmit, or otherwise make available any Content that is unlawful, harmful, defamatory, infringing, or violates any third-party rights.
37 | 4.4. You are solely responsible for the Content you upload, and you grant the Company a non-exclusive, worldwide, royalty-free license to use, reproduce, modify, adapt, publish, translate, distribute, and display such Content for the purpose of providing the Platform and improving its features.
38 |
42 | The Company acknowledges that it will not retain any rights, titles, or interests in the text or documents you submit using the Tools available on www.developerstar.com. 43 |
44 | 45 |
47 | 6.1. The Platform may integrate with third-party services, tools, or content. Your use of such services or content is subject to their respective terms and conditions, and the Company shall not be responsible or liable for any third-party services or content.
48 | 6.2. The inclusion of any third-party services or content within the Platform does not imply endorsement or affiliation with such third parties.
49 |
53 | 7.1. The Company reserves the right to suspend, restrict, or terminate your access to the Platform at any time without notice or liability, for any reason or no reason, in its sole discretion.
54 | 7.2. Upon termination, your license to use the Platform shall immediately cease, and you shall delete any downloaded or stored Content from the Platform.
55 |
59 | 8.1. The Platform is provided on an "as is" and "as available" basis. The Company makes no representations or warranties of any kind, whether express, implied, or statutory, regarding the Platform, including but not limited to any warranties of merchantability, fitness for a particular purpose, or non-infringement.
60 | 8.2. The Company does not warrant that the Platform will be uninterrupted, error-free, secure, or free from viruses or other harmful components.
61 |
65 | 9.1. To the maximum extent permitted by applicable law, the Company shall not be liable for any indirect, incidental, special, consequential, or punitive damages arising out of or relating to your use or inability to use the Platform, including but not limited to loss of profits, data, or goodwill.
66 | 9.2. In no event shall the Company's total liability exceed the amount you have paid, if any, to access the Platform.
67 |
71 | You agree to indemnify, defend, and hold harmless the Company, its officers, directors, employees, and agents from and against any and all claims, liabilities, damages, losses, costs, or expenses, including reasonable attorneys' fees, arising out of or in connection with your use of the Platform or violation of these Terms. 72 |
73 | 74 |
76 | 11.1. The Company reserves the right to modify or update these Terms at any time, and the updated version will be effective upon posting on the Platform.
77 | 11.2. It is your responsibility to review these Terms periodically to ensure your continued compliance.
78 | 11.3. By continuing toaccess or use the Platform after any modifications, you agree to be bound by the revised Terms.
79 |
80 |
82 | 12.1. These Terms shall be governed by and construed in accordance with the laws of Mumbai, India.
83 | 12.2. Any disputes arising out of or in connection with these Terms shall be subject to the exclusive jurisdiction of the courts of Mumbai, India.
84 |
88 | 13.1. If any provision of these Terms is held to be invalid, illegal, or unenforceable, the validity, legality, or enforceability of the remaining provisions shall not in any way be affected or impaired. 89 |
90 |