This file contains 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
import random | |
import openai, os | |
from dotenv import load_dotenv | |
load_dotenv() | |
OPENAI_KEY = os.getenv('OPENAI_KEY') | |
openai.api_key = OPENAI_KEY | |
template = """The sort function can be used to sort a list in ascending, descending or user defined |
This file contains 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
// Type definitions for react-shortcuts v1.6.0 | |
// Project: https://github.com/avocode/react-shortcuts | |
// Definitions by: Chris Grigg <https://github.com/subvertallchris> | |
/// <reference types="react"/> | |
declare namespace ReactShortcuts { | |
type PlatformType = 'osx' | 'windows' | 'linux' | 'other'; | |
interface Keymap { |
This file contains 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
package com.revjet.raycasting2d; | |
import java.util.Arrays; | |
/** | |
* @author <a href="mailto:[email protected]">Ivan Zaytsev</a> | |
* 2018-04-17 | |
*/ | |
public class Lighting { |
This file contains 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
case class State(matches: String => Boolean, optional: Boolean) | |
def matcher(pattern: String): String => Boolean = { | |
val states = pattern.split("/").toList.map { | |
case "**" => State(_ => true, true) | |
case s => | |
val r = s.replaceAllLiterally("*", ".*").r | |
State(r.unapplySeq(_).isDefined, false) |