Skip to content

Instantly share code, notes, and snippets.

View jesraygarciano's full-sized avatar
💬
Be codesistent

Codetinerant jesraygarciano

💬
Be codesistent
View GitHub Profile

What Hiring Should Look Like

This is definitely not the first time I've written about this topic, but I haven't written formally about it in quite awhile. So I want to revisit why I think technical-position interviewing is so poorly designed, and lay out what I think would be a better process.

I'm just one guy, with a bunch of strong opinions and a bunch of flaws. So take these suggestions with a grain of salt. I'm sure there's a lot of talented, passionate folks with other thoughts, and some are probably a lot more interesting and useful than my own.

But at the same time, I hope you'll set aside the assumptions and status quo of how interviewing is always done. Just because you were hired a certain way, and even if you liked it, doesn't mean that it's a good interview process to repeat.

If you're happy with the way technical interviewing currently works at your company, fine. Just stop, don't read any further. I'm not going to spend any effort trying to convince you otherwise.

Summary
A package MUST use these names for these root-level directories:
If a package has a root-level directory for ... ... then it MUST be named:
command-line executables bin/
configuration files config/
documentation files docs/
web server files public/
other resource files resources/
PHP source code src/
@jesraygarciano
jesraygarciano / Hover underline animation
Created March 3, 2020 06:47
Creates an animated underline effect when the text is hovered over.
.hover-underline-animation {
display: inline-block;
position: relative;
color: #0087ca;
}
.hover-underline-animation::after {
content: '';
position: absolute;
width: 100%;
transform: scaleX(0);
@jesraygarciano
jesraygarciano / nodejs-cheatsheet.js
Created June 20, 2019 02:23 — forked from LeCoupa/nodejs-cheatsheet.js
Complete Node.js CheatSheet --> UPDATED VERSION --> https://github.com/LeCoupa/awesome-cheatsheets
/* *******************************************************************************************
* THE UPDATED VERSION IS AVAILABLE AT
* https://github.com/LeCoupa/awesome-cheatsheets
* ******************************************************************************************* */
// 0. Synopsis.
// http://nodejs.org/api/synopsis.html
@jesraygarciano
jesraygarciano / shocked picachu
Created December 10, 2018 07:10
Surprised pickachu
,@@@@@@@@@@,,@@@@@@@% .#&@@@&&.,@@@@@@@@@@, %@@@@@@%* ,@@@% .#&@@@&&. *&@@@@&( ,@@@@@@@% %@@@@@, ,@@,
,@@, ,@@, ,@@/ ./. ,@@, %@% ,&@# .&@&@@( .@@/ ./. #@&. .,/ ,@@, %@% *&@&. ,@@,
,@@, ,@@&%%%%. .&@@/, ,@@, %@% ,&@# %@& /@@, .&@@/, (@@&%(*. ,@@&%%%%. %@% &@# ,@@,
,@@, ,@@/,,,, ./#&@@@( ,@@, %@@@@@@%* /@@, #@&. ./#&@@@( *(%&@@&. ,@@/,,,, %@% &@# .&&.
,@@, ,@@, ./, .&@# ,@@, %@% ,@@@@@@@@@% ./. .&@# /*. /@@. ,@@, %@% *&@&. ,,
,@@, ,@@@@@@@% .#&@@@@&/ ,@@, %@% .&@# ,@@/.#&@@@@&/ /%&@@@@. ,@@@@@@@% %@@@@@. ,@@,
,*************,,*/(((((//,,*(#%%%%%%%%%%%%%%%#(*,,,****************************************************,*/(((((((((/((((////****/((##%%%%%%
,*************,,//((((((//,,*(%%%%%%%%%%%%%%%%%##/*
@jesraygarciano
jesraygarciano / sqlcheatsheet
Created October 10, 2018 07:37
SQL Cheatsheet by enochtangg
1. Finding Data Queries
SELECT: used to select data from a database
SELECT * FROM table_name;
DISTINCT: filters away duplicate values and returns rows of specified column
SELECT DISTINCT column_name;
WHERE: used to filter records/rows
@jesraygarciano
jesraygarciano / gist:b5b4ef15fa5c9dd54b68c6eb6ff9418e
Created September 26, 2018 08:54 — forked from digitaljhelms/gist:4287848
Git/GitHub branching standards & conventions

Branching

Quick Legend

Description, Instructions, Notes
Instance Branch
@jesraygarciano
jesraygarciano / xampp-error
Created September 25, 2018 02:46
Fixing XAMPP won't run when Skype is opened
A conflict on port 80; since XAMPP used port80 as well as skype. You can use either of these two options:
1:
ServerName localhost:80
Listen 80
to
ServerName localhost:8080
Listen 8080
2:
@jesraygarciano
jesraygarciano / Vue CLI Problems and Solutions
Last active July 3, 2018 02:16
Vue CLI Errors and Fixes
Problem:
./src/pages/Component.vue
vue-loader was used without the corresponding plugin. Make sure to include VueLoaderPlugin in your webpack config
Solution:
Degrade webpack: npm i webpack@3.11.0
npm install
then > add Vue loader to Webpack.mix.js
@jesraygarciano
jesraygarciano / AWS Functions
Last active June 27, 2018 03:35
AWS Functions
S3
require 'aws-autoloader.php';
use Aws\S3\S3Client;
use Aws\S3\Exception\S3Exception;
Create Bucket
<?php