Date: November 6, 2025
Role: Head of Engineering
Context: RAG, MCP, and LLM expertise
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 | |
| namespace App\Encryptions; | |
| class Cipher | |
| { | |
| private $cipherKey; | |
| const AES_METHOD = 'AES-256-CBC'; |
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
| using System.Data.SqlClient; | |
| using System.Drawing; | |
| // ... | |
| SqlConnection connection = new SqlConnection("your_connection_string"); | |
| SqlCommand command = new SqlCommand("SELECT TOP 1 MunMap FROM tblmunicipality", connection); | |
| try |
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
| using System; | |
| using System.Drawing; | |
| using System.IO; | |
| using System.Windows.Forms; | |
| using MySql.Data.MySqlClient; // Ensure you have the MySQL Connector for .NET | |
| public class MainForm : Form | |
| { | |
| private PictureBox pictureBox; |
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 | |
| namespace App\Filters\Search; | |
| use Closure; | |
| use Illuminate\Support\Arr; | |
| use Laravel\Scout\Builder; | |
| class QueryParameterSearchFilter | |
| { |
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
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.0; | |
| /** | |
| * @dev Interface of the ERC20 standard as defined in the EIP. | |
| */ | |
| interface IERC20 { | |
| /** | |
| * @dev Returns the amount of tokens in existence. |
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
| Just change the nameserver lines in /etc/resolv.conf to: | |
| nameserver 8.8.8.8 | |
| nameserver 8.8.4.4 |
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 | |
| $name = 'rannie'; | |
| print $name; | |
| function greetPerson($person) | |
| { | |
| // return '<br />hi '.$person; | |
| return "<br />hi $person"; |
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 | |
| namespace App\Repositories; | |
| use Illuminate\Database\Eloquent\Model; | |
| use Illuminate\Pagination\Paginator; | |
| abstract class BaseRepository | |
| { | |
| protected Model $model; |
NewerOlder