Ready-to-use disclosure badges and callouts for GitHub READMEs, based on the VisiData AI Contribution Levels.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "basics": { | |
| "name": "Thomas Edison", | |
| "label": "Inventor and Businessman", | |
| "picture": "https://example.com/photo.jpg", | |
| "email": "thomas.edison@example.com", | |
| "phone": "(123) 456-7890", | |
| "website": "https://thomasedison.com", | |
| "summary": "Prolific inventor and businessman known for developing many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the electric light bulb.", | |
| "location": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function customJSONParse(jsonString) { | |
| let position = 0 | |
| let currentChar = jsonString.charAt(position) | |
| const throwError = message => { | |
| throw new Error(message + ' at position ' + position) | |
| } | |
| const skipWhitespace = () => { | |
| while (currentChar && /\s/.test(currentChar)) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| A - AT-AT, Ackbar, A-Wing, Anakin, Ahsoka | |
| B - Bantha, Bossk, B-Wing, Boba Fett, BB-8 | |
| C - C-3PO, Chewbacca, Cad Bane | |
| D - Droid, Dash Rendar, Death Star, Darth Vader | |
| E - Ewok, Endor, Emperor Palpatine | |
| F - Force, Fett, Finn | |
| G - Greedo, Grievous, Geonosis | |
| H - Han Solo, Hoth | |
| I - Imperial Stormtrooper, IG-88 | |
| J - Jabba the Hutt, Jango Fett, Jakku |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| efsdfsdf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| tell application "Reminders" | |
| set output to "" | |
| set hasOne to false | |
| repeat with i from 1 to (count of (reminders whose completed is false)) | |
| set theReminder to reminder i of (reminders whose completed is false) | |
| set reminderName to name of theReminder | |
| set theList to name of container of theReminder | |
| if due date of theReminder exists then | |
| set dueDate to due date of theReminder |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var consoleLine = "<p class=\"console-line\"></p>"; | |
| console = { | |
| log: function (text1, text2) { | |
| if (arguments.length > 1) { | |
| $("#console-log").append($(consoleLine).html(text1 + ": " + text2)); | |
| } else | |
| $("#console-log").append($(consoleLine).html(text1)); | |
| } | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var latString = '3958.617113,N'; | |
| var lonString = '08609.633520,W'; | |
| console.log(latString); | |
| console.log(lonString); | |
| latString = latString.replace(/[^0-9\.]+/g,''); | |
| lonString = lonString.replace(/[^0-9\.]+/g,''); | |
| var lat = latString.substring(0,2); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * @class Ext.ux.GridPrinter | |
| * @author Ed Spencer (edward@domine.co.uk) | |
| * Helper class to easily print the contents of a grid. Will open a new window with a table where the first row | |
| * contains the headings from your column model, and with a row for each item in your grid's store. When formatted | |
| * with appropriate CSS it should look very similar to a default grid. If renderers are specified in your column | |
| * model, they will be used in creating the table. Override headerTpl and bodyTpl to change how the markup is generated | |
| * | |
| * Usage: | |
| * |
NewerOlder