Skip to content

Instantly share code, notes, and snippets.

View Zerquix18's full-sized avatar
🎯
Focusing

I'm Luis! ^-^ Zerquix18

🎯
Focusing
View GitHub Profile
@Zerquix18
Zerquix18 / syntax.php
Created June 11, 2014 19:54
Playing with PHP syntax — This is me when I'm bored...
<?php
$lol = "lol";
define("HAHA", $lol, 1);
class ja {
function jaja() {
return 'This will be the result';
}
}
class nose {
function lol(){
@Zerquix18
Zerquix18 / dec.php
Created December 17, 2014 15:28
Con este código puedes sacar la generatriz de un decimal, es decir, la fracción que genera como resultado aquel decimal :)
<?php
function simplificar($up, $down) {
echo "¿Trato de simplificar? [s|y]\n";
if( ! in_array( strtolower( trim( $x = fgets(STDIN) ) ), array("yes", "y", "s", "si", "sí", "yh") )
&& !($x == "\n") )
exit("Entendido.\n");
$result = array(0 => array("u" => (int) $up, "d" => (int) $down) );
$i = 0;
echo "Intentando simplificar...\n";
while(true) {
<?php
class uploadFile {
public $filename;
private $filepath = './';
public $fullpath;
<?php
echo 'Programa para leer texto y procesar informacion de ella', "\n";
echo '-------------------------------------------------------', "\n";
$vocales =
$consonantes =
$numeros =
$caracteres =
$lista =
$resultados = [];
echo 'Introduzca el destino del texto:', "\n";
@Zerquix18
Zerquix18 / fizzbuzz.php
Created December 15, 2017 00:32
Shortest PHP Fizzbuzz
<?php
for($i=0;$i<1e2;)echo((++$i%3?'':'Fizz').($i%5?'':'Buzz')?:$i),"\n";
@Zerquix18
Zerquix18 / update.vtl
Created March 14, 2019 22:06
AWS AppSync resolver template to dynamically put stuff in a DynamoDB
{
"version" : "2017-02-28",
"operation" : "UpdateItem",
"key" : {
"id" : { "S" : "${ctx.args.id}" }
},
#set( $expNames = {} )
#set( $expValues = {} )
#set( $expSet = {} )
@Zerquix18
Zerquix18 / setup.sh
Created October 28, 2020 04:40
trabajo final proyecto II
#!/bin/bash
apt-get update -y
apt install git npm nginx mysql-server -y
npm install -g forever
mysql -u root -e "CREATE USER 'unicaribe'@'localhost' IDENTIFIED BY 'lajevatuya'"
mysql -u root -e "GRANT ALL PRIVILEGES ON * . * TO 'unicaribe'@'localhost';"
mysql -u root -e 'FLUSH PRIVILEGES'
const arr1 = [
["name", "id", "age", "country"],
["Susan", "3", "20", "mali"],
["John", "1", "21", "chad"],
["Jose", "2", "23", "oman"],
["Alex", "4", "20", "fiji"],
];
const arr2 = [
["name", "id", "height"],
import React, { useCallback, useEffect, useState } from 'react';
import { Button } from 'semantic-ui-react';
import { MapLatLng } from '../../../../../../../../../models';
import { computeDistanceBetween } from '../../../../../../../../../utils';
type Position = { date: Date; position: MapLatLng };
const MAX_POSITIONS = 3;
const Speedometer: React.FC = () => {
<?php
/**
* Tests for the MemeFinder
* Includes HTTP and Browser tests
*/
namespace Tests\Feature;
use Tests\TestCase;
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Illuminate\Foundation\Testing\DatabaseMigrations;