Skip to content

Instantly share code, notes, and snippets.

View altafc22's full-sized avatar

Altaf Razzaque altafc22

View GitHub Profile
@altafc22
altafc22 / index.html
Created June 12, 2022 18:31
Payment card checkout
<div class="tips">
Payment card number: (4) VISA, (51 -> 55) MasterCard, (36-38-39) DinersClub, (34-37) American Express, (65) Discover, (5019) dankort
</div>
<div class="container">
<div class="col1">
<div class="card">
<div class="front">
<div class="type">
<img class="bankid"/>
Privacy Policy
Shipyaari Courier Delivery Services built the iTodo app as a Free app. This SERVICE is provided by Shipyaari Courier Delivery Services at no cost and is intended for use as is.
This page is used to inform visitors regarding our policies with the collection, use, and disclosure of Personal Information if anyone decided to use our Service.
If you choose to use our Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that we collect is used for providing and improving the Service. We will not use or share your information with anyone except as described in this Privacy Policy.
The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at iTodo unless otherwise defined in this Privacy Policy.
Information Collection and Use
Privacy Policy
Green Technology Services built the iTodo app as a Free app. This SERVICE is provided by Green Technology Services at no cost and is intended for use as is.
This page is used to inform visitors regarding our policies with the collection, use, and disclosure of Personal Information if anyone decided to use our Service.
If you choose to use our Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that we collect is used for providing and improving the Service. We will not use or share your information with anyone except as described in this Privacy Policy.
The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at iTodo unless otherwise defined in this Privacy Policy.
Information Collection and Use
http://10.11.112.241/reset/0ef5e3f24601d681ea1930f5a0ae26fa0547611c184639a22405532db3b20277
https://linuxize.com/post/mysql-remote-access/
GRANT ALL ON <local database name>.* TO <remote web node username>@<remote web node server ip address> IDENTIFIED BY '<database user password>';
Privacy Policy
Your privacy is important to us. It is Green Technology Services' policy to respect your privacy regarding any information we may collect from you through our app, Corona Watch.
We only ask for personal information when we truly need it to provide a service to you. We collect it by fair and lawful means, with your knowledge and consent. We also let you know why we’re collecting it and how it will be used.
We only retain collected information for as long as necessary to provide you with your requested service. What data we store, we’ll protect within commercially acceptable means to prevent loss and theft, as well as unauthorized access, disclosure, copying, use or modification.
We don’t share any personally identifying information publicly or with third-parties, except when required to by law.
Our app may link to external sites that are not operated by us. Please be aware that we have no control over the content and practices of these sites, and cannot accept responsibility or liability for th
@altafc22
altafc22 / TCPTestClient.cs
Created September 4, 2019 11:41 — forked from danielbierwirth/TCPTestClient.cs
TCP Client-Server Connection Example | Unity | C# | Bidirectional communication sample: Client can connect to server; Client can send and receive messages: Server accepts clients; Server reads client messages; Server sends messages to client
using System;
using System.Collections;
using System.Collections.Generic;
using System.Net.Sockets;
using System.Text;
using System.Threading;
using UnityEngine;
public class TCPTestClient : MonoBehaviour {
#region private members