Home: Difference between revisions

From BigID Developer Portal
No edit summary
No edit summary
 
(33 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<html>
<html>
<style type="text/css">
<style type="text/css">
     #classify {}
     .info {
        background: #f091ca;
        padding: 3px;
        font-weight: 600;
        color: #ffff;
    }


     #mw-content-text.mw-body-content.mw-content-ltr {
     #mw-content-text.mw-body-content.mw-content-ltr {
         margin-left: auto !important;
         margin-left: auto !important;
     }
     }
    #bodyContent.citizen-body {
min-width:0px !important;
max-width:900px;
}


     .mw-body-header {
     .mw-body-header {
Line 35: Line 45:


     #mega {
     #mega {
         margin: auto;
         margin: 0px;
         align-items: center;
         align-items: center;
         justify-content: space-between;
         justify-content: space-between;
Line 91: Line 101:


     main #headerimg {
     main #headerimg {
         width: 35vw;
         width: 100%;
     }
     }


Line 218: Line 228:
             width: 30vw;
             width: 30vw;
         }
         }
        #classify .try { padding-left:0px !important;}
        #classify {margin:0px !important;}
     }
     }


Line 242: Line 254:
         justify-content: space-between;
         justify-content: space-between;
         align-items: center;
         align-items: center;
         margin-top:2.4rem;
         margin-top: 2.4rem;
         padding: 2vw;
         padding: 25px;
     }
     }


Line 249: Line 261:
         display: flex;
         display: flex;
         flex-direction: column;
         flex-direction: column;
         padding-left:10vw;
         padding-left: 10vw;
         min-width: 300px;
         min-width: 300px;
     }
     }


     #classify .try textarea {
     #classify .try #tryData {
        background-color: #fff;
         padding: 10px;
         padding: 10px;
        font-family: 'Archivo', sans-serif;
         border-radius: 10px;
         border-radius: 10px;
         resize: none;
         overflow: scroll;
         width: auto;
         height: 90px;
         height: 60px;
         color: #54595d;
     }
     }


Line 273: Line 285:
     }
     }


     #classify h1 {margin:0px;}
     #classify h1 {
        margin: 0px;
    }
</style>
</style>
<main>
<main>
Line 282: Line 296:
             <p class="links"><a href="Get_Started" style="color:#fff;">Get Started</a></p>
             <p class="links"><a href="Get_Started" style="color:#fff;">Get Started</a></p>
         </div>
         </div>
         <div><img id="headerimg" src="https://wiki-images.bigid.tools/cdn/main.svg" /></div>
         <div style="flex:1"><img id="headerimg" src="https://wiki-images.bigid.tools/cdn/main.svg" /></div>
     </section>
     </section>
     <section id="classify" class="custom_bigid_notes">
     <section id="classify" class="row custom_bigid_notes">
         <div>
         <div>
             <h1>See into your data</h1>
             <h1>See into your data</h1>
             <p>BigID allows you to sort through large swaths of data to see what really matters. Try it on the right.
             <p>BigID allows you to sort through large swaths of data to see what really matters. Using hundreds of
                machine learning, NLP and regex classifiers, you can classify any data, anywhere. Try it on the right.
             </p>
             </p>
         </div>
         </div>
         <div class="try">
         <div class="try">
             <textarea id="tryData">Hello! Can you please process payment for [email protected] to 4199006507426062? Thank you!</textarea>
             <div contenteditable="true" id="tryData">Hello! Can you please process payment for [email protected] to
                4199006507426062? Thank you!</div>
             <button onclick="discover()">Discover</button>
             <button onclick="discover()">Discover</button>
         </div>
         </div>
     </section>
     </section>
     <section id="getStarted">
     <section id="getStarted">
 
        <h1>Start Developing</h1>
         <div class="row">
         <div class="row">
             <div class="card purple ">
             <div class="card purple " style="margin-left:0px;">
                 <div class="content ">
                 <div class="content ">
                     <h1>Apps</h1>
                     <h1>Apps</h1>
Line 308: Line 324:
                 <div class="content ">
                 <div class="content ">
                     <h1>REST API</h1>
                     <h1>REST API</h1>
                     <p>Manage BigID programmatically. Scan data, run SARs, and handle data breaches from anywhere.</p>
                     <p>Manage BigID programmatically. Scan data, run SARs, and more through code.</p>
                 </div>
                 </div>
                 <a href="BigID_API">Learn More</a>
                 <a href="BigID_API">Learn More</a>
             </div>
             </div>
             <div class="card blue ">
             <div class="card blue " style="margin-right:0px;">
                 <div class="content ">
                 <div class="content ">
                     <h1>Connectors</h1>
                     <h1>Connectors</h1>
                     <p>Scan any system, anywhere. Write your own connector in any programming language</p>
                     <p>Scan any system, anywhere. Write your own connector in any programming language.</p>
                 </div>
                 </div>
                 <a href="Connectors">Learn More</a>
                 <a href="Connectors">Learn More</a>
Line 333: Line 349:
         let req = await window.fetch('https://classify.bigid.tools', {
         let req = await window.fetch('https://classify.bigid.tools', {
             method: 'POST',
             method: 'POST',
             body: JSON.stringify({text:document.getElementById('tryData').value})
            headers: {
                'content-type': 'application/json'
            },
             body: JSON.stringify({ text: document.getElementById('tryData').innerText })
         });
         });
         let json = await req.json();
         let json = await req.json();
         console.log(json);
        let highlighter = json.map((item) => {
            return { start: item.pos - 1, end: item.end - 1, word: item.word }
        });
        highlighter = highlighter.reduce(function (p, c) {
            if (!p.some(function (el) { return el.end === c.end; })) p.push(c);
            return p;
        }, []);
        highlighter = highlighter.reduce(function (p, c) {
            if (!p.some(function (el) { return el.start === c.start; })) p.push(c);
            return p;
        }, []);
        highlighter = highlighter.sort((a, b) => b.end - a.end);
         console.log(highlighter);
        let text = document.getElementById('tryData').innerText;
        for (high of highlighter) {
            text = text.substring(0, high.start) + "<span class='info' title='" + high.word + "'>" + text.substring(high.start, high.end) + "</span>" + text.substring(high.end);
        }
        document.getElementById('tryData').innerHTML = text;
     }
     }
</script>
</script>
</html>
</html>
{{#description2:Get started adding BigID's data discovery to your application with tutorials, samples, and
{{#description2:Get started adding BigID's data discovery to your application with tutorials, samples, and
documentation}}
documentation}}

Latest revision as of 19:13, 15 February 2023

Discover

Bring enterprise-scale data intelligence to your application

See into your data

BigID allows you to sort through large swaths of data to see what really matters. Using hundreds of machine learning, NLP and regex classifiers, you can classify any data, anywhere. Try it on the right.

Hello! Can you please process payment for [email protected] to 4199006507426062? Thank you!

Start Developing

Apps

Add custom logic and screens to your BigID system.

Learn more

REST API

Manage BigID programmatically. Scan data, run SARs, and more through code.

Learn More

Connectors

Scan any system, anywhere. Write your own connector in any programming language.

Learn More

Popular Articles: