$name = "Dave";
if($name == "Dave")
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Vue Basics</title> | |
| <link | |
| href="https://fonts.googleapis.com/css2?family=Jost:wght@400;700&display=swap" | |
| rel="stylesheet" | |
| /> |
| const poll = { | |
| question: 'What is your favourite programming language?', | |
| options: ['0: JavaScript', '1: Python', '2: Rust', '3: C++'], | |
| // This generates [0, 0, 0, 0]. More in the next section! | |
| answers: new Array(4).fill(0), | |
| /** | |
| * Display a prompt window for the user to input the number of the selected option. | |
| * @param {*} params | |
| */ | |
| registerNewAnswer() { |
| <div id="root"></div> | |
| <div class="person"> | |
| <h1>Max Verstappen</h1> | |
| <p>Your Age: 30</p> | |
| </div> | |
| <div class="person"> | |
| <h1>Lewis Hamilton</h1> | |
| <p>Your Age: 35</p> |
| { | |
| "env": { | |
| "browser": true, | |
| "commonjs": true, | |
| "es2021": true | |
| }, | |
| // "plugins": [], | |
| "extends": "eslint:recommended", | |
| "parserOptions": { | |
| "ecmaVersion": 12 |
| #include <cs50.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| int main(int argc, string argv[]) | |
| { | |
| int key; | |
| if(argc == 2 && atoi(argv[1]) >= 0 && atoi(argv[1])) | |
| { |
| //https://pastebin.pl/view/0cdfb99e | |
| #include <stdio.h> | |
| #include <cs50.h> | |
| #include <ctype.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| bool checkKeyword(string key); | |
| int shiftValue(char c); | |
| void cipher(char plainText, int key); |
| import React, { Component } from 'react'; | |
| import './App.css'; | |
| import Person from './Person/Person'; | |
| import { Button } from 'react-bootstrap'; | |
| import 'bootstrap/dist/css/bootstrap.min.css'; | |
| class App extends Component { | |
| state = { | |
| persons : [ | |
| { name: 'Max', age: 29}, |
| import React, { useState } from 'react'; | |
| import './App.css'; | |
| import Person from './Person/Person'; | |
| import { Button } from 'react-bootstrap'; | |
| import 'bootstrap/dist/css/bootstrap.min.css'; | |
| const App = (props) => { | |
| const [ personsState, setPersonsState] = useState({ | |
| persons : [ |
| const initialBoardState = { | |
| columns: [ | |
| { | |
| columnID: 1, | |
| columnName: 'Pazartesi', | |
| cards: [ | |
| { | |
| // task:'Column Feature', | |
| // person: 'John', |