Skip to main content

Fwd: tee shirt

---------- Forwarded message ----------
From: Chip Brock <brock@pa.msu.edu>
Date: Thu, Mar 15, 2012 at 7:37 AM
Subject: tee shirt
To: hep-all@pa.msu.edu
Cc: Chip Brock <brock@pa.msu.edu>, Ashleigh M Heck
<heckashl@csp.msu.edu>, Janet Brock <brock_jp@elps.k12.mi.us>, Kim
Brock <pimberly@mac.com>, Terry Brock <tbrock@mac.com>


hi
One of my students just tweeted that his father was an electrician
during tevatron construction...he made this tee shirt for me...and
you, if you want!

http://www.thebookofbiff.com/shirts/


Chip

---------------------------------------------------------------
Raymond Brock  *  University Distinguished Professor
Department of Physics and Astronomy
3210 BPS Building
Michigan State University  *  East Lansing, MI  48824
sent from: brock@pa.msu.edu

cell: (517)927-5447
MSU office: (517)353-1693/884-5579
open fax: (517)355-6661
secure fax: (517)351-0688
Fermilab office: (630)840-2286
CERN Office: 32 2-B03 * 76-71756

Twitter: @chipbrock
Home: http://www.pa.msu.edu/~brock/
ISP220
http://www.pa.msu.edu/courses/ISP220/
ISP213H
http://www.pa.msu.edu/courses/2007spring/ISP213H/
Facebook: http://msu.facebook.com/profile.php?id=2312233

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...