Skip to content

Instantly share code, notes, and snippets.

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

Joaquin Briceno Joaquin6

🏠
Working from home
  • Overland Park, KS
View GitHub Profile
@Joaquin6
Joaquin6 / commit.sh
Created February 5, 2022 01:23
commit all and push
#!/bin/sh
git add -A
git commit -a -m "Periodic"
git push
@Joaquin6
Joaquin6 / vast-sample.xml
Created September 27, 2021 12:27
AWS Elemental MediaTailor: VAST and VMAP Sample files
<VAST version="3.0">
<Ad sequence="1">
<InLine>
<AdSystem>2.0</AdSystem>
<AdTitle>ad-1</AdTitle>
<Impression />
<Creatives>
<Creative>
<Linear>
<Duration>00:00:15</Duration>
@Joaquin6
Joaquin6 / sublime-key-bindings.json
Last active September 23, 2021 17:37
Key bindings for sublime text
[
{ "keys": ["alt+shift+up"], "command": "swap_line_up" },
{ "keys": ["alt+shift+down"], "command": "swap_line_down" },
{ "keys": ["alt+super+up"], "command": "select_lines", "args": {"forward": false} },
{ "keys": ["alt+super+down"], "command": "select_lines", "args": {"forward": true} },
{ "keys": ["super+shift+h"], "command": "format_eslint" },
{ "keys": ["alt+m"], "command": "markdown_preview_select", "args": {"target": "browser"} }
@Joaquin6
Joaquin6 / package-json-build-number.ps1
Created August 30, 2021 12:13 — forked from ediblecode/package-json-build-number.ps1
Powershell script to parse a package.json version and use as the build number in TeamCity
$version = (Get-Content package.json) -join "`n" | ConvertFrom-Json | Select -ExpandProperty "version"
$buildCounter = "%build.counter%"
$buildNumber = "$version.$buildCounter"
Write-Host "##teamcity[buildNumber '$buildNumber']"
@Joaquin6
Joaquin6 / Joaquin6 Bio
Last active June 5, 2021 02:55
gisto:04/06/2021:
<h1 align="center">Hi 👋, I'm Cong Nguyen Dinh</h1>
<h3 align="center">A passionate full-stack web and app developer.Currently enrolled at the HTW Berlin.</h3>
- 🔭 I’m currently working on [snapdrop flutter](https://github.com/congnguyendinh0/snapdrop_flutter)
- 🌱 I’m currently learning **React Native,Flutter,Swift,Penetration testing,React,AWS,NodeJs**
- 👯 I’m looking to collaborate on [snapdrop flutter](https://github.com/congnguyendinh0/snapdrop_flutter)
- 👨‍💻 All of my projects are available at [congportfolio.netlify.app](congportfolio.netlify.app)
@Joaquin6
Joaquin6 / NotesProfile.txt
Last active September 30, 2020 08:57
NotesProfile.txt
# 7-Zip http://www.7-zip.org/download.html
# Git https://git-scm.com/download/win
# Regex http://www.grymoire.com/Unix/Regular.html#uh-12
# AwkRef http://www.grymoire.com/Unix/AwkRef.html
# Notepad++ https://notepad-plus-plus.org/download/v7.5.4.html
# ArsClip http://www.joejoesoft.com/vcms/97/
# Aria2 https://github.com/aria2/aria2/releases/tag/release-1.33.1
# Deluge http://download.deluge-torrent.org/windows/?C=M;O=D
# Transmission https://transmissionbt.com/download/
@Joaquin6
Joaquin6 / resume.json
Last active September 28, 2020 14:50
Joaquin Briceno resume-cli generation
{
"basics": {
"name": "Joaquin Briceno",
"label": "Sr. Software Engineer / Full Stack Developer",
"picture": "https://drive.google.com/file/d/0B0oNJDwY35xcWVBJTlZPR2JSVHc/view?usp=sharing",
"email": "joaquinbriceno1@gmail.com",
"phone": "(818) 746-0550",
"website": "http://joaquinbriceno.com",
"summary": "Software Engineer with a proven track record of creative visions, quick delivery, and demonstrated ability to inspire/mentor teams to implement latest application technology for future standards.",
"location": {
@Joaquin6
Joaquin6 / Custom.css
Last active September 23, 2020 23:15
Chrome DevTools Theme: IR_Dark_Monokai
/**********************************************/
/*
/* IR_Dark_Monokai
/* Designed and developed by Andres Pagella (@mapagella)
/* http://www.andrespagella.com/customising-chrome-devtools
/*
/* Based on Ben Truyman's IR_Black
/* which is...
/* Based on Todd Werth's IR_Black:
/* http://blog.toddwerth.com/entries/2
@Joaquin6
Joaquin6 / Custom.css
Created September 23, 2020 23:10
Chrome DevTools Theme: Zero-Dark-Matrix
/*****************************************************************************/
/* Zero-Dark-Matrix
/* Optimized for Chrome Stable Channel v32
/* https://github.com/mauricecruz/zero-base-themes
/*************************************************************************/
#-blink-dev-tools {
/* light green */
/* dark red */
/* light blue */
/* purple */
@Joaquin6
Joaquin6 / powershellsnippetvscode.json
Created August 28, 2020 17:46 — forked from kasuken/powershellsnippetvscode.json
PowerShell snippet for VS Code
{
"Condition statement": {
"prefix": "cond",
"body": [
"${_} { ${0}; break }"
],
"description": "Switch condition statement"
},
"Condition single quoted string statement": {