Giter VIP home page Giter VIP logo

free-software's Introduction

Copyleft (2022) Lauri Jakku [email protected]

Lisence: GPL-2.0

If you use this, please give me credit by putting my name and email address somewhere visible.

Thank You!

-- lja

C++: template_helpers.h:

	Template classes: LessThan, MoreThan & WithinRange

		USAGE: LessThan<double> less_than_50 {50}; MoreThan<double> more_than_50 {50}; 
			WithinRange<double> is_valid_percent {-100 , 100};

			bool pa = is_valid_percent(50); bool pb = is_valid_percent(0.35); bool pc 
			= is_valid_percent(101); bool la = less_than_50(50); bool lb = 
			less_than_50(0.35); bool lc = less_than_50(101); bool ma = 
			more_than_50(50); bool mb = more_than_50(0.35); bool mc = 
			more_than_50(101);

Python3:

email/
	checkEmail.py

		USAGE: python3 checkEmail.py <email> [<email2> <email3> ..... <emailN>]

			Output:

				One argument:

					exit value 0 if email address is ok.

					exit value 1 if email address is not ok.

				two or more arguments:

					list of OK or NOK

PHP:

wordpress/
	wordpress_email_checker.php
	wordpress_email_checker.patch

		USAGE: 

			cd <WP_ROOT>/wp-include
			patch -p0 < wordpress_email_checker.patch

			cp wordpress_email_checker.php <WP_ROOT>/wp-include

Happy coding....

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.