Skip to content

Instantly share code, notes, and snippets.

View bgoonz's full-sized avatar
🎯
learning

Bryan C Guner bgoonz

🎯
learning
View GitHub Profile
@bgoonz
bgoonz / sequelize-cheatsheet.md
Last active April 5, 2024 17:59
sequelize-cheat-sheetmd

Sequelize Cheatsheet

Command Line

Sequelize provides utilities for generating migrations, models, and seed files. They are exposed through the sequelize-cli command.

Init Project

$ npx sequelize-cli init

Hiring Without Hardship

A list of companies (or teams) that don't do "whiteboard" interviews. "Whiteboards" is used as a metaphor, and is a symbol for the kinds of CS trivia questions that are associated with bad interview practices. Whiteboards are not bad – CS trivia questions are. Using sites like HackerRank/LeetCode probably fall into a similar category.

The companies and teams listed here use interview techniques and questions that resemble day-to-day work. For example, pairing on a real world problem or a paid/unpaid take home exercise. Read (and contribute to) our recommendations for ways to conduct better interviews.

tl;dr

  • Discussing a real world problem (with or without whiteboard) is 👍
  • Solving CS trivia, technical puzzles, riddles, brainteasers (with or without whiteboard) is 👎
@bgoonz
bgoonz / PrimeTripplets.js
Created March 31, 2024 16:13
PrimeTripplets.js
function isPrime(num) {
sRoot = Math.sqrt(num);
for (let i = 2; i <= sRoot; i++) if (num % i === 0) return false;
return num > 1;
}
function findPrimeTriplets() {
const twoDigitPrimes = [];
for (let i = 11; i <= 99; i++) {
if (isPrime(i)) {

Python

  • Python is an interpreted, high-level and general-purpose, dynamically typed programming language

  • It is also Object oriented, modular oriented and a scripting language.

  • In Python, everything is considered as an Object.

  • A python file has an extension of .py

@bgoonz
bgoonz / resources.md
Created December 26, 2021 07:33
resources.md

free-for.dev

Developers and Open Source authors now have a massive amount of services offering free tiers, but it can be hard to find them all to make informed decisions.

This is a list of software (SaaS, PaaS, IaaS, etc.) and other offerings that have free tiers for developers.

The scope of this particular list is limited to things that infrastructure developers (System Administrator, DevOps Practitioners, etc.) are likely to find useful. We love all the free services out there, but it would be good to keep it on topic. It's a bit of a grey line at times so this is a bit opinionated; do not be offended if I do not accept your contribution.

This list is the result of Pull Requests, reviews, ideas and work done by 900+ people. You too can help by sending Pull Requests to add more services or by remove ones whose offerings have changed or been retired.

Everything You Need To Become A Machine Learner

Part 1:


Everything You Need To Become A Machine Learner

Part 1: