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
Id | age | name | prefix | |
---|---|---|---|---|
1 | 10 | John | Phd | |
2 | 20 | Annah | Dr. | |
3 | 30 | Paul | Junior |
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
age | name | prefix | |
---|---|---|---|
10 | John | Phd | |
20 | Annah | Dr. | |
30 | Paul | Junior |
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> | |
<!-- Required meta tags --> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<!-- Bootstrap CSS --> | |
<link rel="stylesheet" href="http://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous"> |
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
<?php | |
include "app_doc.php"; | |
$validaton=new \eftec\ValidationOne("frm_"); | |
$button=$validaton->def("")->post("button"); | |
function validation($cupcake) { |
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
Map size | Time (1 million of lookup sequentially) | |
---|---|---|
100 | 0.271 seconds +/- | |
10.000 | 0.299 seconds +/- | |
1.000.000 | 0.376 seconds +/- |
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
Concurrent Users(*) | Composer's autoload (Optimized) | AutoLoadOne (not optimized) | |
---|---|---|---|
1000 | 2.08gb | 1.37gb | |
10000 | 20.8gb | 13.7gb |
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
Concurrent Users | Composer's autoload (Optimized) | AutoLoadOne | AutoLoadOne Optimized | |
---|---|---|---|---|
1000 | 609mb | 301mb | 206mb | |
10000 | 6gb | 3gb | 2gb |
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
IdCupcake | Name | Image | Price | Description | |
---|---|---|---|---|---|
1 | Chocolate | cupcake1.jpg | 20.00 | Chocolate | |
2 | Cupcake Normal | cupcake2.jpg | 30.00 | Cupcake Normal | |
3 | Gourmet | cupcake3.jpg | 35.50 | Gourmet | |
4 | Apple Pie | cupcake4.jpg | 43.30 | Apple Pie | |
5 | Sprinkles | cupcake5.jpg | 24.30 | Sprinkles | |
6 | Butter | cupcake6.jpg | 32.20 | Butter | |
7 | Lemon | cupcake7.jpg | 22.30 | Lemon | |
8 | Brownies | cupcake8.jpg | 32.20 | Brownies | |
9 | Bubbly | cupcake9.jpg | 33.20 | Bubbly |
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
100 ' NAME: AMAZING*** | |
105 ' | |
110 ' BY: Jack Hauber and S. J. Garland on 12/13/72 | |
115 ' | |
120 ' DESCRIPTION: Constructs a maze of any size the user wishes (up | |
125 ' to 25 rows by 23 columns). Each maze is unique and guaranteed | |
130 ' to have only one solution. | |
135 ' | |
140 ' INSTRUCTIONS: Type "RUN" for complete instructions. | |
145 ' |
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
10 PRINT TAB(28);"AMAZING PROGRAM" | |
20 PRINT TAB(15);"CREATIVE COMPUTING MORRISTOWN, NEW JERSEY" | |
30 PRINT:PRINT:PRINT:PRINT | |
100 INPUT "WHAT ARE YOUR WIDTH AND LENGTH";H,V | |
102 IF H<>1 AND V<>1 THEN 110 | |
104 PRINT "MEANINGLESS DIMENSIONS. TRY AGAIN.":GOTO 100 | |
110 DIM W(H,V),V(H,V) | |
120 PRINT | |
130 PRINT | |
140 PRINT |