Home: Difference between revisions

From BigID Developer Portal
No edit summary
No edit summary
 
(22 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<html>
<html>
<style type="text/css">
<style type="text/css">
    .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 33: Line 45:


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


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


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


Line 241: Line 255:
         align-items: center;
         align-items: center;
         margin-top: 2.4rem;
         margin-top: 2.4rem;
         padding: 2vw;
         padding: 25px;
     }
     }


Line 251: Line 265:
     }
     }


     #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;
        font-size: 12px;
         width: 200px;
     }
     }


Line 284: 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>
Line 299: Line 312:
     </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 311: 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 343: Line 356:
         let json = await req.json();
         let json = await req.json();
         let highlighter = json.map((item) => {
         let highlighter = json.map((item) => {
             return { start: item.pos - 1, end: item.end - 1, className: item.word }
             return { start: item.pos - 1, end: item.end - 1, word: item.word }
         });
         });
         highlighter = highlighter.sort((a,b) => b.end-a.end);
        highlighter = highlighter.reduce(function (p, c) {
         console.log(highlighter)
            if (!p.some(function (el) { return el.end === c.end; })) p.push(c);
         for(high of highlighter) {
            return p;
            let text = document.getElementById('tryData').innerHTML;
        }, []);
            document.getElementById('tryData').innerHTML = text.substring(0,high.start)+"<a>"+text.substring(high.start,high.end)+"</a>"+text.substring(high.end);
        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>



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: