Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
bgoonz committed May 4, 2022
1 parent bf70215 commit f45bc45
Show file tree
Hide file tree
Showing 15 changed files with 3,158 additions and 13 deletions.
4 changes: 2 additions & 2 deletions src/components/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export default class Header extends React.Component {
</div>
</div>
<div>
<>
{/* <>
<div id="sb-search-example">
<div className="sb-search-icon" id="myCustomSearchButtonID">
<i className="sb-icon"></i>
Expand All @@ -88,7 +88,7 @@ export default class Header extends React.Component {
<style dangerouslySetInnerHTML={{__html: "\n\t\t@font-face {\n font-family: font-sb;\n src: url(https://api.searchbar.org/fonts/sb.eot?39450784);\n src: url(https://api.searchbar.org/fonts/sb.eot?39450784#iefix) format('embedded-opentype'), url(https://api.searchbar.org/fonts/sb.woff?39450784) format('woff'), url(https://api.searchbar.org/fonts/?39450784) format('truetype'), url(https://api.searchbar.org/fonts/sb.svg?39450784#font-sb) format('svg');\n font-weight: 400;\n font-style: normal\n }\n\n #sb-search-example p {\n font-family: sans-serif;\n font-size: 18px;\n line-height: 12px;\n\t margin: 0;\n }\n\n #sb-search-example {\n position: static;\n top: 0;\n width: auto;\n place-content: center;\n display: inline-block;\n box-shadow: 0px 2px 4px rgba(190, 190, 190, 0.5);\n border: solid 5px white;\n border-radius: 100px;\n flex-shrink: initial;\n flex-grow: initial;\n }\n\n\n #sb-search-example .sb-icon {\n font: normal normal 400 26px font-sb;\n align-items: center;\n padding: 10px;\n speak: none;\n display: inline-block;\n text-decoration: inherit;\n text-align: center;\n text-transform: none;\n cursor: pointer;\n margin: 0;\n }\n\n #sb-search-example .sb-search-icon {\n box-sizing: border-box;\n border: 0px;\n align-items: center;\n background: #007cff;\n color: #fff;\n cursor: pointer;\n display: flex;\n border-radius: 26px;\n padding: 0 20px 0 4px;\n }\n\t" }}/>
</div>
</>
</> */}

<a className="github-corner" href="https://github.com/bgoonz/BGOONZ_BLOG_2.0" aria-label="View source on Github">
<svg
Expand Down
11 changes: 11 additions & 0 deletions src/components/Layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,17 @@ export default class Body extends React.Component {
<Header {...this.props} />
<main id="content" className="site-content">
{this.props.children}
<>
<div id="sb-search-example">
<div className="sb-search-icon" id="myCustomSearchButtonID">
<i className="sb-icon"></i>
<p>Search</p>
</div>
<style dangerouslySetInnerHTML={{__html: "\n\t\t@font-face {\n font-family: font-sb;\n src: url(https://api.searchbar.org/fonts/sb.eot?39450784);\n src: url(https://api.searchbar.org/fonts/sb.eot?39450784#iefix) format('embedded-opentype'), url(https://api.searchbar.org/fonts/sb.woff?39450784) format('woff'), url(https://api.searchbar.org/fonts/?39450784) format('truetype'), url(https://api.searchbar.org/fonts/sb.svg?39450784#font-sb) format('svg');\n font-weight: 400;\n font-style: normal\n }\n\n #sb-search-example p {\n font-family: sans-serif;\n font-size: 18px;\n line-height: 12px;\n\t margin: 0;\n }\n\n #sb-search-example {\n position: static;\n top: 0;\n width: auto;\n place-content: center;\n display: inline-block;\n box-shadow: 0px 2px 4px rgba(190, 190, 190, 0.5);\n border: solid 5px white;\n border-radius: 100px;\n flex-shrink: initial;\n flex-grow: initial;\n }\n\n\n #sb-search-example .sb-icon {\n font: normal normal 400 26px font-sb;\n align-items: center;\n padding: 10px;\n speak: none;\n display: inline-block;\n text-decoration: inherit;\n text-align: center;\n text-transform: none;\n cursor: pointer;\n margin: 0;\n }\n\n #sb-search-example .sb-search-icon {\n box-sizing: border-box;\n border: 0px;\n align-items: center;\n background: #007cff;\n color: #fff;\n cursor: pointer;\n display: flex;\n border-radius: 26px;\n padding: 0 20px 0 4px;\n }\n\t" }}/>
</div>

</>

</main>
<Footer {...this.props} />
</div>
Expand Down
68 changes: 68 additions & 0 deletions src/pages/docs/tips/storybook/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
---
title: Storybook
template: docs
excerpt: "Storybook is a great tool for developing and demoing components. "
---
# Storybook

[Storybook](https://storybook.js.org/) is a great tool for developing and demoing components. By default, it is based on Webpack and Webpack dev server.

The [@web/dev-server-storybook](../../docs/dev-server/plugins/storybook.md) plugin uses an [opinionated build](https://github.com/modernweb-dev/storybook-prebuilt) of Storybook, making it possible to use it with Web Dev Server for es modules and buildless workflows.

## Setup

Install the package:

```
npm i --save-dev @web/dev-server-storybook
```

Add the plugin and set the project type. See below for supported project types.

```js
import { storybookPlugin } from '@web/dev-server-storybook';

export default {
// type can be 'web-components' or 'preact'
plugins: [storybookPlugin({ type: 'web-components' })],
};
```

Add a `.storybook/main.js` file:

```js
module.exports = {
stories: ['../stories/**/*.stories.@(js|jsx|ts|tsx)'],
};
```

Add a story: `stories/MyButton.stories.js`:

```js
export default {
title: 'Example/Button',
argTypes: {
backgroundColor: { control: 'color' },
},
};

const Button = ({ backgroundColor = 'white', text }) => {
return `
<button type="button" style="background-color: ${backgroundColor}">
${text}
</button>
`;
};

export const ButtonA = Button.bind({});
ButtonA.args = {
text: 'Button A',
};

export const ButtonB = Button.bind({});
ButtonB.args = {
text: 'Button B',
};
```

See the [plugin documentation](../../docs/dev-server/plugins/storybook.md) for more features and all configuration options.
85 changes: 85 additions & 0 deletions src/pages/docs/tools/dev-utilities.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
---
title: General Utilities
weight: 0
excerpt: General Utilities
seo:
title: ''
description: ''
robots: []
extra: []
type: stackbit_page_meta
template: docs
---


## General Utilities

<br>
<br>
<br>
<h1> Search </h1>
<br>

<iframe src="https://www.algolia.com/interface-demos/6ed0c3de-f9e4-4cc8-a7b2-c6c7c979cc5e" height="1000px" width="1200px" scrolling="yes" loading="lazy" allowfullscreen="true"></iframe>

<br>
<hr>
<br>
<br>
<hr>
<br>

<hr>
<br>
<br>
<br>
<h1> Photo Editor </h1>
<br>

<iframe src="https://onlinephotoeditor.goonlinetools.com/" height="1000px" width="1200px" scrolling="yes" loading="lazy" allowfullscreen="true"></iframe>

<br>
<hr>
<br>
<br>
<br>
<h1> PDF Tools </h1>
<br>

<iframe src="https://pdf-tools-xi.vercel.app/" height="1000px" width="1200px" scrolling="yes" loading="lazy" allowfullscreen="true"></iframe>

<br>
<hr>
<br>

<hr>
<br>
<br>

<h1> Text Tools </h1>
<br>

<iframe src="https://bgoonz.github.io/Web_Utility_Tools/" height="1000px" width="1200px" scrolling="yes" loading="lazy" allowfullscreen="true"></iframe>

<br>
<hr>
<br>
<br>
<br>
<br>

<h1> Ternary Converter </h1>
<br>

<iframe height="1000px" width="1200px" scrolling="yes" src="https://ternary42.netlify.app/" loading="lazy" allowfullscreen="true"></iframe>

<br>
<hr>
<br>
<br>

<iframe height="1000px" width="1200px" scrolling="yes" title="Dashed Border Generator" src="https://codepen.io/bgoonz/embed/preview/zYwLVmb?default-tab=result&editable=true&theme-id=dark" loading="lazy" allowfullscreen="true">
See the Pen <a href="https://codepen.io/bgoonz/pen/zYwLVmb">
Dashed Border Generator</a> by Bryan C Guner (<a href="https://codepen.io/bgoonz">@bgoonz</a>)
on <a href="https://codepen.io">CodePen</a>.
</iframe>
179 changes: 179 additions & 0 deletions src/pages/docs/tools/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,179 @@
---
title: Tools
excerpt: >-
See some interesting tools developed by the Web-Dev-Hubcommunity to help
automate parts of your workflow.
seo:
title: Tools
description: >-
paste to markdown, excel table to markdown, excel to html, cloud storage,
text manipulation, ternary converter, github html preview, form builder,
border
extra:
- name: 'og:type'
value: website
keyName: property
- name: 'og:title'
value: Tools
keyName: property
- name: 'og:description'
value: >-
paste to markdown, excel table to markdown, excel to html, cloud
storage, text manipulation, ternary converter, github html preview, form
builder, border
keyName: property
- name: 'twitter:card'
value: summary
- name: 'twitter:title'
value: Tools
- name: 'twitter:description'
value: This is the tools page
- name: 'og:image'
value: images/tex.png
keyName: property
relativeUrl: true
template: docs
---



<h1> Markdown tools </h1>
<hr>
<br>
<br>

<br>
<iframe src="https://random-static-html-deploys.netlify.app/markdow-tools-embed.html" height="1000px" width="1200px"scrolling="yes" loading="lazy" allowfullscreen="true"></iframe>

<iframe src="https://drive.google.com/embeddedfolderview?id=1DHyQsPLziqSUODclplhnNX1eknzbZrL8#grid" style="width:100%; height:600px; border:0;"></iframe>

<br>
<hr>
<br>
<br>
<br>

<h1> PDF Tools </h1>
<br>

<iframe src="https://pdf-tools-xi.vercel.app/" height="1000px" width="1200px" scrolling="yes" loading="lazy" allowfullscreen="true"></iframe>

<br>
<hr>
<br>



<hr>
<br>
<h1> Number Base Converter </h1>
<br>
<iframe src="https://number-base-converter-react.vercel.app/" height="1000px" width="1200px"scrolling="yes" loading="lazy" allowfullscreen="true"></iframe>

<br>
<br>
<h1> Text Tools </h1>
<br>
<iframe src="https://devtools42.netlify.app/" height="1000px" width="1200px"scrolling="yes" loading="lazy" allowfullscreen="true"></iframe>

<br>
<br>
<h1> Other Tools </h1>
<br>
<iframe src="https://bgoonz.github.io/more-tools-textool-template-format/" height="1000px" width="1200px"scrolling="yes" loading="lazy" allowfullscreen="true"></iframe>

<br>
<br>
<h1> Awesome Search </h1>
<iframe src="https://codepen.io/bgoonz/embed/JjNaPpL?default-tab=result&theme-id=light" height="1000px" width="1200px"scrolling="yes" loading="lazy" allowfullscreen="true"></iframe>
<br>
<br>
<br>
<h1>Paste excel to HTML</h1>
<br>
<iframe src="https://pedantic-wing-adbf82.netlify.app/" height="1000px" width="1200px"scrolling="yes" loading="lazy" allowfullscreen="true"></iframe>
<br>

<h1> Cloud Storage </h1>
<br>

<h2> Up to 1TB of cloud Storage for file sharing!</h2>
<iframe src="https://onedrive.live.com/embed?cid=D21009FDD967A241&resid=D21009FDD967A241%21538729&authkey=AHSDSyoYqzg2K2E" height="275px" width="17%" style="zoom:0.69; align-self:center;display:auto;display: block;border:2px solid gold;">
</iframe>

<br>
<hr>
<br>
<br>
<iframe src="https://resourcerepo2.netlify.app/" height="1000px" width="1200px"scrolling="yes" loading="lazy" allowfullscreen="true"></iframe>
<br>
<br>
<br>
<h1> Text Tools </h1>
<br>

<iframe src="https://devtools42.netlify.app/" height="1000px" width="1200px"scrolling="yes" loading="lazy" allowfullscreen="true"></iframe>

<br>
<hr>
<br>
<br>
<br>

<h1> Ternary Converter </h1>
<br>
<iframe src="https://ternary42.netlify.app/" height="1000px" width="1200px" scrolling="yes" loading="lazy" allowfullscreen="true"></iframe>

<br>
<hr>
<br>
<br>
<br>

<h1> Github HTML Render from link </h1>
<br>

<iframe src="https://githtmlpreview.netlify.app/" height="1000px" width="1200px"scrolling="yes" loading="lazy" allowfullscreen="true"></iframe>

<br>
<hr>
<br>
<br>
<br>

<h1> Form Builder GUI </h1>
<br>

<iframe src="https://fourm-builder-gui.netlify.app/" height="1000px" width="1200px"scrolling="yes" loading="lazy" allowfullscreen="true"></iframe>

<!-- <br>
<h1> Border Builder </h1>
<br>
<iframe src="https://random-static-html-deploys.netlify.app/web-speech-api-master/speak-easy-synthesis/index.html" height="1000px" width="1200px"scrolling="yes" loading="lazy" allowfullscreen="true"></iframe>
<br>
<hr>
<br>
<br>
<br>
-->

<br>
<br>

<h1> </h1>
<br>
<iframe src="https://ds-algo-official.netlify.app/" height="800px" style="width: 100%;" scrolling="yes" loading="lazy" allowfullscreen="true"></iframe>

<br>
<br>
<br>
<h1> </h1>
<br>

<iframe height="800" style="width: 100%;" scrolling="yes" title="Simple Typing Carousel " src="https://codepen.io/bgoonz/embed/ExZvGoZ?default-tab=html%2Cresult" loading="lazy" allowfullscreen="true">
See the Pen <a href="https://codepen.io/bgoonz/pen/ExZvGoZ">
Simple Typing Carousel </a> by Bryan C Guner (<a href="https://codepen.io/bgoonz">@bgoonz</a>)
on <a href="https://codepen.io">CodePen</a>.
</iframe>
Loading

1 comment on commit f45bc45

@vercel
Copy link

@vercel vercel bot commented on f45bc45 May 4, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Checks for Deployment have failed

Please sign in to comment.