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 { useState, useEffect } from 'react'; | |
| const PageOne = () => <h1>Page One</h1> | |
| const PageTwo = () => <h1>Page Two</h1> | |
| export default function Home() { | |
| const [page, setPage] = useState(-1); | |
| const pages = [PageOne, PageTwo]; | |
| const Page = pages[page]; |
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
| use std::collections::HashMap; | |
| use std::env; | |
| use std::fs; | |
| use std::io; | |
| struct Args { | |
| args: Vec<String>, | |
| program_args_len: usize, | |
| has_args: bool, | |
| last_arg: String, |
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
| struct Board { | |
| cells: [u8; 81], | |
| row_mask: [u16; 9], | |
| col_mask: [u16; 9], | |
| box_mask: [u16; 9], | |
| } | |
| impl Board { | |
| fn bit(&self, d: u8) -> u16 { | |
| 1 << (d - 1) |
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
| Write a blog post on how bad Haskell is and how it can not compete with PHP. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| type Section = { | |
| title: String; | |
| totals: number[]; | |
| total: number; | |
| }; | |
| export const BalanceSheetSummarySection = ({ | |
| sections, | |
| }: { | |
| sections: Section[]; |
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 SwiftUI | |
| struct ContentView: View { | |
| @State var show = false | |
| var body: some View { | |
| ZStack { | |
| TitleView() | |
| .blur(radius: show ? 20 : 0) | |
| .animation(.default) |
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 UIKit | |
| import PlaygroundSupport | |
| class MyViewController : UIViewController { | |
| let titleLabel = UILabel(frame: CGRect(x: 16, y: 100, width: 150, height: 38)) | |
| let captionLabel = UILabel(frame: CGRect(x: 16, y: 120, width: 272, height: 40)) | |
| let coverImageView = UIImageView() | |
| let blurEffect = UIBlurEffect(style: .light) | |
| let cardView = UIButton() | |
| let closeButton = UIButton() |
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 NeuralNetwork { | |
| constructor(input, goal, iterations){ | |
| this.input = input; | |
| this.goal = goal; | |
| this.iterations = iterations; | |
| this.weight = 0.5; | |
| } | |
| predict(){ | |
| let prediction; |
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> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Coin Collector!</title> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/pixi.js/5.1.3/pixi.min.js"></script> | |
| <style> | |
| body { | |
| margin: 0; |
NewerOlder