Home: Difference between revisions
From BigID Developer Portal
No edit summary |
No edit summary |
||
(35 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 35: | Line 45: | ||
#mega { | #mega { | ||
margin: | 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: | 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: 25px; | |||
} | } | ||
Line 248: | 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 | #classify .try #tryData { | ||
background-color: #fff; | |||
padding: 10px; | padding: 10px; | ||
border-radius: 10px; | border-radius: 10px; | ||
overflow: scroll; | |||
height: 90px; | |||
color: #54595d; | |||
} | } | ||
Line 264: | Line 277: | ||
padding: 10px 20px; | padding: 10px 20px; | ||
border-radius: 10px; | border-radius: 10px; | ||
background: # | background: #4bbf8f; | ||
font-weight: 600; | font-weight: 600; | ||
color: #fff; | color: #fff; | ||
Line 272: | Line 285: | ||
} | } | ||
#classify h1 {margin:0px;} | #classify h1 { | ||
margin: 0px; | |||
} | |||
</style> | </style> | ||
<main> | <main> | ||
Line 281: | 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"> | ||
< | <div contenteditable="true" id="tryData">Hello! Can you please process payment for [email protected] to | ||
<button>Discover</button> | 4199006507426062? Thank you!</div> | ||
<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 307: | 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 | <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 328: | Line 345: | ||
</section> | </section> | ||
</main> | </main> | ||
<script> | |||
async function discover() { | |||
let req = await window.fetch('https://classify.bigid.tools', { | |||
method: 'POST', | |||
headers: { | |||
'content-type': 'application/json' | |||
}, | |||
body: JSON.stringify({ text: document.getElementById('tryData').innerText }) | |||
}); | |||
let json = await req.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> | |||
</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
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.
REST API
Manage BigID programmatically. Scan data, run SARs, and more through code.
Connectors
Scan any system, anywhere. Write your own connector in any programming language.
Popular Articles: