Posts

Showing posts from June, 2015

Lere 'n Woju: Sitting on a tree...

Image
This is a tool to: Lere , reverse the letters sequence of a text. Woju , jumble the words within sentence(s) or paragraph. This needs text input ([left to right sequence] alphabets, numerals, and others) with horizontal whitespaces . How to use this: Type or paste the text on the textarea and hit either button. You'll see the result. Click the result to select or clear the error. To revert back, hit the RESTORE button. For Woju (Words Jumbler), you can re-jumble the sequence by clicking RESTORE ➡️ Woju . It will yield different output each time. This is a client-side (browser) application. Lere 'n Woju Sittin' on a tree... Lere Woju RESTORE

Image Circle Clipper CSS Editor

This tool will help you to circle-clip a div element and place an image on it as a background-image . How to Use Edit the CSS part. You can add/edit/remove the properties and the result can be observed right away. Please don't change .my_object keyword class in the CSS below. You can change it afterward on your own page. You can use external URL as the background-image source. If you wanna use local file, convert that first into base64 URI with this tool . Then copy and paste the base64 into the background-image: url([paste here]) . But because it can be a very lengthy group of characters , especially for graphic or photo, it's really not recommended to be used in here. Please use external URL instead. Click "Reset" button to revert it to its original state. Click "Select" button or double click the textarea to select the CSS . Click "Top" button to scroll up to the "Result" section. Click the HTML element...

Jarextor: JavaScript Regular Expression Testor

Image
JAREXTOR RESET notifier #1 notifier #2 Jarextor Example On the left (pattern) input, type /a/ (finding "a" character) On (small) right (flag) input, type g (global) You'll see the result . Other examples Matching URL protocol, either http:// or https:// /https?:\/\//g The s? means the character s is optional, 0 or 1 repetition. We need to escape the slash (/) with backslash. Thus the // becomes \/\/ Finding all "t" character and case insensitive (additional i flag): /t/gi Finding all double "t"s: /t{2}/g Finding all words starting with "t" and have "g" as the tail. And also case insensitive : /t[a-z]+g/gi [] is the brac...