Skip to content

Instantly share code, notes, and snippets.

View jorgecc's full-sized avatar
🏠
Working from home

Jorge Castro jorgecc

🏠
Working from home
View GitHub Profile
@jorgecc
jorgecc / table2.csv
Created June 3, 2019 00:45
table2.csv
Id age name prefix
1 10 John Phd
2 20 Annah Dr.
3 30 Paul Junior
@jorgecc
jorgecc / table1.csv
Created June 3, 2019 00:42
table1.csv
age name prefix
10 John Phd
20 Annah Dr.
30 Paul Junior
@jorgecc
jorgecc / form.blade.php
Created March 9, 2019 12:31
form.blade.php
<!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">
@jorgecc
jorgecc / create_product.php
Created March 9, 2019 12:29
create_product.php
<?php
include "app_doc.php";
$validaton=new \eftec\ValidationOne("frm_");
$button=$validaton->def("")->post("button");
function validation($cupcake) {
@jorgecc
jorgecc / table3.csv
Created March 4, 2019 18:46
table3.csv
Map size Time (1 million of lookup sequentially)
100 0.271 seconds +/-
10.000 0.299 seconds +/-
1.000.000 0.376 seconds +/-
@jorgecc
jorgecc / table2.csv
Created March 4, 2019 18:43
table2.csv
Concurrent Users(*) Composer's autoload (Optimized) AutoLoadOne (not optimized)
1000 2.08gb 1.37gb
10000 20.8gb 13.7gb
@jorgecc
jorgecc / table1.csv
Created March 4, 2019 18:41
table1.csv
Concurrent Users Composer's autoload (Optimized) AutoLoadOne AutoLoadOne Optimized
1000 609mb 301mb 206mb
10000 6gb 3gb 2gb
@jorgecc
jorgecc / cupcakes.csv
Created February 3, 2019 18:11
cupcakes.csv
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
@jorgecc
jorgecc / amazing_original.bas
Created January 8, 2019 01:17
amazing original
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 '
@jorgecc
jorgecc / amazing.bas
Created January 8, 2019 00:24
amazing.bas
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