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> | |
<title>Knockout Demo</title> | |
</head> | |
<body> | |
<div data-bind="text: firstName">fern</div> | |
<div data-bind="text: lastName">zamora</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
function Person(firstname, lastname){ | |
this.firstname = firstname; | |
this.lastname = lastname; | |
} | |
function Teacher(firstname, lastname, subject){ | |
Person.call(this, firstname, lastname); | |
this.subject = subject; | |
} |
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
var numbers = [1,2,3,6,8,3,4,6,78,10,11,9,1,3,4] | |
function filter(arr, filterCheck){ | |
var newArray = [] | |
for(var i=0;i<arr.length;i++){ | |
if(filterCheck(arr[i])){ |
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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> | |
<script src="https://www.gstatic.com/firebasejs/4.3.0/firebase.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 com.fzj.app; | |
import java.util.*; | |
public class FreakCracker { | |
public String crack(String message){ | |
int i = 0 ; |
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
function multiplyMatrix(A, B){ | |
console.log("****MULTIPLY****") | |
let aRows = A.length | |
let aCols = A[0].length | |
let bRows = B.length | |
let bCols = B[0].length | |
let C = [] | |
let i = 0 |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <windows.h> | |
#include <conio.h> | |
#include <string.h> | |
void print_at_xy(int x, int y, char *val); | |
void display_score(); | |
void init(); | |
int zero_lives(); |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <windows.h> | |
#include <conio.h> | |
#include <string.h> | |
void print_at_xy(int x, int y, char *val); | |
void display_score(); | |
void init(); | |
int zero_lives(); |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <windows.h> | |
#include <conio.h> | |
#include <string.h> | |
void print_at_xy(int x, int y, char *val); | |
void display_score(); | |
void init(); | |
int zero_lives(); |
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> | |
<title>Books</title> | |
</head> | |
<body> | |
<?php | |
$servername = "localhost"; | |
$username = "bpdemo"; | |
$password = "bpdemo"; |