Hari Karthikkeyyan Avatar

Hari Karthikkeyyan

hk-store

| India

This is the site description

Posts
Hari Karthikkeyyan
Testing Notification, Ignore if you have received this notification.

Testing Notification, Ignore if you have received this notification.



Mon Mar 25 2024
Testing Notification, Ignore if you have received this notification.

Testing Notification, Ignore if you have received this notification.



Mon Mar 25 2024
Testing Notification, Ignore if you have received this notification.

Testing Notification, Ignore if you have received this notification.



Mon Mar 25 2024
Testing Notification, Ignore if you have received this notification.

Testing Notification, Ignore if you have received this notification.



Mon Mar 25 2024
Testing Notification, Ignore if you have received this notification.

Testing Notification, Ignore if you have received this notification.



Mon Mar 25 2024
Testing Notification, Ignore if you have received this notification.

Testing Notification, Ignore if you have received this notification.



Mon Mar 25 2024
Testing Notification, Ignore if you have received this notification.

Testing Notification, Ignore if you have received this notification.



Mon Mar 25 2024
Testing Notification, Ignore if you have received this notification.

Testing Notification, Ignore if you have received this notification.



Mon Mar 25 2024
Testing Notification, Ignore if you have received this notification.

Testing Notification, Ignore if you have received this notification.



Mon Mar 25 2024
Testing Notification, Ignore if you have received this notification.

Testing Notification, Ignore if you have received this notification.



Mon Mar 25 2024
Testing Notification, Ignore if you have received this notification.

Testing Notification, Ignore if you have received this notification.



Mon Mar 25 2024
How do I reduce the opacity of an element's background using CSS?


Is it possible, using CSS only, to make the background of an element semi-transparent but have the content (text & images) of the element opaque?

I'd like to accomplish this without having the text and the background as two separate elements.

Mon Mar 25 2024
asd

asdasdasdas

Mon Mar 25 2024
fsdfsdf sdf 21313 12

3 df asdfsdf

Mon Mar 25 2024
asdasd asda

sdasda sd asd

Mon Mar 25 2024
ads

asdasdasd asd asd asd asd as

Mon Mar 25 2024
asda

sdasdasd

Mon Mar 25 2024
new oelds

hello World

Mon Mar 25 2024
new world

Hellosffsdfsdf

Mon Mar 25 2024
New announcement here

new papapapapap 12

Mon Mar 25 2024
Question and Answer

Question and Answers are a hot topic in SEO right now. We don’t have too much info here for now, but here is some JSON-LD to get you started:

  • 1

  • 1

  • 2

Mon Mar 25 2024
dfs new

Thanks for working in this project 123

Mon Mar 25 2024
asd

asdasdasdasd asdas

da

sd

as

d

asd

asd

Mon Mar 18 2024
another code vlog building a startup in nyc (as a software engineer)

We're back with another day in the life of a nyc software engineer. Today we're based out of a Starbucks Reserve and we're adding a couple of features towards the full stack application. If you love heavy dev details and building sick tech, stick around. follow me on instagram ►   / binnie.jacob   follow me on twitter ►   / jacobbinnie   follow me on github ► https://github.com/jacobbinnie



Mon Mar 18 2024
223

232323

Wed Mar 13 2024
fg

fgfg

Tue Mar 12 2024
dasdas

asd

Tue Mar 12 2024
as

sas

Tue Mar 12 2024
1

11

Tue Mar 12 2024
HK Store :)

jjjjj

Tue Mar 12 2024
12345

fghjk

Tue Mar 12 2024
fvsd

sdfsdf

Thu Mar 07 2024
bcvvbcvbc gdfg dfg

cvbbcvcvbcvbd fgdfgdf gdfg

Thu Mar 07 2024
hthrt

rtyrtyrytasdasdasddas

Thu Mar 07 2024
rtyrtyrty

drgertyyt

Thu Mar 07 2024
De
Zx
Thu Mar 07 2024
Sw
Nndns
Thu Mar 07 2024
How to add date validations in google forms?

Google Forms does not support response validations for date questions. The workaround is to add a short answer question with the required response validations and add the calculations in Formfacade.

Google Forms does not support response validations for date questions. The workaround is to add a short answer question with the required response validations and add the calculations in Formfacade.

How to allow users to submit only if it is 7 days in advance?

Let's take the example of leave request form. Employees must submit their leave requests 7 days in advance. Since Google Forms does not have the option to add response validations for date questions, we cannot implement this in native Google Forms. Please follow the instructions below to implement the workaround using Formfacade.

Step 1: Add a short answer question in Google Forms.Step 1: Add a short answer question in Google Forms.

Step 2: Click on the ⋮ icon and select Response validation. Add a regular expression matches pattern validation. The acceptable answer for this question is "Yes". Otherwise, it will show a custom error message "All leave requests must be submitted 7 days in advance".Step 2: Click on the ⋮ icon and select Response validation. Add a regular expression matches pattern validation. The acceptable answer for this question is "Yes". Otherwise, it will show a custom error message "All leave requests must be submitted 7 days in advance".

Step 3: Click on the Addon icon > Select Formfacade > Select Customize this form > Click on the Proceed button.Step 3: Click on the Addon icon > Select Formfacade > Select Customize this form > Click on the Proceed button.

In the Formfacade customize interface, click on the ⚙️icon next to the short answer question for date validation.In the Formfacade customize interface, click on the ⚙️icon next to the short answer question for date validation.

Step 4: Field settings screen will be displayed. Select the "Answer" tab and write the formula to validate the date and set the value for the short answer question for meets prior notice policy?Step 4: Field settings screen will be displayed. Select the "Answer" tab and write the formula to validate the date and set the value for the short answer question for meets prior notice policy?

Using IFS condition to set the valid response

IFS function evaluates multiple conditions and returns a value that corresponds to the first true condition. We will use the IFS function to check if the leave request date is 7 days in advance and set the answer as "Yes" if true. Otherwise, set the answer as "No".


IFS(leave_from.diff(TODAY(),"days")>=7,"Yes","No")


Note: To enter leave_from, type @ in the calculate option and select the leave from date question from the list.

Step 5: Write the above IFS formula in the Calculate option as shown below.Step 5: Write the above IFS formula in the Calculate option as shown below.



Thu Mar 07 2024
How to add days, months, or years to a date?

You can use the ADD function to add days, months or years to a date. The add function can be used with an input date field or a calculated date field.

You can use the ADD function to add days, months or years to a date. The add function can be used with an input date field or a calculated date field.

Add days to a date

Step 1: Add a date question in Google Forms.Step 1: Add a date question in Google Forms.

Step 2: Click on the Addon icon > Select Formfacade > Select Customize this form > Click on the Proceed button.Step 2: Click on the Addon icon > Select Formfacade > Select Customize this form > Click on the Proceed button.

In the Formfacade customize interface, click on the ⚙️icon next to the date question.In the Formfacade customize interface, click on the ⚙️icon next to the date question.

Step 3: Field settings screen will be displayed. Select the "Answer" tab and write the formula to add days to a date.Step 3: Field settings screen will be displayed. Select the "Answer" tab and write the formula to add days to a date.

ADD function

You can add days to a date by specifying "days" as the term in the ADD function.


Syntax:

add(number_of_days, "days")


Example usage:

TODAY().add(30,"days")

Inputdate.add(5,"days")

Step 4: Write the formula in the Calculate option as shown below.Step 4: Write the formula in the Calculate option as shown below.

Add months to a date

You can add months to a date by specifying "months" as the term in the ADD function.


Syntax:

add(number_of_months, "months")


Example usage:

TODAY().add(6,"months")

Inputdate.add(3,"months")

Write the formula in the Calculate option for a date question as shown below.Write the formula in the Calculate option for a date question as shown below.

Add years to a date

You can add years to a date by specifying "years" as the term in the ADD function.


Syntax:

add(number_of_years, "years")


Example usage:

TODAY().add(1,"years")

Inputdate.add(2,"years")

Write the formula in the Calculate option for a date question as shown below.Write the formula in the Calculate option for a date question as shown below.

Thu Mar 07 2024
Date functions

Formfacade provides built-in date functions that can be used to update today's date, add or subtract dates & more. Here's the list of date functions:

DATE

Date function can be used to convert a year, month and day into a date.


Syntax:

DATE(year, month, day)


where

  • year - the year component of the date

  • month - the month component of the date

  • day - the day component of the date

Example usage:

DATE(2020, 9, 25)

DATE(2020, 12, 12)

TODAY

Today function returns the current date.


Syntax:

TODAY()

NOW

NOW function returns the current date and time.


Syntax:

NOW()

ADD

Add function can be used to add seconds, minutes, hours, days, months or years to a date or date & time question.


Syntax:

inputdate.add(number, term)


where

  • inputdate - the date to consider in the calculation. This can be date or date & time question or a formula that returns a date or date & time

  • number - a number value that must be added to the date or date & time

  • term - determines whether to add seconds, minutes, hours, days, months or years

Example usage:

TODAY().add(3,"days")

TODAY().add(6,"months")

TODAY().add(2,"years")

NOW().add(3,"hours")

NOW().add(25,"minutes")

NOW().add(10,"seconds")

SUBTRACT

Subtract function can be used to subtract seconds, minutes, hours, days, months or years to a date or date & time question.


Syntax:

inputdate.subtract(number, term)


where

  • inputdate - the date to consider in the calculation. This can be date or date & time question or a formula that returns a date or date & time

  • number - a number value that must be subtracted from the date or date & time

  • term - determines whether to subtract seconds, minutes, hours, days, months or years

Example usage:

TODAY().subtract(3,"days")

TODAY().subtract(6,"months")

TODAY().subtract(2,"years")

NOW().subtract(3,"hours")

NOW().subtract(25,"minutes")

NOW().subtract(10,"seconds")

DIFF

Diff function calculates the number of seconds, minutes, hours, days, months or years between two date or date & time questions.


Syntax:

enddate.diff(startdate, unit)


where

  • enddate - The end date to consider in the calculation. This can be date or date & time question or a formula that returns a date or date & time.

  • startdate - The start date to consider in the calculation. This can be date or date & time question or a formula that returns a date or date & time.

  • unit - determines the unit of time for the result. The unit can be seconds, minutes, hours, days, months or years.

Example usage:

TODAY().diff(DATE(1950,12,12),"years")

TODAY().diff(DATE(2020,06,18),"months")

TODAY().diff(DATE(2020,09,27),"days")



Thu Mar 07 2024
How to automatically fill today’s date in the form?

You can use the TODAY function to update the current date as the answer to a date question in the form.

You can use the TODAY function to update the current date as the answer to a date question in the form.


Let's take the example of a leave request form. Instead of asking the user to fill the request date, we can automatically update the today's date in the request date question.

Step 1: Add a date question in Google Forms.Step 1: Add a date question in Google Forms.

Step 2: Click on the Addon icon > Select Formfacade > Select Customize this form > Click on the Proceed button.Step 2: Click on the Addon icon > Select Formfacade > Select Customize this form > Click on the Proceed button.

In the Formfacade customize interface, click on the ⚙️icon next to the date question for request date.In the Formfacade customize interface, click on the ⚙️icon next to the date question for request date.

Step 3: Field settings screen will be displayed. Select the "Answer" tab and write the formula to update the current date.Step 3: Field settings screen will be displayed. Select the "Answer" tab and write the formula to update the current date.

Step 4: Write the TODAY() formula in the Calculate option as shown below.Step 4: Write the TODAY() formula in the Calculate option as shown below.



Thu Mar 07 2024
support ticker 1

Hi Rebecca, If you delete a form from Neartail, it will no longer be displayed in the Forms dashboard. I have restored this form for now. Please do not delete forms that you are planning to use. We will not be able to restore it once it is permanently deleted. Email notifications You can set up email notifications directly in Neartail. For detailed instructions, please refer to the help articles below. Send confirmation email to customers when they submit their order. https://neartail.com/order-form/send-confirmation-emails-to-customers.html Send notification email to your team for new orders: https://neartail.com/order-form/receive-notification-emails-for-new-orders.html

Mon Mar 04 2024
1122

2222

Mon Mar 04 2024
Pre-fill Fields in React Embed

Join us as we share the behind-the-scenes of bringing the Dexio Designs logo to life. It’s been a journey of self-discovery and boundless creativity. Hang tight, ’cause this story’s just getting started!

When we decided it was time to create a logo for Dexio Designs, our own design spot. We treated it like a big deal, just like any other job we’d do for a client. First We got real with ourselves. We wanted to identify our core values, what sets us apart, and how we want folks to see us. So, we did some thinking, gathered some info, and set some goals to guide us.


Associated words with dexio design brand and their core values

Discovery dive

Then came the fun part. We thought hard about what we like in logos: colors, fonts, vibes — you name it. After thinking about it all and getting a clear picture of what we wanted, we were good to go.

With our biases in check, we checked out what other design agencies were doing. We looked at their logos, trying to see what’s in trend and what’s conceptual.


We were all about exploring new possibilities and brainstorming ideas.. And let us tell you, Every fresh idea sparked our enthusiasm to explore and go beyond our limits.

The art of color selection

We chose a shade of blue for our logo because it’s bold and vibrant. Blue often conveys qualities such as trust, professionalism, calmness, and reliability. It can also evoke feelings of confidence and stability. It represents our agency’s dynamic and innovative spirit, always ready to make a splash in the design world. Plus, it’s just playing cool!


Mindful sketching

After studying the logos of various agencies, we grabbed a pen and paper and began sketching. We immersed ourselves in brainstorming and ended

Mon Mar 04 2024
qq

qqqqq

Mon Mar 04 2024
cv

xczxvxcv

Mon Mar 04 2024
ioioioioioi

opipiop

Mon Mar 04 2024
l;l;;ll;

l;;l

Mon Mar 04 2024
oooi

uluo

Mon Mar 04 2024
Enabling local shops to sell online

Local shops use Google Forms instead of Shopify to take online orders. Turns out, order forms produce 10 times more orders than Shopify. This is the story of how order forms beat ecommerce sites like Shopify at its own game.


Two years ago, I created a plugin to add calculations in Google Forms. Soon, local shops started using it to take online orders. Google Forms is the last place I expected online shopping to happen. So, I inquired why they didn't use Shopify. This is how one of the shop owners put it:

“My customers find it easy to use Google Forms. It looks similar to the menu card I have in my shop. But, the Shopify site is confusing for them. Especially senior citizens get lost on the site and do not know how to checkout.”

So after 20 years of eCommerce, Google Forms beats Shopify in the shopping experience? Lets see why:

1. Catalog page - Built for Books

Amazon started eCommerce by selling books. They boasted an extensive collection of books. Like any good library, they listed them as catalogs and let customers search and sort books. When Amazon grew, they used this catalog page for other product categories and browsing catalog pages became the default shopping experience. Soon enough, all eCommerce sites looked the same.

If you are running a bakery with 10 products, your customers don't need to search or sort them. But, tech-savvy early adopters did not question the need for catalog in such cases. So, eCommerce platforms like Shopify copied it and spread it to the rest of the world, even though it is not suitable for everyone.

2. Product page - Built for SEO

Think about how you find a new eCommerce store. Usually, you would search for a product you want to buy on Google - say headphones. Google lists the relevant stores that sell headphones, and you click on the top results and land on the product page of an eCommerce store. That's how you discover a new store.

To get you to that page, a store has to compete with hundreds of other sites by adding better product descriptions, photos, and reviews to the product page. Hence, the companies optimized these pages for SEO rather than user experience. Throw in some product recommendations and offers along with the existing navigation, you can end up anywhere on the site and lose track of what you want to buy.

3. Transaction fee - Built for acquiring new customers

Marketplaces like Amazon charge 20% commission on every sale made on their platform. If you are a seller who wants to grow fast, you can pay this fee and get new customers around the world. But, the problem is they never become your customers. Amazon doesn’t share any customer details so that you can engage with them and convert them into loyal customers. Instead, they own these customers and advertise the seller who pays the highest bid for their adversitements.

Shopify solved this problem by letting you own your customers. But, they still charge 3% for every sale made on their platform as payment fee. Shopify attracts new customers through SEO and there could be fraudulent payments. So, this fee is needed to compensate for the fraud. But, if you are a local shop who want your regular customers to order online, you are unlikely to have fraudulent payments. Paying 3% transaction fee just for the convenience of selling online seems high.


eCommerce store

Local shop

Audience

Global

Neighborhood

Type

New customers

Repeat customers

Channel

Google Search

Walk-in

Starting point

Product page

Aisles (Product category)

Discover

New stores for a product

New products in a shop

Behavior

Browsing

Buying

Trust

Low

High (No fraud)

Order form - Built for local shops

Buying at your local grocery store is very different from an eCommerce store. In local grocery stores, you are a regular customer. When you buy vegetables, you discover new products - such as seasonal fruits. While an eCommerce store is optimized for search and browse experience for new customers, a local store has your undivided attention and is optimal for buying experience.

The closest tool that mimics this in-person shopping experience is Google Forms. Google Forms looks similar to their menu card or McDonald's ordering kiosk for local shops. That's why they use it. But, Google Forms doesn't understand products or orders and can't produce meaningful reports or inventory. So, we imagined a form builder specializing in creating order forms. Based on the above 3 problems, we came up with these rules for our form builder:

1. Let shop owners design the catalog page

When there are thousands of products to choose from, you need consumers to sort and filter products. When there are 20 products, the shop owner knows what product to show first and how a newly added product should to be featured. Our form will allow the shop owner to specify where a product should appear.

2. Next button instead of product page navigation

The catalog page to product page navigation is complex for an ordinary customer. Often he loses track of products he wants to buy. Our order form will list all the products with a photo and a concise product description on one page. Only two buttons, back and next, are provided on each page to keep things simple.

3. Usage fee instead of a transaction fee

Transaction fee leads to bad behavior. Marketplaces like Amazon plead with sellers to join their platform during initial days. Once they grow big, they hide customer details from sellers and prevent direct communication between them. They worry customers will skip them and they will lose their transaction fee.

The above is true for platforms like Shopify too. Once they get addicted to their cut in transaction fee (via Stripe), they prevent sellers from using free payment options such as Venmo or CashApp. We will charge a flat subscription fee instead of a cut in the order amount to avoid this trap.

Mon Mar 04 2024
Name

2

Sat Mar 02 2024
s


Sat Mar 02 2024
daks das daks dka skda skd ak sdla kdalsd akld la dlaldsa sdkadsa sdkla d

blob:http://localhost:5000/a1d199cc-9a72-4173-a333-65042e6d03b7

Fri Mar 01 2024
sadasd asd asdas daksasdlkadka sdlkadska sdas dlas dalsd ada da sd

New Image

Fri Mar 01 2024
React Embed

You can use the Formfacade addon to embed the Google Forms on your React app without an iframe.

Pre-requisites

https://726a-2405-201-e017-30e3-ec51-4e45-3908-a33.ngrok-free.app/hk-store/formfacade-embed.html

Create a React app

If you haven't setup your React environment, install the node.js and create a react app.


Step 1:

Click here to download node.js


Step 2:

Install NPX globally by running the following command on your terminal.

npm install -g npx


Step 3: Generate a react app

npx create-react-app test-react-app

Install Formfacade/embed-react

Formfacade/embed-react is the Formfacade embed library to embed Google Forms in your React app without an iframe.


In your app directory, open the terminal and install the Formfacade Embed package:

npm install @formfacade/embed-react

Embed Google Forms in React app

Step 1:

Open your form in Google Forms > click on the addon icon > click Formfacade


Step 2:

Formfacade addon menu options will be displayed > click Embed in a webpage


Step 3:

Embed wizard will be displayed > select Embed in my React.js web app, click Next


Step 4:

Include the import statement below to import the Formfacade Embed component in your React app

import FormfacadeEmbed from "@formfacade/embed-react";


Step 5:

Add the Formfacade Embed code to your React app.

<FormfacadeEmbed

formFacadeURL="https://formfacade.com/.../classic.js/?div=ff-compose"

onSubmitForm={() => console.log('Form submitted')}

/>

1

2

3

4

5

5

3

1


















Fri Mar 01 2024
asdasd

asdas

da

sd

a

sd

asd

Fri Mar 01 2024
2

Welcome to react-native-gallery-view 👋

Version Documentation Maintenance

Gallery View for Images in React Native for both IOS and Android



🏠 Homepage

Install

npm install react-native-gallery-view

Usage

import React, { useState } from 'react';
import { SafeAreaView, ScrollView, Text } from 'react-native';
import { Gallery } from 'react-native-gallery-view';

export default App = ({ navigation, route, navigator }) => {
  const [images, setImages] = useState([{
    src: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQRpGmKrfBFE90_MyomlXre9OJhLyjMvfGm5w&usqp=CAU",
    id: "12345"
  }, {
    src: "https://st.depositphotos.com/1007995/1274/i/600/depositphotos_12746726-stock-photo-fashion-man-wearing- sunglasses-thinking.jpg",
    id: "12346"
  }, {
    src: "https://i.pinimg.com/736x/36/fc/e9/36fce9ed325c3303d858b01257bd76c3.jpg",
    id: "12347"
  }]);

  return (
    <SafeAreaView
      style={{
        flex: 1
      }}
      
    >
      <ScrollView
        style={{
          flex: 1,
        }}
        showsVerticalScrollIndicator={false}
     >
        {/* Basic Usage */}
        <Text
          style={{
            fontSize: 20,
            textAlign: "center",
            marginVertical: 20
          }}
        >
          Basic Usage for React Native Gallery View
        </Text>
        <Gallery
          images={images}
          activeIndex={0}
          navigator={navigator}
        />

        {/* Basic Usage */}
        <Text
          style={{
            fontSize: 20,
            textAlign: "center",
            marginVertical: 20
          }}
        >
          Customized usage of React Native Gallery View
        </Text>
        <Gallery
          thumbnailImageStyles={{
            height: 100,
            width: 100,
            borderRadius: 15,
          }}
          mainImageStyle={{
            height: 200,
          }}
          loaderColor="yellow"
          borderColor="orange"
          images={images}
          activeIndex={0}
          navigator={navigator}
          noImageFoundText={"No Image found custom text"}
        />
      </ScrollView>
    </SafeAreaView>
  )
}

Demo

Watch the video

list of available props for customization SliderBox:

Props

Value Type

Description

loaderColor

String Eg. "#000000"

Color for Lazy Loader in Main Image. default color is black

borderColor

String Eg. "red"

border color for the active Thumbnail Image. Default is red

thumbnailImageStyles

Object Eg. {height: 80 , width : 80}

Styling for the thumbnail images

mainImageStyle

Object Eg. {height: 250 , width : "90%"}

Styling for the Main image

noImageFoundText

String Eg. "No Images found"

Custom Text for Empty Images

Author

👤 Hari Karthyk (harikarthyk1407@gmail.com)

🤝 Contributing

Contributions, issues and feature requests are welcome!

Feel free to check issues page. You can also take a look at the contributing guide.

Show your support

Give a ⭐️ if this project helped you!


📝 License

Copyright © 2021 Hari Karthyk (harikarthyk1407@gmail.com).

This project is ISC licensed.

Readme

Keywords

Fri Mar 01 2024
sdfsdfdfsfsdsdfdfs

sweffssdf

Fri Mar 01 2024
Welcome to react-native-gallery-view 👋

Welcome to react-native-gallery-view 👋

Version Documentation Maintenance

Gallery View for Images in React Native for both IOS and Android



🏠 Homepage

Install

npm install react-native-gallery-view

Usage

import React, { useState } from 'react';
import { SafeAreaView, ScrollView, Text } from 'react-native';
import { Gallery } from 'react-native-gallery-view';

export default App = ({ navigation, route, navigator }) => {
  const [images, setImages] = useState([{
    src: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQRpGmKrfBFE90_MyomlXre9OJhLyjMvfGm5w&usqp=CAU",
    id: "12345"
  }, {
    src: "https://st.depositphotos.com/1007995/1274/i/600/depositphotos_12746726-stock-photo-fashion-man-wearing- sunglasses-thinking.jpg",
    id: "12346"
  }, {
    src: "https://i.pinimg.com/736x/36/fc/e9/36fce9ed325c3303d858b01257bd76c3.jpg",
    id: "12347"
  }]);

  return (
    <SafeAreaView
      style={{
        flex: 1
      }}
      
    >
      <ScrollView
        style={{
          flex: 1,
        }}
        showsVerticalScrollIndicator={false}
     >
        {/* Basic Usage */}
        <Text
          style={{
            fontSize: 20,
            textAlign: "center",
            marginVertical: 20
          }}
        >
          Basic Usage for React Native Gallery View
        </Text>
        <Gallery
          images={images}
          activeIndex={0}
          navigator={navigator}
        />

        {/* Basic Usage */}
        <Text
          style={{
            fontSize: 20,
            textAlign: "center",
            marginVertical: 20
          }}
        >
          Customized usage of React Native Gallery View
        </Text>
        <Gallery
          thumbnailImageStyles={{
            height: 100,
            width: 100,
            borderRadius: 15,
          }}
          mainImageStyle={{
            height: 200,
          }}
          loaderColor="yellow"
          borderColor="orange"
          images={images}
          activeIndex={0}
          navigator={navigator}
          noImageFoundText={"No Image found custom text"}
        />
      </ScrollView>
    </SafeAreaView>
  )
}

Demo

Watch the video

list of available props for customization SliderBox:

Props

Value Type

Description

loaderColor

String Eg. "#000000"

Color for Lazy Loader in Main Image. default color is black

borderColor

String Eg. "red"

border color for the active Thumbnail Image. Default is red

thumbnailImageStyles

Object Eg. {height: 80 , width : 80}

Styling for the thumbnail images

mainImageStyle

Object Eg. {height: 250 , width : "90%"}

Styling for the Main image

noImageFoundText

String Eg. "No Images found"

Custom Text for Empty Images

Author

👤 Hari Karthyk (harikarthyk1407@gmail.com)

🤝 Contributing

Contributions, issues and feature requests are welcome!

Feel free to check issues page. You can also take a look at the contributing guide.

Show your support

Give a ⭐️ if this project helped you!


📝 License

Copyright © 2021 Hari Karthyk (harikarthyk1407@gmail.com).

This project is ISC licensed.

Readme

Keywords

Fri Mar 01 2024
Video Embed in Twillio

Step 1

  1. Create an account on Twilio: https://www.twilio.com/console

  2. Now you have to create an API KEY for your App

  3. Go to settings → API keys → no create your API KEY


  1. take a copy for your ACCOUNT_SID, APK_SID, and APK_KEY


Account SID present in the Dashboard Screen


For API Key have some name (click on generate key)


Make a not of SID and Secret Key for later use

Step 2

→ Now create your server using Node.js



Fri Mar 01 2024
11111The journey of crafting Dexio

Join us as we share the behind-the-scenes of bringing the Dexio Designs logo to life. It’s been a journey of self-discovery and boundless creativity. Hang tight, ’cause this story’s just getting started!

When we decided it was time to create a logo for Dexio Designs, our own design spot. We treated it like a big deal, just like any other job we’d do for a client. First We got real with ourselves. We wanted to identify our core values, what sets us apart, and how we want folks to see us. So, we did some thinking, gathered some info, and set some goals to guide us.


Associated words with dexio design brand and their core values

Discovery dive

Then came the fun part. We thought hard about what we like in logos: colors, fonts, vibes — you name it. After thinking about it all and getting a clear picture of what we wanted, we were good to go.

With our biases in check, we checked out what other design agencies were doing. We looked at their logos, trying to see what’s in trend and what’s conceptual.


We were all about exploring new possibilities and brainstorming ideas.. And let us tell you, Every fresh idea sparked our enthusiasm to explore and go beyond our limits.

The art of color selection

We chose a shade of blue for our logo because it’s bold and vibrant. Blue often conveys qualities such as trust, professionalism, calmness, and reliability. It can also evoke feelings of confidence and stability. It represents our agency’s dynamic and innovative spirit, always ready to make a splash in the design world. Plus, it’s just playing cool!


Mindful sketching

After studying the logos of various agencies, we grabbed a pen and paper and began sketching. We immersed ourselves in brainstorming and ended up with a bunch of cool paper sketches, each brimming with ideas and creativity.


For our initial logo attempt, We went with some cool typography vibes. Had to make that ‘X’ in “Dexio” pop, showcasing our experience with flair! Then, in the next round, we heightened the prominence of the ‘X’ even further. But guess what? We didn’t stop there! We added some sleek lines to connect the dots, showing the bond between Dexio and Experience.

Artistic sketching

So, for my next move, we had this wild idea: why not take that bold ‘X’ from our first logo and jazz it up a bit? We added some extra lines, and boom! It started looking like butterfly wings, but with a little edge to ’em. It got me thinking, you know? So, We dropped it right in the middle of ‘de’ and ‘io’ to see how it all clicked together.


Signing off our signature

Alright, so here’s how the final logo story unfolded: We took that ‘X’ out again and gave it some slick, curved edges. Lo and behold, it started resembling both an infinity symbol and an hourglass! Pretty nifty, right?


So, the infinity loop morphed into an hourglass, and we thought, why not tilt it sideways for a cool twist?


But you know us, always chasing that extra spark. When we were tinkering with it digitally, we had a little “Aha!” moment. My cursor was sitting at an angle, forming this funky triangle shape.


The hidden depths of our logo





Here it is, folks! Our final logo — a blend of creativity and style that screams ‘us’ in every pixel. We coined this voyage ‘Stupidly Curious…’ and it swiftly morphed into the mantra of our very being.” 🌟


Just when we thought we had it all wrapped up, a spark of genius hit — how cool would our logo look animated? But hey, no rush, let’s wait for the next episode!

- Written by Manikandan & Ganga Selvi

Fri Mar 01 2024
Day in The Life of a Software Engineer (ep. 43)

Start the FREE Software Development Introduction Course with CourseCareers Now:

(also get $50 off from the full course)

https://coursecareers.com/a/marko?cou...

Follow me on instagram: @withmarko

Hey, I made a discord server: https://discord.gg/4UmRbQh7VA

=== Links ===

☕️ Wallpaper packs episode

https://youtu.be/itUsgSQv3YI

☕️ My Notion Template:

https://links.withmarko.com/notion-te...

☕️ Wallpapers:

https://withmarko.com/wallpapers

☕️ My phone:

https://links.withmarko.com/phone

☕️ My Free Window Manager:

https://links.withmarko.com/one-menu

☕️ My Productivity Mouse:

https://links.withmarko.com/mx-master-3s

☕️ My Headphones:

https://links.withmarko.com/headphones

☕️ My Microphone Setup

https://links.withmarko.com/microphone

https://links.withmarko.com/audio-int...

https://links.withmarko.com/cloud-lifter

☕️ My Camera

https://links.withmarko.com/main-camera

https://links.withmarko.com/main-lens

=== Business Inquiries ===

Email: business@withmarko.com

Instagram: @withmarko

=== Affiliate Disclaimer ===

I might earn a small commission at no cost to you, if you click on the product links above.

Fri Mar 01 2024
markdown-to-txt

Converts markdown to plain text. Uses marked to correctly parse and produce a clean version of the text. This correctly handles markdown elements like code blocks, unlike similar libraries. TypeScript declarations are provided out of the box.



Usage

markdown-to-txt exports a single function for conversion. Call it like so

const { markdownToTxt } = require('markdown-to-txt');

markdownToTxt('Some *quoted* `*code*`'); // "Some quoted *code*"

Or in TypeScript/ES modules

import markdownToTxt from 'markdown-to-txt';

markdownToTxt('Some *quoted* `*code*`'); // "Some quoted *code*"

markdownToTxt accept MarkedOptions as its second argument.

NOTE: The output of markdownToTxt is not sanitized. The output may contain valid HTML, JavaScript, etc. Be sure to sanitize if the output is intended for web use.



  1. asdasd

  2. as

  3. das

  4. d

  5. asd


  • asdasd

  • as

  • d

  • asd

  • as

  • d


asdasdsda

asdasdsda

asddasdas

dasdasasdsda


dasdasasd

dasdas

asdasdsda



asdasddas


sadasdasd

asddassda


asdsdaasd

sdaasd

asdasdasd








Fri Mar 01 2024
Building A Node.js Express API To Convert Markdown To HTML

Markdown is a lightweight text markup language that allows the marked text to be converted to various formats. The original goal of creating Markdown was of enabling people “to write using an easy-to-read and easy-to-write plain text format” and to optionally convert it to structurally valid XHTML (or HTML). Currently, with WordPress supporting Markdown, the format has become even more widely used.

The purpose of writing the article is to show you how to use Node.js and the Express framework to create an API endpoint. The context in which we will be learning this is by building an application that converts Markdown syntax to HTML. We will also be adding an authentication mechanism to the API so as to prevent misuse of our application.

A Markdown Node.Js Application #

Our teeny-tiny application, which we will call ‘Markdown Converter’, will enable us to post Markdown-styled text and retrieve an HTML version. The application will be created using the Node.js Express framework, and support authentication for conversion requests.

We will build the application in small stages — initially creating a scaffold using Express and then adding various features like authentication as we go along. So let us start with the initial stage of building the application by creating a scaffold.

Fri Mar 01 2024
POST 4

NE Waas

Mon Feb 26 2024
POST 4

asdasdasd

Mon Feb 26 2024
POST 3

asdsda

Mon Feb 26 2024
POST 2

asdasd

Mon Feb 26 2024
POST 1

context.activeAnnouncementIndex

Mon Feb 26 2024
dx

1212

Mon Feb 26 2024
New Page for this announcmenet

const prms = [];

const prms = [];

const prms = [];


Mon Feb 26 2024
this.announcement11

this.announcementthis.announcementthis.announcement

Mon Feb 26 2024
this.announcement

this.announcement

Mon Feb 26 2024
onPublishAnnouncementHandler

asdasd

Mon Feb 26 2024
1111

TEST


TEST


TEST



Mon Feb 26 2024
ads

asd

Mon Feb 26 2024
Formfacade 1

Formfacade is a fictitious company that specializes in creating innovative solutions for data collection and form generation. The company was founded in 2018 by a group of tech enthusiasts who saw a need for simplifying the process of creating and managing forms for businesses and organizations.

Initially, Formfacade started as a small startup operating out of a garage, with its founders working tirelessly to develop their flagship product: an online platform that allows users to easily create, customize, and embed forms into their websites or applications without any coding knowledge required.

As Formfacade gained traction in the market, it quickly grew in popularity among businesses of all sizes, from startups to large enterprises. Its intuitive interface, robust features, and seamless integration capabilities set it apart from other form-building tools available at the time.

One of the key milestones in Formfacade's journey was when it secured its first round of funding from venture capitalists, allowing the company to expand its team, enhance its product offerings, and invest in marketing efforts to reach a wider audience.

Over the years, Formfacade continued to innovate and evolve its platform, introducing new features such as advanced form analytics, integration with popular third-party applications, and support for mobile devices. Its commitment to providing exceptional user experience and reliable customer support helped solidify its position as a leader in the form-building industry.

As Formfacade's customer base continued to grow, so did its reputation for delivering high-quality solutions that streamline data collection processes and improve efficiency for businesses across various sectors.

Today, Formfacade stands as a testament to the power of innovation and entrepreneurship, empowering organizations around the world to easily create and manage forms, collect valuable data, and drive better decision-making. With a dedicated team of developers, designers, and customer support specialists, Formfacade remains committed to pushing the boundaries of what's possible in the world of online form creation.

Mon Feb 26 2024
Formfacade Story

Formfacade is a fictitious company that specializes in creating innovative solutions for data collection and form generation. The company was founded in 2018 by a group of tech enthusiasts who saw a need for simplifying the process of creating and managing forms for businesses and organizations.

Initially, Formfacade started as a small startup operating out of a garage, with its founders working tirelessly to develop their flagship product: an online platform that allows users to easily create, customize, and embed forms into their websites or applications without any coding knowledge required.

As Formfacade gained traction in the market, it quickly grew in popularity among businesses of all sizes, from startups to large enterprises. Its intuitive interface, robust features, and seamless integration capabilities set it apart from other form-building tools available at the time.

One of the key milestones in Formfacade's journey was when it secured its first round of funding from venture capitalists, allowing the company to expand its team, enhance its product offerings, and invest in marketing efforts to reach a wider audience.

Over the years, Formfacade continued to innovate and evolve its platform, introducing new features such as advanced form analytics, integration with popular third-party applications, and support for mobile devices. Its commitment to providing exceptional user experience and reliable customer support helped solidify its position as a leader in the form-building industry.

As Formfacade's customer base continued to grow, so did its reputation for delivering high-quality solutions that streamline data collection processes and improve efficiency for businesses across various sectors.

Today, Formfacade stands as a testament to the power of innovation and entrepreneurship, empowering organizations around the world to easily create and manage forms, collect valuable data, and drive better decision-making. With a dedicated team of developers, designers, and customer support specialists, Formfacade remains committed to pushing the boundaries of what's possible in the world of online form creation.

Mon Feb 26 2024
Fun fact

One fun fact about the Roman Empire is that they used urine as a cleaning agent. Urine, particularly from animals like humans and goats, was collected and used in various cleaning solutions due to its ammonia content, which acted as a natural disinfectant. Romans would use it to clean their homes, wash clothes, and even brush their teeth! This practice might sound strange to us today, but it was quite common in ancient Rome.



Mon Feb 26 2024
The Art of Morning Rituals: Starting Your Day with the Perfect Mug

Embark on a journey into the serene realm of morning rituals with our captivating collection of mugs! Each sip is a sacred moment, an opportunity to embrace the art of starting your day right. Explore the intimate connection between mind, body, and spirit as you immerse yourself in the gentle embrace of your favorite cup. From the rich aroma of freshly brewed coffee to the soothing warmth of herbal tea, every sip is a symphony of sensory delight.


Discover the transformative power of mindfulness as you craft your personalized morning ritual around the perfect mug. Let its unique design and comforting touch guide you through moments of tranquility and reflection, setting the tone for a day filled with purpose and intention. Whether you're savoring a quiet moment alone or sharing laughter with loved ones over a steaming cup of cocoa, our curated selection of mugs is here to inspire and delight.


Elevate your mornings to new heights as you awaken your senses and nourish your soul with the simple pleasure of a well-crafted mug. Begin each day anew, one sip at a time, with the assurance that your perfect companion is always by your side, ready to accompany you on your journey of self-discovery and renewal.


-----

By ChatGPT.

Sun Feb 25 2024
Terms and Conditions
TERMS OF USE Last updated February 09, 2021 AGREEMENT TO TERMS These Terms of Use constitute a legally binding agreement made between you, whether personally or on behalf of an entity (“you”) and Mailrecipe LLC, doing business as Neartail.com ("Neartail.com", “we”, “us”, or “our”), concerning your access to and use of the https://neartail.com website as well as any other media form, media channel, mobile website or mobile application related, linked, or otherwise connected thereto (collectively, the “Site”). You agree that by accessing the Site, you have read, understood, and agree to be bound by all of these Terms of Use. IF YOU DO NOT AGREE WITH ALL OF THESE TERMS OF USE, THEN YOU ARE EXPRESSLY PROHIBITED FROM USING THE SITE AND YOU MUST DISCONTINUE USE IMMEDIATELY. Supplemental terms and conditions or documents that may be posted on the Site from time to time are hereby expressly incorporated herein by reference. We reserve the right, in our sole discretion, to make changes or modifications to these Terms of Use at any time and for any reason. We will alert you about any changes by updating the “Last updated” date of these Terms of Use, and you waive any right to receive specific notice of each such change. It is your responsibility to periodically review these Terms of Use to stay informed of updates. You will be subject to, and will be deemed to have been made aware of and to have accepted, the changes in any revised Terms of Use by your continued use of the Site after the date such revised Terms of Use are posted. The information provided on the Site is not intended for distribution to or use by any person or entity in any jurisdiction or country where such distribution or use would be contrary to law or regulation or which would subject us to any registration requirement within such jurisdiction or country. Accordingly, those persons who choose to access the Site from other locations do so on their own initiative and are solely responsible for compliance with local laws, if and to the extent local laws are applicable. The Site is not tailored to comply with industry-specific regulations (Health Insurance Portability and Accountability Act (HIPAA), Federal Information Security Management Act (FISMA), etc.), so if your interactions would be subjected to such laws, you may not use this Site. You may not use the Site in a way that would violate the Gramm-Leach-Bliley Act (GLBA). The Site is intended for users who are at least 13 years of age. All users who are minors in the jurisdiction in which they reside (generally under the age of 18) must have the permission of, and be directly supervised by, their parent or guardian to use the Site. If you are a minor, you must have your parent or guardian read and agree to these Terms of Use prior to you using the Site. INTELLECTUAL PROPERTY RIGHTS Unless otherwise indicated, the Site is our proprietary property and all source code, databases, functionality, software, website designs, audio, video, text, photographs, and graphics on the Site (collectively, the “Content”) and the trademarks, service marks, and logos contained therein (the “Marks”) are owned or controlled by us or licensed to us, and are protected by copyright and trademark laws and various other intellectual property rights and unfair competition laws of the United States, international copyright laws, and international conventions. The Content and the Marks are provided on the Site “AS IS” for your information and personal use only. Except as expressly provided in these Terms of Use, no part of the Site and no Content or Marks may be copied, reproduced, aggregated, republished, uploaded, posted, publicly displayed, encoded, translated, transmitted, distributed, sold, licensed, or otherwise exploited for any commercial purpose whatsoever, without our express prior written permission. Provided that you are eligible to use the Site, you are granted a limited license to access and use the Site and to download or print a copy of any portion of the Content to which you have properly gained access solely for your personal, non-commercial use. We reserve all rights not expressly granted to you in and to the Site, the Content and the Marks. USER REPRESENTATIONS By using the Site, you represent and warrant that: (1) all registration information you submit will be true, accurate, current, and complete; (2) you will maintain the accuracy of such information and promptly update such registration information as necessary; (3) you have the legal capacity and you agree to comply with these Terms of Use; (4) you are not under the age of 13; (5) you are not a minor in the jurisdiction in which you reside, or if a minor, you have received parental permission to use the Site; (6) you will not access the Site through automated or non-human means, whether through a bot, script or otherwise; (7) you will not use the Site for any illegal or unauthorized purpose; and (8) your use of the Site will not violate any applicable law or regulation. If you provide any information that is untrue, inaccurate, not current, or incomplete, we have the right to suspend or terminate your account and refuse any and all current or future use of the Site (or any portion thereof). USER REGISTRATION You may be required to register with the Site. You agree to keep your password confidential and will be responsible for all use of your account and password. We reserve the right to remove, reclaim, or change a username you select if we determine, in our sole discretion, that such username is inappropriate, obscene, or otherwise objectionable. FEES AND PAYMENT We accept the following forms of payment: - Visa - Mastercard - Discover - American Express - PayPal You may be required to purchase or pay a fee to access some of our services. You agree to provide current, complete, and accurate purchase and account information for all purchases made via the Site. You further agree to promptly update account and payment information, including email address, payment method, and payment card expiration date, so that we can complete your transactions and contact you as needed. We bill you through an online billing account for purchases made via the Site. Sales tax will be added to the price of purchases as deemed required by us. We may change prices at any time. All payments shall be in U.S. dollars. You agree to pay all charges or fees at the prices then in effect for your purchases, and you authorize us to charge your chosen payment provider for any such amounts upon making your purchase. If your purchase is subject to recurring charges, then you consent to our charging your payment method on a recurring basis without requiring your prior approval for each recurring charge, until you notify us of your cancellation. We reserve the right to correct any errors or mistakes in pricing, even if we have already requested or received payment. We also reserve the right to refuse any order placed through the Site. FREE TRIAL We offer a 7-day free trial to new users who register with the Site. The account will not be charged and the subscription will be suspended until upgraded to a paid version at the end of the free trial. CANCELLATION All purchases are non-refundable. You can cancel your subscription at any time by contacting us using the contact information provided below. Your cancellation will take effect at the end of the current paid term. If you are unsatisfied with our services, please email us at support@neartail.com. PROHIBITED ACTIVITIES You may not access or use the Site for any purpose other than that for which we make the Site available. The Site may not be used in connection with any commercial endeavors except those that are specifically endorsed or approved by us. As a user of the Site, you agree not to: 1. Circumvent, disable, or otherwise interfere with security-related features of the Site, including features that prevent or restrict the use or copying of any Content or enforce limitations on the use of the Site and/or the Content contained therein. 2. Trick, defraud, or mislead us and other users, especially in any attempt to learn sensitive account information such as user passwords. 3. Make improper use of our support services or submit false reports of abuse or misconduct. 4. Attempt to impersonate another user or person or use the username of another user. 5. Use any information obtained from the Site in order to harass, abuse, or harm another person. 6. Decipher, decompile, disassemble, or reverse engineer any of the software comprising or in any way making up a part of the Site. 7. Attempt to bypass any measures of the Site designed to prevent or restrict access to the Site, or any portion of the Site. 8. Harass, annoy, intimidate, or threaten any of our employees or agents engaged in providing any portion of the Site to you. 9. Delete the copyright or other proprietary rights notice from any Content. 10. Upload or transmit (or attempt to upload or to transmit) viruses, Trojan horses, or other material, including excessive use of capital letters and spamming (continuous posting of repetitive text), that interferes with any party’s uninterrupted use and enjoyment of the Site or modifies, impairs, disrupts, alters, or interferes with the use, features, functions, operation, or maintenance of the Site. 11. Upload or transmit (or attempt to upload or to transmit) any material that acts as a passive or active information collection or transmission mechanism, including without limitation, clear graphics interchange formats (“gifs”), 1×1 pixels, web bugs, cookies, or other similar devices (sometimes referred to as “spyware” or “passive collection mechanisms” or “pcms”). 12. Disparage, tarnish, or otherwise harm, in our opinion, us and/or the Site. 13. Use the Site in a manner inconsistent with any applicable laws or regulations. 14. Systematically retrieve data or other content from the Site to create or compile, directly or indirectly, a collection, compilation, database, or directory without written permission from us. USER GENERATED CONTRIBUTIONS The Site may invite you to chat, contribute to, or participate in blogs, message boards, online forums, and other functionality, and may provide you with the opportunity to create, submit, post, display, transmit, perform, publish, distribute, or broadcast content and materials to us or on the Site, including but not limited to text, writings, video, audio, photographs, graphics, comments, suggestions, or personal information or other material (collectively, "Contributions"). Contributions may be viewable by other users of the Site and through third-party websites. As such, any Contributions you transmit may be treated as non-confidential and non-proprietary. When you create or make available any Contributions, you thereby represent and warrant that: 1. The creation, distribution, transmission, public display, or performance, and the accessing, downloading, or copying of your Contributions do not and will not infringe the proprietary rights, including but not limited to the copyright, patent, trademark, trade secret, or moral rights of any third party. 2. You are the creator and owner of or have the necessary licenses, rights, consents, releases, and permissions to use and to authorize us, the Site, and other users of the Site to use your Contributions in any manner contemplated by the Site and these Terms of Use. 3. You have the written consent, release, and/or permission of each and every identifiable individual person in your Contributions to use the name or likeness of each and every such identifiable individual person to enable inclusion and use of your Contributions in any manner contemplated by the Site and these Terms of Use. 4. Your Contributions are not false, inaccurate, or misleading. 5. Your Contributions are not unsolicited or unauthorized advertising, promotional materials, pyramid schemes, chain letters, spam, mass mailings, or other forms of solicitation. 6. Your Contributions are not obscene, lewd, lascivious, filthy, violent, harassing, libelous, slanderous, or otherwise objectionable (as determined by us). 7. Your Contributions do not ridicule, mock, disparage, intimidate, or abuse anyone. 8. Your Contributions are not used to harass or threaten (in the legal sense of those terms) any other person and to promote violence against a specific person or class of people. 9. Your Contributions do not violate any applicable law, regulation, or rule. 10. Your Contributions do not violate the privacy or publicity rights of any third party. 11. Your Contributions do not contain any material that solicits personal information from anyone under the age of 18 or exploits people under the age of 18 in a sexual or violent manner. 12. Your Contributions do not violate any applicable law concerning child pornography, or otherwise intended to protect the health or well-being of minors. 13. Your Contributions do not include any offensive comments that are connected to race, national origin, gender, sexual preference, or physical handicap. 14. Your Contributions do not otherwise violate, or link to material that violates, any provision of these Terms of Use, or any applicable law or regulation. Any use of the Site in violation of the foregoing violates these Terms of Use and may result in, among other things, termination or suspension of your rights to use the Site. CONTRIBUTION LICENSE By posting your Contributions to any part of the Site or making Contributions accessible to the Site by linking your account from the Site to any of your social networking accounts, you automatically grant, and you represent and warrant that you have the right to grant, to us an unrestricted, unlimited, irrevocable, perpetual, non-exclusive, transferable, royalty-free, fully-paid, worldwide right, and license to host, use, copy, reproduce, disclose, sell, resell, publish, broadcast, retitle, archive, store, cache, publicly perform, publicly display, reformat, translate, transmit, excerpt (in whole or in part), and distribute such Contributions (including, without limitation, your image and voice) for any purpose, commercial, advertising, or otherwise, and to prepare derivative works of, or incorporate into other works, such Contributions, and grant and authorize sublicenses of the foregoing. The use and distribution may occur in any media formats and through any media channels. This license will apply to any form, media, or technology now known or hereafter developed, and includes our use of your name, company name, and franchise name, as applicable, and any of the trademarks, service marks, trade names, logos, and personal and commercial images you provide. You waive all moral rights in your Contributions, and you warrant that moral rights have not otherwise been asserted in your Contributions. We do not assert any ownership over your Contributions. You retain full ownership of all of your Contributions and any intellectual property rights or other proprietary rights associated with your Contributions. We are not liable for any statements or representations in your Contributions provided by you in any area on the Site. You are solely responsible for your Contributions to the Site and you expressly agree to exonerate us from any and all responsibility and to refrain from any legal action against us regarding your Contributions. We have the right, in our sole and absolute discretion, (1) to edit, redact, or otherwise change any Contributions; (2) to re-categorize any Contributions to place them in more appropriate locations on the Site; and (3) to pre-screen or delete any Contributions at any time and for any reason, without notice. We have no obligation to monitor your Contributions. GUIDELINES FOR REVIEWS We may provide you areas on the Site to leave reviews or ratings. When posting a review, you must comply with the following criteria: (1) you should have firsthand experience with the person/entity being reviewed; (2) your reviews should not contain offensive profanity, or abusive, racist, offensive, or hate language; (3) your reviews should not contain discriminatory references based on religion, race, gender, national origin, age, marital status, sexual orientation, or disability; (4) your reviews should not contain references to illegal activity; (5) you should not be affiliated with competitors if posting negative reviews; (6) you should not make any conclusions as to the legality of conduct; (7) you may not post any false or misleading statements; and (8) you may not organize a campaign encouraging others to post reviews, whether positive or negative. We may accept, reject, or remove reviews in our sole discretion. We have absolutely no obligation to screen reviews or to delete reviews, even if anyone considers reviews objectionable or inaccurate. Reviews are not endorsed by us, and do not necessarily represent our opinions or the views of any of our affiliates or partners. We do not assume liability for any review or for any claims, liabilities, or losses resulting from any review. By posting a review, you hereby grant to us a perpetual, non-exclusive, worldwide, royalty-free, fully-paid, assignable, and sublicensable right and license to reproduce, modify, translate, transmit by any means, display, perform, and/or distribute all content relating to reviews. SOCIAL MEDIA As part of the functionality of the Site, you may link your account with online accounts you have with third-party service providers (each such account, a “Third-Party Account”) by either: (1) providing your Third-Party Account login information through the Site; or (2) allowing us to access your Third-Party Account, as is permitted under the applicable terms and conditions that govern your use of each Third-Party Account. You represent and warrant that you are entitled to disclose your Third-Party Account login information to us and/or grant us access to your Third-Party Account, without breach by you of any of the terms and conditions that govern your use of the applicable Third-Party Account, and without obligating us to pay any fees or making us subject to any usage limitations imposed by the third-party service provider of the Third-Party Account. By granting us access to any Third-Party Accounts, you understand that (1) we may access, make available, and store (if applicable) any content that you have provided to and stored in your Third-Party Account (the “Social Network Content”) so that it is available on and through the Site via your account, including without limitation any friend lists and (2) we may submit to and receive from your Third-Party Account additional information to the extent you are notified when you link your account with the Third-Party Account. Depending on the Third-Party Accounts you choose and subject to the privacy settings that you have set in such Third-Party Accounts, personally identifiable information that you post to your Third-Party Accounts may be available on and through your account on the Site. Please note that if a Third-Party Account or associated service becomes unavailable or our access to such Third-Party Account is terminated by the third-party service provider, then Social Network Content may no longer be available on and through the Site. You will have the ability to disable the connection between your account on the Site and your Third-Party Accounts at any time. PLEASE NOTE THAT YOUR RELATIONSHIP WITH THE THIRD-PARTY SERVICE PROVIDERS ASSOCIATED WITH YOUR THIRD-PARTY ACCOUNTS IS GOVERNED SOLELY BY YOUR AGREEMENT(S) WITH SUCH THIRD-PARTY SERVICE PROVIDERS. We make no effort to review any Social Network Content for any purpose, including but not limited to, for accuracy, legality, or non-infringement, and we are not responsible for any Social Network Content. You acknowledge and agree that we may access your email address book associated with a Third-Party Account and your contacts list stored on your mobile device or tablet computer solely for purposes of identifying and informing you of those contacts who have also registered to use the Site. You can deactivate the connection between the Site and your Third-Party Account by contacting us using the contact information below or through your account settings (if applicable). We will attempt to delete any information stored on our servers that was obtained through such Third-Party Account, except the username and profile picture that become associated with your account. SUBMISSIONS You acknowledge and agree that any questions, comments, suggestions, ideas, feedback, or other information regarding the Site ("Submissions") provided by you to us are non-confidential and shall become our sole property. We shall own exclusive rights, including all intellectual property rights, and shall be entitled to the unrestricted use and dissemination of these Submissions for any lawful purpose, commercial or otherwise, without acknowledgment or compensation to you. You hereby waive all moral rights to any such Submissions, and you hereby warrant that any such Submissions are original with you or that you have the right to submit such Submissions. You agree there shall be no recourse against us for any alleged or actual infringement or misappropriation of any proprietary right in your Submissions. THIRD-PARTY WEBSITES AND CONTENT The Site may contain (or you may be sent via the Site) links to other websites ("Third-Party Websites") as well as articles, photographs, text, graphics, pictures, designs, music, sound, video, information, applications, software, and other content or items belonging to or originating from third parties ("Third-Party Content"). Such Third-Party Websites and Third-Party Content are not investigated, monitored, or checked for accuracy, appropriateness, or completeness by us, and we are not responsible for any Third-Party Websites accessed through the Site or any Third-Party Content posted on, available through, or installed from the Site, including the content, accuracy, offensiveness, opinions, reliability, privacy practices, or other policies of or contained in the Third-Party Websites or the Third-Party Content. Inclusion of, linking to, or permitting the use or installation of any Third-Party Websites or any Third-Party Content does not imply approval or endorsement thereof by us. If you decide to leave the Site and access the Third-Party Websites or to use or install any Third-Party Content, you do so at your own risk, and you should be aware these Terms of Use no longer govern. You should review the applicable terms and policies, including privacy and data gathering practices, of any website to which you navigate from the Site or relating to any applications you use or install from the Site. Any purchases you make through Third-Party Websites will be through other websites and from other companies, and we take no responsibility whatsoever in relation to such purchases which are exclusively between you and the applicable third party. You agree and acknowledge that we do not endorse the products or services offered on Third-Party Websites and you shall hold us harmless from any harm caused by your purchase of such products or services. Additionally, you shall hold us harmless from any losses sustained by you or harm caused to you relating to or resulting in any way from any Third-Party Content or any contact with Third-Party Websites. U.S. GOVERNMENT RIGHTS Our services are “commercial items” as defined in Federal Acquisition Regulation (“FAR”) 2.101. If our services are acquired by or on behalf of any agency not within the Department of Defense (“DOD”), our services are subject to the terms of these Terms of Use in accordance with FAR 12.212 (for computer software) and FAR 12.211 (for technical data). If our services are acquired by or on behalf of any agency within the Department of Defense, our services are subject to the terms of these Terms of Use in accordance with Defense Federal Acquisition Regulation (“DFARS”) 227.7202‑3. In addition, DFARS 252.227‑7015 applies to technical data acquired by the DOD. This U.S. Government Rights clause is in lieu of, and supersedes, any other FAR, DFARS, or other clause or provision that addresses government rights in computer software or technical data under these Terms of Use. SITE MANAGEMENT We reserve the right, but not the obligation, to: (1) monitor the Site for violations of these Terms of Use; (2) take appropriate legal action against anyone who, in our sole discretion, violates the law or these Terms of Use, including without limitation, reporting such user to law enforcement authorities; (3) in our sole discretion and without limitation, refuse, restrict access to, limit the availability of, or disable (to the extent technologically feasible) any of your Contributions or any portion thereof; (4) in our sole discretion and without limitation, notice, or liability, to remove from the Site or otherwise disable all files and content that are excessive in size or are in any way burdensome to our systems; and (5) otherwise manage the Site in a manner designed to protect our rights and property and to facilitate the proper functioning of the Site. PRIVACY POLICY We care about data privacy and security. Please review our Privacy Policy: https://neartail.com/site-builder/privacy.html. By using the Site, you agree to be bound by our Privacy Policy, which is incorporated into these Terms of Use. Please be advised the Site is hosted in the United States. If you access the Site from any other region of the world with laws or other requirements governing personal data collection, use, or disclosure that differ from applicable laws in the United States, then through your continued use of the Site, you are transferring your data to the United States, and you agree to have your data transferred to and processed in the United States. Further, we do not knowingly accept, request, or solicit information from children or knowingly market to children. Therefore, in accordance with the U.S. Children’s Online Privacy Protection Act, if we receive actual knowledge that anyone under the age of 13 has provided personal information to us without the requisite and verifiable parental consent, we will delete that information from the Site as quickly as is reasonably practical. TERM AND TERMINATION These Terms of Use shall remain in full force and effect while you use the Site. WITHOUT LIMITING ANY OTHER PROVISION OF THESE TERMS OF USE, WE RESERVE THE RIGHT TO, IN OUR SOLE DISCRETION AND WITHOUT NOTICE OR LIABILITY, DENY ACCESS TO AND USE OF THE SITE (INCLUDING BLOCKING CERTAIN IP ADDRESSES), TO ANY PERSON FOR ANY REASON OR FOR NO REASON, INCLUDING WITHOUT LIMITATION FOR BREACH OF ANY REPRESENTATION, WARRANTY, OR COVENANT CONTAINED IN THESE TERMS OF USE OR OF ANY APPLICABLE LAW OR REGULATION. WE MAY TERMINATE YOUR USE OR PARTICIPATION IN THE SITE OR DELETE YOUR ACCOUNT AND ANY CONTENT OR INFORMATION THAT YOU POSTED AT ANY TIME, WITHOUT WARNING, IN OUR SOLE DISCRETION. If we terminate or suspend your account for any reason, you are prohibited from registering and creating a new account under your name, a fake or borrowed name, or the name of any third party, even if you may be acting on behalf of the third party. In addition to terminating or suspending your account, we reserve the right to take appropriate legal action, including without limitation pursuing civil, criminal, and injunctive redress. MODIFICATIONS AND INTERRUPTIONS We reserve the right to change, modify, or remove the contents of the Site at any time or for any reason at our sole discretion without notice. However, we have no obligation to update any information on our Site. We also reserve the right to modify or discontinue all or part of the Site without notice at any time. We will not be liable to you or any third party for any modification, price change, suspension, or discontinuance of the Site. We cannot guarantee the Site will be available at all times. We may experience hardware, software, or other problems or need to perform maintenance related to the Site, resulting in interruptions, delays, or errors. We reserve the right to change, revise, update, suspend, discontinue, or otherwise modify the Site at any time or for any reason without notice to you. You agree that we have no liability whatsoever for any loss, damage, or inconvenience caused by your inability to access or use the Site during any downtime or discontinuance of the Site. Nothing in these Terms of Use will be construed to obligate us to maintain and support the Site or to supply any corrections, updates, or releases in connection therewith. GOVERNING LAW These Terms of Use and your use of the Site are governed by and construed in accordance with the laws of the State of Delaware applicable to agreements made and to be entirely performed within the State of Delaware, without regard to its conflict of law principles. DISPUTE RESOLUTION Any legal action of whatever nature brought by either you or us (collectively, the “Parties” and individually, a “Party”) shall be commenced or prosecuted in the state and federal courts located in United States, Delaware, and the Parties hereby consent to, and waive all defenses of lack of personal jurisdiction and forum non conveniens with respect to venue and jurisdiction in such state and federal courts. Application of the United Nations Convention on Contracts for the International Sale of Goods and the Uniform Computer Information Transaction Act (UCITA) are excluded from these Terms of Use. CORRECTIONS There may be information on the Site that contains typographical errors, inaccuracies, or omissions, including descriptions, pricing, availability, and various other information. We reserve the right to correct any errors, inaccuracies, or omissions and to change or update the information on the Site at any time, without prior notice. DISCLAIMER THE SITE IS PROVIDED ON AN AS-IS AND AS-AVAILABLE BASIS. YOU AGREE THAT YOUR USE OF THE SITE AND OUR SERVICES WILL BE AT YOUR SOLE RISK. TO THE FULLEST EXTENT PERMITTED BY LAW, WE DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED, IN CONNECTION WITH THE SITE AND YOUR USE THEREOF, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. WE MAKE NO WARRANTIES OR REPRESENTATIONS ABOUT THE ACCURACY OR COMPLETENESS OF THE SITE’S CONTENT OR THE CONTENT OF ANY WEBSITES LINKED TO THE SITE AND WE WILL ASSUME NO LIABILITY OR RESPONSIBILITY FOR ANY (1) ERRORS, MISTAKES, OR INACCURACIES OF CONTENT AND MATERIALS, (2) PERSONAL INJURY OR PROPERTY DAMAGE, OF ANY NATURE WHATSOEVER, RESULTING FROM YOUR ACCESS TO AND USE OF THE SITE, (3) ANY UNAUTHORIZED ACCESS TO OR USE OF OUR SECURE SERVERS AND/OR ANY AND ALL PERSONAL INFORMATION AND/OR FINANCIAL INFORMATION STORED THEREIN, (4) ANY INTERRUPTION OR CESSATION OF TRANSMISSION TO OR FROM THE SITE, (5) ANY BUGS, VIRUSES, TROJAN HORSES, OR THE LIKE WHICH MAY BE TRANSMITTED TO OR THROUGH THE SITE BY ANY THIRD PARTY, AND/OR (6) ANY ERRORS OR OMISSIONS IN ANY CONTENT AND MATERIALS OR FOR ANY LOSS OR DAMAGE OF ANY KIND INCURRED AS A RESULT OF THE USE OF ANY CONTENT POSTED, TRANSMITTED, OR OTHERWISE MADE AVAILABLE VIA THE SITE. WE DO NOT WARRANT, ENDORSE, GUARANTEE, OR ASSUME RESPONSIBILITY FOR ANY PRODUCT OR SERVICE ADVERTISED OR OFFERED BY A THIRD PARTY THROUGH THE SITE, ANY HYPERLINKED WEBSITE, OR ANY WEBSITE OR MOBILE APPLICATION FEATURED IN ANY BANNER OR OTHER ADVERTISING, AND WE WILL NOT BE A PARTY TO OR IN ANY WAY BE RESPONSIBLE FOR MONITORING ANY TRANSACTION BETWEEN YOU AND ANY THIRD-PARTY PROVIDERS OF PRODUCTS OR SERVICES. AS WITH THE PURCHASE OF A PRODUCT OR SERVICE THROUGH ANY MEDIUM OR IN ANY ENVIRONMENT, YOU SHOULD USE YOUR BEST JUDGMENT AND EXERCISE CAUTION WHERE APPROPRIATE. LIMITATIONS OF LIABILITY IN NO EVENT WILL WE OR OUR DIRECTORS, EMPLOYEES, OR AGENTS BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY DIRECT, INDIRECT, CONSEQUENTIAL, EXEMPLARY, INCIDENTAL, SPECIAL, OR PUNITIVE DAMAGES, INCLUDING LOST PROFIT, LOST REVENUE, LOSS OF DATA, OR OTHER DAMAGES ARISING FROM YOUR USE OF THE SITE, EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. NOTWITHSTANDING ANYTHING TO THE CONTRARY CONTAINED HEREIN, OUR LIABILITY TO YOU FOR ANY CAUSE WHATSOEVER AND REGARDLESS OF THE FORM OF THE ACTION, WILL AT ALL TIMES BE LIMITED TO THE LESSER OF THE AMOUNT PAID, IF ANY, BY YOU TO US OR __________. CERTAIN US STATE LAWS AND INTERNATIONAL LAWS DO NOT ALLOW LIMITATIONS ON IMPLIED WARRANTIES OR THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE DISCLAIMERS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MAY HAVE ADDITIONAL RIGHTS. INDEMNIFICATION You agree to defend, indemnify, and hold us harmless, including our subsidiaries, affiliates, and all of our respective officers, agents, partners, and employees, from and against any loss, damage, liability, claim, or demand, including reasonable attorneys’ fees and expenses, made by any third party due to or arising out of: (1) your Contributions; (2) use of the Site; (3) breach of these Terms of Use; (4) any breach of your representations and warranties set forth in these Terms of Use; (5) your violation of the rights of a third party, including but not limited to intellectual property rights; or (6) any overt harmful act toward any other user of the Site with whom you connected via the Site. Notwithstanding the foregoing, we reserve the right, at your expense, to assume the exclusive defense and control of any matter for which you are required to indemnify us, and you agree to cooperate, at your expense, with our defense of such claims. We will use reasonable efforts to notify you of any such claim, action, or proceeding which is subject to this indemnification upon becoming aware of it. USER DATA We will maintain certain data that you transmit to the Site for the purpose of managing the performance of the Site, as well as data relating to your use of the Site. Although we perform regular routine backups of data, you are solely responsible for all data that you transmit or that relates to any activity you have undertaken using the Site. You agree that we shall have no liability to you for any loss or corruption of any such data, and you hereby waive any right of action against us arising from any such loss or corruption of such data. ELECTRONIC COMMUNICATIONS, TRANSACTIONS, AND SIGNATURES Visiting the Site, sending us emails, and completing online forms constitute electronic communications. You consent to receive electronic communications, and you agree that all agreements, notices, disclosures, and other communications we provide to you electronically, via email and on the Site, satisfy any legal requirement that such communication be in writing. YOU HEREBY AGREE TO THE USE OF ELECTRONIC SIGNATURES, CONTRACTS, ORDERS, AND OTHER RECORDS, AND TO ELECTRONIC DELIVERY OF NOTICES, POLICIES, AND RECORDS OF TRANSACTIONS INITIATED OR COMPLETED BY US OR VIA THE SITE. You hereby waive any rights or requirements under any statutes, regulations, rules, ordinances, or other laws in any jurisdiction which require an original signature or delivery or retention of non-electronic records, or to payments or the granting of credits by any means other than electronic means. CALIFORNIA USERS AND RESIDENTS If any complaint with us is not satisfactorily resolved, you can contact the Complaint Assistance Unit of the Division of Consumer Services of the California Department of Consumer Affairs in writing at 1625 North Market Blvd., Suite N 112, Sacramento, California 95834 or by telephone at (800) 952-5210 or (916) 445-1254. MISCELLANEOUS These Terms of Use and any policies or operating rules posted by us on the Site or in respect to the Site constitute the entire agreement and understanding between you and us. Our failure to exercise or enforce any right or provision of these Terms of Use shall not operate as a waiver of such right or provision. These Terms of Use operate to the fullest extent permissible by law. We may assign any or all of our rights and obligations to others at any time. We shall not be responsible or liable for any loss, damage, delay, or failure to act caused by any cause beyond our reasonable control. If any provision or part of a provision of these Terms of Use is determined to be unlawful, void, or unenforceable, that provision or part of the provision is deemed severable from these Terms of Use and does not affect the validity and enforceability of any remaining provisions. There is no joint venture, partnership, employment or agency relationship created between you and us as a result of these Terms of Use or use of the Site. You agree that these Terms of Use will not be construed against us by virtue of having drafted them. You hereby waive any and all defenses you may have based on the electronic form of these Terms of Use and the lack of signing by the parties hereto to execute these Terms of Use. CONTACT US In order to resolve a complaint regarding the Site or to receive further information regarding use of the Site, please contact us at: Mailrecipe LLC 340 S Lemon Ave #9974, Walnut, CA 91789, United States support@neartail.com
Sat Feb 24 2024