Giter VIP home page Giter VIP logo

ajschumacher.github.io's People

Contributors

ajschumacher avatar dependabot[bot] avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

ajschumacher.github.io's Issues

add edit button

from three.js site (mrdoob or whatevs)

button {

position: fixed;
top: 20px;
right: 20px;
padding: 8px;
color: #fff;
background-color: #555;
opacity: 0.5;

}

#button:hover {
    cursor: pointer;
    opacity: 1;
}

var button = document.createElement( 'div' );
button.id = 'button';
button.textContent = 'Edit this page';

button.addEventListener( 'click', function ( event ) {

    window.open( 'https://github.com/mrdoob/three.js/blob/dev/docs/' + section + '/' + path + '.html' );

}, false );

document.body.appendChild( button );

// etc.
https://github.com/mrdoob/three.js/blob/gh-pages/docs/page.js
// etc.

improve/customize styling

no big blue bar at top

probably slightly off-white background color (or not?)

lighter footer bg-color

less margin left-right

maybe do footer-notes like Victor/Bostock?

(another) emacs post? "emacs is an rpg"

make required-naming new term thing?

learn org mode?

http://emacsrocks.com/
http://killring.org/hack-emacs/

http://www.masteringemacs.org/

http://sachachua.com/blog/emacs-chat/

M-x toggle-truncate-lines

(global-hl-line-mode -1)

(define-key (current-global-map) [remap other-window] 'other-window)

it's all text OR edit with emacs! (browser plugin thing)

Disabling Backup and Auto-save in Emacs
http://anirudhsasikumar.net/blog/2005.01.21.html

omg emacs

F3 to record macro! Or C-x C-(
F4 to stop recording! Or C-x C-)
F4 to play macro! Or C-x e

C-u # to repeat next command
C-u 0 is infinite repeat!

M-g M-g

  • better than M-< and M->, maybe
  • both set mark!

to find:

  • transpose other things (like lines)
  • dired mode
  • email??? (with C-x C-m???)
  • fill-paragraph M-p

http://ergoemacs.org/emacs/emacs_hyper_super_keys.html

do/post about set diagrams? possibly a H&T? w/pypi pkg?

https://docs.python.org/3/distutils/packageindex.html

step one: make user account at http://pypi.python.org/pypi

make wikipedia set table example thing/post

http://en.wikipedia.org/wiki/Greek_alphabet
ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ
http://en.wikipedia.org/wiki/ISO_basic_Latin_alphabet
ABCDEFGHIJKLMNOPQRSTUVWXYZ
http://en.wikipedia.org/wiki/Russian_alphabet
АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ

common denominator version
ABCDEFGHIJKLMNOPQRSTUVWXYZ
ABΓΔEZHΘIKΛMNΞOΠPΣTYΦXΨΩ
AБBΓДEЁЖЗИЙKЛMHOΠPCTYΦXЦЧШЩЪЫЬЭЮЯ

Russian "У" as "Y" is questionable...

poem idea: synecdoche

Poem idea: synecdoche flashes before your eyes how you lived fear or joy heaven or he'll

is it right to judge people by their tools?

and/or judging netica?

you could be a really smart PowerPoint user, for example
but do you want to work with a construction team that uses beach toys?
maybe some restriction forces the use of particular tools?

costs of learning new tools vs. using existing convenient tools

  • I still use a Wordpress blog

when a tech recruiter requests a Word resume

post on SVD reduced rank maybe?

messy notes:

http://www.caam.rice.edu/~embree/caam453/lecture18.pdf is nice (see code at very end)

full rank:

x = np.ones((91, 91))
y = np.ones((91, 51))
z = np.ones((53, 53))

x.dot(y).dot(z).shape
Out[34]: (91, 53)

map(np.shape, [x,y,z])
Out[33]: [(91, 91), (91, 53), (53, 53)]

reduced rank:

x2 = np.ones((91, 10))
y2 = np.ones((10, 10))
z2 = np.ones((10, 53)) # but be careful here; something about how it's getting tranposed...

x2.dot(y2).dot(z2).shape
Out[49]: (91, 53)

map(np.shape, [x2,y2,z2])
Out[50]: [(91, 10), (10, 10), (10, 53)]

remaining question: are those left and right doo-dads really in the same space as one another? are they comparable?

maybe also good?

http://alias-i.com/lingpipe/demos/tutorial/svd/read-me.html
https://inst.eecs.berkeley.edu/~ee127a/book/login/l_svd_low_rank.html

post about pro git?


layout: post
title: "Read Pro Git"
date: 2014-06-22 22:06:00

categories: books git code data

to learn: git add -p

ifndef IVERSION1

http://johnkary.net/blog/git-add-p-the-most-powerful-git-feature-youre-not-using-yet/

endif /* ! IVERSION1 */

git diff

  • what are unstaged changes (vs. staged status)

git diff --staged

  • what are staged changes (vs. last commit)

git rm --cached filename

  • remove file from staging area, don't remove from disk

git log -p

  • show diff ("patch") in log
    (add --word-diff for words)
    (add -U1 for one line above/below context)

git commit --amend

  • keep building on the commit, change message, etc.

git branch -v

  • includes last commit info
    ooh and --merged and --no-merged

ifndef IVERSION1

git log origin/master..HEAD

  • to see what you’re about to push to a remote
    OR
    git log origin/master..
  • Git substitutes HEAD if one side is missing
    #else /* IVERSION1 */
    git log branch1 --not otherbranch
  • see commits in this branch but not the other
    #endif /* IVERSION1 */

ifndef IVERSION1

git log --left-right master...experiment

  • shows you which side of the range each commit is in

git stash apply --index

  • get back all of stash, including staged-ed-ness stuff
  • even after apply-ing, still need to drop:
    git stash drop stash@{0}

git stash branch testchanges

  • nice shortcut to recover stashed work easily and work on it in a new branch
  • drops the stash and everything

git filter-branch --tree-filter 'rm -f passwords.txt' HEAD

changing email addresses globally: http://git-scm.com/book/en/Git-Tools-Rewriting-History
(but changes so many SHAs...)

git bisect

  • pretty hard-core binary search thing

git submodule add git://github.com/chneukirchen/rack.git rack

  • add that as a submodule

git submodule init
git submodule update

  • to get submodules in cloned thing
    #else /* IVERSION1 */
    git diff master...contrib
  • In the context of the diff command, you can put three periods after another branch to do a diff between the last commit of the branch you’re on and its common ancestor with another branch
  • "what is added by this contrib branch?"
    #endif /* IVERSION1 */

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.