Skip to content

Instantly share code, notes, and snippets.

View adrianmarian's full-sized avatar
💭
I may be slow to respond.

Adrian Gadescu adrianmarian

💭
I may be slow to respond.
View GitHub Profile
@adrianmarian
adrianmarian / boxstarter.ps1
Created December 17, 2017 05:07 — forked from jessfraz/boxstarter.ps1
Boxstarter Commands for a new Windows box.
# Description: Boxstarter Script
# Author: Jess Frazelle <[email protected]>
# Last Updated: 2017-09-11
#
# Install boxstarter:
# . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force
#
# You might need to set: Set-ExecutionPolicy RemoteSigned
#
# Run this boxstarter by calling the following from an **elevated** command-prompt:
@adrianmarian
adrianmarian / delicounter.js
Created January 16, 2018 21:13
Deli Counter Solution - Learn.co
let katzDeliLine = [];
function takeANumber(katzDeliLine, personName) {
katzDeliLine.push(personName);
let personIndex = katzDeliLine.length;
return `Welcome, ${personName}. You are number ${personIndex} in line.`;
}
takeANumber(katzDeliLine, "Ada");
takeANumber(katzDeliLine, "Grace");
takeANumber(katzDeliLine, "Kent");
@adrianmarian
adrianmarian / Resume_DT.md
Created January 21, 2018 20:09 — forked from dtruong11/Resume_DT.md
Diep Truong resume for Ada Developers Academy

Diep Truong

Bellevue, WA | 469-422-5356 | [email protected]

SKILLS

  • Project Management, Professional Selling, Negotiation & Conflict Resolution
  • Business Analytics & Metrics, Tableau (Coursera Certificate)
  • Market Research, Consumer Behavior, Brand Management
  • HTML, CSS, Bootstrap, R statistical computing
@adrianmarian
adrianmarian / max_width_email.html
Created March 12, 2018 15:25 — forked from elidickinson/max_width_email.html
Email Template trick: max-width with outlook
<!--[if mso]>
<center>
<table><tr><td width="580">
<![endif]-->
<div style="max-width:580px; margin:0 auto;">
<p>This text will be centered and constrained to 580 pixels even on Outlook which does not support max-width CSS</p>
</div>
<!--[if mso]>
@adrianmarian
adrianmarian / osx-for-hackers.sh
Created June 8, 2018 11:33 — forked from brandonb927/osx-for-hackers.sh
OSX for Hackers: Yosemite/El Capitan Edition. This script tries not to be *too* opinionated and any major changes to your system require a prompt. You've been warned.
#!/bin/sh
###
# SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer)
# For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos
###
# Alot of these configs have been taken from the various places
# on the web, most from here
# https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx
@adrianmarian
adrianmarian / install-mongodb.md
Created July 5, 2018 05:47 — forked from adamgibbons/install-mongodb.md
Install MongoDB on Mac OS X 10.9

Install MongoDB with Homebrew

brew install mongodb
mkdir -p /data/db

Set permissions for the data directory

Ensure that user account running mongod has correct permissions for the directory:

@adrianmarian
adrianmarian / data.php
Created August 27, 2018 18:24 — forked from jjb3rd/data.php
An updated server-side processing script for DataTables
<?php
/*
* Script: DataTables server-side script for PHP and MySQL
* Copyright: 2012 - John Becker, Beckersoft, Inc.
* Copyright: 2010 - Allan Jardine
* License: GPL v2 or BSD (3-point)
*/
class TableData {
@adrianmarian
adrianmarian / fiddle.css
Created October 24, 2018 14:32 — forked from gabesumner/fiddle.css
Address Validation using the Google Maps API
body {
font: 12px verdana;
background-color: #5C87B2;
}
form {
max-width: 400px;
padding: 15px;
background-color: white;
}
@adrianmarian
adrianmarian / README-Template.md
Created October 30, 2018 17:21 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites