<div id="flems"></div>
<script src="https://flems.io/flems.html" type="text/javascript" charset="utf-8"></script>
<script>
window.Flems(flems, {
files: [
{
name: "index.html",
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| body { | |
| background: lime; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { component$, useServerData } from "@builder.io/qwik"; | |
| import { isDev } from "@builder.io/qwik/build"; | |
| import { | |
| QwikCityProvider, | |
| RouterOutlet, | |
| ServiceWorkerRegister, | |
| } from "@builder.io/qwik-city"; | |
| import { RouterHead } from "~/components/router-head/router-head"; | |
| import setInitialThemeAsString from "~/utils/set-initial-theme?raw"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { component$, Resource, useResource$ } from "@builder.io/qwik"; | |
| import { serverGreeter } from "~/server/actions/public"; | |
| import { getGreeting } from "~/server/actions/protected"; | |
| export const Header = component$(() => { | |
| const userDataResource = useResource$( | |
| async () => await getGreeting({ name: "Pif" }), | |
| ); | |
| return ( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sitemaps | |
| Sitemap netskope | |
| Create new sitemap | |
| {"_id":"netskope","startUrl":["https://community.netskope.com/t5/forums/recentpostspage/post-type/thread/interaction-style/forum"],"selectors":[{"id":"title","multiple":false,"parentSelectors":["pagination"],"regex":"","selector":".lia-message-view-wrapper a.page-link","type":"SelectorText"},{"id":"category","multiple":false,"parentSelectors":["pagination"],"regex":"","selector":".lia-component-common-widget-link","type":"SelectorText"},{"id":"pagination","paginationType":"auto","parentSelectors":["_root","pagination"],"selector":".lia-paging-full-pages li a","type":"SelectorPagination"},{"id":"entry","multiple":true,"parentSelectors":["pagination"],"regex":"","selector":".lia-message-view-wrapper","type":"SelectorText"}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // -- definim aplicatia si o montam la id-ul #app vezi .html | |
| const root = ReactDOM.createRoot(app) | |
| // -- definim componenta App (entrypoint-ul aplicatiei) | |
| const App = () => { | |
| // -- definim state-ul aplicatiei | |
| const [state, setState] = React.useState({ | |
| user: null, | |
| cart: [], | |
| products: [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Available variables: | |
| // - Machine | |
| // - interpret | |
| // - assign | |
| // - send | |
| // - sendParent | |
| // - spawn | |
| // - raise | |
| // - actions |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public static function prepareGateway(&$gateway) | |
| { | |
| $user = [ | |
| "user" => [ | |
| "email" => "email", | |
| "password" => "pass" | |
| ] | |
| ]; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { | |
| Button, | |
| SafeAreaView, | |
| ScrollView, | |
| StatusBar, | |
| StyleSheet, | |
| Text, | |
| View, | |
| } from 'react-native'; | |
| import { |
NewerOlder