Here is a pure JavaScript based, basic drawing tool. It supports both mouse and tap. Demo URL: https://ninethsense.github.io/code-share/Doodle/
-
-
Can use below script to gzip a folder, and upload to a FTP site. We can use a cron task to schedule it.
-
Coding for fun… An attempt to make a fully JavaScript based canvas drawing interpreter in മലയാളം/Malayalam. Try in action here – https://ninethsense.github.io/code-share/CanvasDrawing/ Source Code:
-
Source Code:
-
Though I wrote the plugin initially for personal use, now the same is available for you to use in your WordPress sites. Link: https://wordpress.org/plugins/wp-showgithubfile/ You can either download it from the directory, or install directly within your WordPress installation. Here is a live demo of the plugin:
-
Here goes my contribution to HelloScript project by Praseed Pai. GitHub: https://github.com/praseedpai/HelloScript_files/blob/master/Groovy/HelloScript.groovy Source Code: [Code generated by wp-ShowGithubFile plugin]
-
Show a file, preferably source code file content in a WordPress blog post or page. This plugin shows always the latest code from GitHub. Visit my GitHub repository to download the plugin for free – https://github.com/ninethsense/wp-ShowGithubFile Source Code: (Live Example directly from GitHub 🙂
-
Here is a script in PHP I wrote to check if a remote host and port are open for you to connect. Do not mistake this as an equivalent to ping command because ping uses ICMP and I used TCP using PHP’s famous fsockopen() function, and a small piece of AJAX. You can get the latest source code from my GitHub code share page – https://github.com/ninethsense/code-share/ PHP: JavaScript:
-
Here is a simple file system watcher for windows. I wrote a script to monitor a folder for a specific purpose, but then thought to make this a generic tool so someone will benefit if I host in GitHub. Find full project at https://github.com/ninethsense/FolderWatcher Source Code:
-
In this Part #2 of blog I will be creating a new .NET Core function in local machine and will upload to AWS using console interface. There are different ways you can develop and deploy but I will be talking in this blog only about the CLI way. I am assuming you know how to create a Lambda function in AWS console already and if not, please read the Part #1 first. Open the Command prompt and follow below steps: Step 1: Install Lambda Templates for .NET Core dotnet new -i Amazon.Lambda.Templates Step 2: Create an empty function dotnet new…