This is a template README to show which informations it should contain.
You can talk about general purpose here in 2~3 lines to explain what it is.
This is the requirement block; it explains which SW/HW you have to grab to run this project
| import { | |
| Client, | |
| Events, | |
| GatewayIntentBits, | |
| Message, | |
| PartialMessage, | |
| Partials, | |
| } from "discord.js"; | |
| import { Configuration, OpenAIApi } from "openai"; |
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.
| $(document).ready(function () { | |
| var masonryOptions = { | |
| columnWidth: '.masonry-sizer', | |
| itemSelector: '.masonry-item', | |
| percentPosition: true | |
| }; | |
| var $masonryContainer = $('.masonry-container'); | |
| var masonryBreakpoint = 767; // change this as you wish | |
| var masonryActive = false; | |
| var activateMasonry = function () { |
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
| <title>web app name</title> | |
| <meta content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width" name="viewport"> | |
| <link rel="apple-touch-icon-precomposed" href="/apple-touch-icon-precomposed.png"><!-- Add to homescreen for Safari on iOS --> | |
| <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/apple-touch-icon-precomposed-114x114.png"><!-- iPhone retina icon (iOS< 7) --> | |
| <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/apple-touch-icon-precomposed-120x120.png"><!-- iPhone 6 Plus icon --> |
| <!doctype html> | |
| <!-- http://taylor.fausak.me/2015/01/27/ios-8-web-apps/ --> | |
| <html> | |
| <head> | |
| <title>iOS 8 web app</title> | |
| <!-- CONFIGURATION --> |
| <?php | |
| if(!isset($argv[1])){ | |
| echo "Usage: ".$argv[0]." (number of iterations)\n"; | |
| exit(1); | |
| } | |
| /** | |
| * Arrays to check | |
| */ | |
| $tests = array( |
| <?php | |
| /** | |
| * Dot notation for access multidimensional arrays. | |
| * | |
| * $dn = new DotNotation(['bar'=>['baz'=>['foo'=>true]]]); | |
| * | |
| * $value = $dn->get('bar.baz.foo'); // $value == true | |
| * | |
| * $dn->set('bar.baz.foo', false); // ['foo'=>false] | |
| * |