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
| <script src='https://code.jquery.com/jquery-3.2.1.slim.min.js'></script> | |
| <script src='https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js'></script> | |
| <script src='https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js'></script> | |
| <script src='https://unpkg.com/react@16/umd/react.development.js'></script> | |
| <script src='https://unpkg.com/react-dom@16/umd/react-dom.development.js'></script> | |
| <div id="app"></div> | |
| <script src = "./App.js"></script> |
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
| package main | |
| import ( | |
| "fmt" | |
| "time" | |
| ) | |
| // parallelization := 4 |
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
| package main | |
| import ( | |
| "fmt" | |
| "time" | |
| ) | |
| // parallelization := 4 |
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
| <!DOCTYPE=html> | |
| <p>enter text and press button to check if it is a palindrome</p> | |
| <input id="palcheck"> | |
| </input> | |
| <button id="myBtn" onclick="getStatement()">Button</button> | |
| <h1 id="output"></h1> | |
| <script type="text/javascript"> | |
| /** | |
| * @param {string} s |
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 React, { useEffect, useState } from "react"; | |
| import { CardElement, useStripe, useElements } from "@stripe/react-stripe-js"; | |
| import "./CheckoutForm.css"; | |
| import api from "../api"; | |
| export default function CheckoutForm() { | |
| const [amount, setAmount] = useState(0); | |
| const [currency, setCurrency] = useState(""); | |
| const [clientSecret, setClientSecret] = useState(null); |
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 cherrypy | |
| import random | |
| import string | |
| import json | |
| import os | |
| class HelloWorld(object): | |
| @cherrypy.expose |
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 random | |
| class Solution: | |
| global recursion | |
| recursion = 0 | |
| def is_full(self,arr): | |
| for i in arr: | |
| for j in i: | |
| if j == '.': | |
| return False |
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
| <div> | |
| <div class="row"> | |
| <div class="col"></div> | |
| <div class="col-10" id="container" class="container"></div> | |
| <div class="col"> | |
| </div> | |
| </div> | |
| </div> |
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
| <div> | |
| <div class="row"> | |
| <div class="col"></div> | |
| <div class="col-10" id="container" class="container"></div> | |
| <div class="col"> | |
| </div> | |
| </div> | |
| </div> |
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
| package application; | |
| import javafx.application.Application; | |
| import javafx.event.ActionEvent; | |
| import javafx.event.EventHandler; | |
| import javafx.fxml.FXML; | |
| import javafx.geometry.Pos; | |
| import javafx.stage.Stage; | |
| import javafx.scene.Scene; | |
| import javafx.scene.control.Button; |
NewerOlder