How to remove all ruby gems that are not "default" gems in ruby 2
https://gist.github.com/jsitarski/5511964
he wasn't even looking at me and he found me
TVSTRANGERTHINGS
Misplaced Lens Cap
cherry valley forever
let's talk about Bridgerton tea, my ask is open

@theartofmadeline
"I'm Dorothy Gale from Kansas"

roma★
Three Goblin Art
trying on a metaphor
One Nice Bug Per Day

if i look back, i am lost
Lint Roller? I Barely Know Her

祝日 / Permanent Vacation


Product Placement
ojovivo
dirt enthusiast
noise dept.
seen from Argentina
seen from Germany
seen from United States

seen from United States

seen from T1
seen from United States
seen from United States
seen from United States

seen from Germany
seen from Brazil

seen from Malaysia
seen from United States

seen from Türkiye

seen from Malaysia

seen from Laos

seen from United States

seen from United States

seen from India
seen from United States

seen from Malaysia
@codemudgeon-blog
How to remove all ruby gems that are not "default" gems in ruby 2
https://gist.github.com/jsitarski/5511964

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Using Git reset to undo your most recent commit
Whoops, I just made a commit but I forgot to checkout the branch for the feature first. Now that I committed stuff I shouldn't have, what to do?
Since I did not push anything, this is not a problem.
To roll back to the last commit I used:
git reset --soft HEAD~1
This undid the most recent commit and put me back to the previous revision. See the example below:
[jsitarski@macbook 11:29 ~/src]$ git status # On branch group_annotations # Changes not staged for commit: # (use "git add ..." to update what will be committed) # (use "git checkout -- ..." to discard changes in working directory) # # modified: pom.xml # no changes added to commit (use "git add" and/or "git commit -a") [jsitarski@macbook 11:36 ~/src]$ git add . [jsitarski@macbook 11:36 ~/src]$ git commit -m "No don't do that" [group_annotations 2f77203] No don't do that 1 files changed, 2 insertions(+), 2 deletions(-) [jsitarski@macbook 11:37 ~/src]$ git status # On branch jpa_annotations_for_groups nothing to commit (working directory clean) [jsitarski@macbook 11:37 ~/src]$ git reset --soft HEAD~1 [jsitarski@macbook 11:38 ~/src]$ git status # On branch group_annotations # Changes to be committed: # (use "git reset HEAD ..." to unstage) # # modified: pom.xml #
Google code prettify to highlight syntax in code samples
Below is an example of a google code prettify.js highlighted ruby code snippet:
require 'rake/testtask' task :default => [:test] ENV["WEBDRIVER_URL"] = "http://192.168.56.101:8080/wd/hub" Rake::TestTask.new do |t| t.libs << "test" t.test_files = FileList['test/test*.rb'] t.verbose = true t.ruby_opts = ["-rubygems"] end
You can check the project out for yourself at http://code.google.com/p/google-code-prettify/.
First Post
This is my first post. Boom!