Bootstrap knowledge of LLMs ASAP. With a bias/focus to GPT.
Avoid being a link dump. Try to provide only valuable well tuned information.
Neural network links before starting with transformers.
# Copyright 2024 Ed McManus | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software | |
# and associated documentation files (the “Software”), to deal in the Software without | |
# restriction, including without limitation the rights to use, copy, modify, merge, publish, | |
# distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the | |
# Software is furnished to do so, subject to the following conditions: | |
# | |
# The above copyright notice and this permission notice shall be included in all copies or | |
# substantial portions of the Software. |
'use strict'; | |
/** | |
* @example | |
* import keysToCamelCase from './snakeToCamelCase'; | |
* keysToCamelCase({bad_key: 1}); => {badKey: 1} | |
* keysToCamelCase([{bad_key: 1}]); => [{badKey: 1}] | |
*/ | |
function keysToCamelCase(object) { |
// | |
// NSDate+TimeAgoInWords.swift | |
// | |
// A Swift port of Rails' time_ago_in_words. | |
// Created by Ed McManus for Yardsale on 9/30/14. | |
// | |
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
try | |
Parse.Promise.as().then( -> | |
Parse.Promise.as 1, 2, 3 | |
).then((a, b, c) -> | |
# a, b, and c all have values | |
console.error "1. a: #{a}, b: #{b}, c: #{c}" | |
) | |
# Can we transform Parse.Promise.error into a success? | |
Parse.Promise.error().then( null, (error) -> |
find . -name "*.[hm]" -type f -print0 | xargs -0 sed -i '' -E "s/[[:space:]]*\$//" |
// | |
// PFObject+YSComparison.h | |
// | |
// Created by Ed McManus for Yardsale Inc. on 2/1/13 | |
// Learn more at https://getyardsale.com | |
// | |
// Requires BlocksKit https://github.com/pandamonia/BlocksKit | |
// | |
// Permission is hereby granted, free of charge, to any person obtaining a copy | |
// of this software and associated documentation files (the "Software"), to deal |
# Port of __git_ps1 for Fish shell (tested with FishFish) | |
#-------------------------------------------------------------------------------------------------- | |
# https://github.com/bjeanes/dot-files/tree/294254ce2f064bbfc586e98107da1ed510898ffd/fish/functions | |
# via @bjeanes - https://github.com/bjeanes | |
function __git_ps1 | |
set -l g (git rev-parse --git-dir ^/dev/null) | |
if [ -n "$g" ] | |
set -l r "" | |
set -l b "" |
# | |
# Chainable.rb | |
# | |
# Allows you to chain Paperclip styles. | |
# Created by Ed McManus for Yardsale Inc. on 5/12/2012 | |
# | |
# | |
# ********************************************************************* | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy |