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
| version: "3.8" | |
| services: | |
| elasticsearch: | |
| image: docker.elastic.co/elasticsearch/elasticsearch:7.17.10 | |
| container_name: search-server | |
| ports: | |
| - "9200:9200" | |
| environment: | |
| - discovery.type=single-node | |
| - cluster.name=mecha |
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
| # Computer Science Concepts for Business People | |
| # Using Trading, Business, and Monopoly Analogies in Ruby | |
| puts "=" * 60 | |
| puts "PART 1: BASIC DATA STRUCTURES" | |
| puts "=" * 60 | |
| # ========================================== | |
| # 1. ARRAYS - Like a Filing Cabinet | |
| # ========================================== |
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
| import {Controller} from '@hotwired/stimulus' | |
| import {Editor} from "@tiptap/core" | |
| import {Mention} from "@tiptap/extension-mention"; | |
| import StarterKit from "@tiptap/starter-kit" | |
| export default class extends Controller { | |
| static targets = ['input', 'suggestions'] | |
| connect() { | |
| this.editor = new Editor({ |
OlderNewer