View Session.php
This file contains 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 | |
declare(strict_types=1); | |
namespace FrameWork\App; | |
use DataBase\UserAccount; | |
use Exception; | |
class Session |
View quick_search.json
This file has been truncated, but you can view the full file.
This file contains 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
[["2511","Labrynth Cooclock","TAMA-EN020"],["10000","Ten Thousand Dragon","BLAR-EN10K"],["27551","Limit Reverse","LODT-EN063"],["27551","Limit Reverse","YS11-EN039"],["27551","Limit Reverse","YS12-EN037"],["27551","Limit Reverse","5DS2-EN037"],["32864","The 13th Grave","LOB-014"],["32864","The 13th Grave","LOB-E010"],["32864","The 13th Grave","LOB-EN014"],["35699","SPYRAL Sleeper","MACR-EN086"],["39015","Assault Sentinel","DANE-EN011"],["41546","D\/D Savant Thomas","MP17-EN065"],["41546","D\/D Savant Thomas","GFP2-EN078"],["41546","D\/D Savant Thomas","TDIL-EN010"],["41777","Gem-Enhancement","DT05-EN049"],["41777","Gem-Enhancement","HA05-EN029"],["44818","Starry Knight Orbitael","BODE-EN027"],["50755","Magician's Circle","CP04-EN011"],["50755","Magician's Circle","LCYW-EN100"],["50755","Magician's Circle","LDK2-ENY38"],["50755","Magician's Circle","LDS3-EN097"],["50755","Magician's Circle","SS01-ENA16"],["50755","Magician's Circle","SDSC-EN035"],["50755","Magician's Circle","SR08-EN039"],["50755","Magician's |
View getfiles.ps1
This file contains 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
$srcfile = "C:\Users\wnune\OneDrive\Escritorio\imagenes\cardlist.txt" | |
$urls = Get-Content $srcfile | |
$lines = 0 | |
switch -File $srcfile { default { ++$lines } } | |
$i = 0 | |
$urls | | |
ForEach-Object -Parallel { | |
try { | |
$url = $_ | |
$filename = Split-Path $url -Leaf |
View list.txt
This file contains 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
https://images.ygoprodeck.com/images/cards/34541863.jpg | |
https://images.ygoprodeck.com/images/cards/64163367.jpg | |
https://images.ygoprodeck.com/images/cards/91231901.jpg | |
https://images.ygoprodeck.com/images/cards/73262676.jpg | |
https://images.ygoprodeck.com/images/cards/37478723.jpg | |
https://images.ygoprodeck.com/images/cards/64867422.jpg | |
https://images.ygoprodeck.com/images/cards/90861137.jpg | |
https://images.ygoprodeck.com/images/cards/44256816.jpg | |
https://images.ygoprodeck.com/images/cards/86988864.jpg | |
https://images.ygoprodeck.com/images/cards/11714098.jpg |
View structure.sql
This file contains 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
-- phpMyAdmin SQL Dump | |
-- version 5.2.0 | |
-- https://www.phpmyadmin.net/ | |
-- | |
-- Servidor: localhost | |
-- Tiempo de generación: 22-12-2022 a las 16:43:21 | |
-- Versión del servidor: 8.0.30 | |
-- Versión de PHP: 8.1.10 | |
SET FOREIGN_KEY_CHECKS=0; |
View array.php
This file contains 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 | |
$array = [ | |
'card_list' => [ | |
0 => [ | |
'name' => 'Effect Veiler', | |
'details' => ['some text', 'some text'], | |
'set' => [ | |
'ETCO-EN100' => [ | |
'release' => '2020-01-19', |
View new method
This file contains 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
new method |
View method.php
This file contains 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 | |
class DataBaseManager | |
{ | |
public function GetData($query, $user, $pass) | |
{ | |
try { | |
$db_result = []; | |
$conn = new PDO("mysql:host=localhost;dbname=test", $user, $pass); | |
$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); |
View project.txt
This file contains 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
Hello friends; if you got here you already know a little about what this is about, I am trying to create a roadmap to develop my own framework with your ideas and opinions, since I believe that there is no absolute truth. | |
Objective: create a framework from scratch; with a graphical environment for its setup/configuration; with CMS capabilities to establish the different areas of development: Maintenance, Processes, Reports. | |
What I want to avoid: dependencies on external libraries. | |
What I need from you: your opinions, to know what you consider to be good and bad in the other frameworks, what things would change, but first I need to know in what order it should be developed. | |
What to know and do, before and during the development of a php framework (The Roadmap)? |
View gist.cs
This file contains 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
```C# | |
namespace CreateImageClass | |
{ | |
public sealed class ImageControlOnFly | |
{ | |
public Main MainForm; | |
public Bitmap Bmp = new Bitmap(1, 1); |
NewerOlder