Skip to content

Instantly share code, notes, and snippets.

View dut-a's full-sized avatar

Dut A. dut-a

View GitHub Profile

Daniel Dut

Chicago, IL 60626 (willing to relocate) | d.dut@live.com | 857-701-8979

Github: dut-a | https://www.dutad.com/blog | https://www.dutad.com

Full Stack Software Engineer

Full Stack Software Engineer with experience in Ruby (& Ruby on Rails), JavaScript (& React, Redux, jQuery), Java (& Android), PHP, RDBMS (MySQL, PostgreSQL, SQLite3). I have strong skills in team-building and project management that can speed up development and delivery of user-facing software products on time and on budget. I possess cutting-edge debugging skills to easily track down and fix software bugs.

echo "The following were deleted: ";
find . -type d -name "*node_modules*" -maxdepth 2 -print 2>/dev/null -exec rm -rf {} \;
<?php
$social_media_sites = [
[
"name" => "facebook",
"url" => "https://www.facebook.com",
"title_prefix" => "like"
],
[
"name" => "twitter",
"url" => "https://twitter.com",
@dut-a
dut-a / rails http status codes
Created February 10, 2020 18:19 — forked from mlanett/rails http status codes
HTTP status code symbols for Rails
HTTP status code symbols for Rails
Thanks to Cody Fauser for this list of HTTP responce codes and their Ruby on Rails symbol mappings.
Status Code Symbol
1xx Informational
100 :continue
101 :switching_protocols
102 :processing
@dut-a
dut-a / RAILS_CHEATSHEET.md
Created January 24, 2020 21:52 — forked from mdang/RAILS_CHEATSHEET.md
Ruby on Rails Cheatsheet

Ruby on Rails Cheatsheet

Architecture

Create a new application

Install the Rails gem if you haven't done so before