Skip to content

Instantly share code, notes, and snippets.

View coolsoftwaretyler's full-sized avatar

Tyler Scott Williams coolsoftwaretyler

View GitHub Profile
@coolsoftwaretyler
coolsoftwaretyler / 01_ror_tutorial_exercise_answers.md
Created August 10, 2018 22:54
Ruby on Rails Tutorial Exercise Answers

Ruby on Rails Tutorial Exercise Answers

Chapter 1

Section 1.1.1

  1. https://rubygems.org hosts the Ruby gem for Ruby on Rails.
  2. The current stable version number of Rails is 5.1.4, with 5.2.0.beta2 being the overall latest version.
  3. As of this writing, Ruby on Rails has been downloaded 118,011,892 across all versions.
@coolsoftwaretyler
coolsoftwaretyler / bench-mobx.ts
Created September 26, 2023 17:22 — forked from thegedge/bench-mobx.ts
MobX benchmark
import { makeAutoObservable, makeObservable, observable } from "mobx";
import { DataModel, Model, model, prop } from "mobx-keystone";
import { types } from "mobx-state-tree";
function bench(f: () => { value: number }) {
// Warmup
let sum = 0;
for (let index = 0; index < 100_000; ++index) {
sum += f().value;
}
@coolsoftwaretyler
coolsoftwaretyler / _deobfuscating-unminifying-obfuscated-web-app-code.md
Created April 5, 2024 16:57 — forked from 0xdevalias/_deobfuscating-unminifying-obfuscated-web-app-code.md
Some notes and tools for reverse engineering / deobfuscating / unminifying obfuscated web app code