This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - { yes: :✔, no: :– }.try( product.sold_by_amazon? ? :first : :last ) do |sold?, text| | |
| %td.sba{ class: sold? }= text |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Put your CSS here */ | |
| html, body { | |
| margin: 20px; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Put your CSS here */ | |
| html, body { | |
| margin: 20px; | |
| } |
I hereby claim:
- I am wholcomb on github.
- I am wholcomb (https://keybase.io/wholcomb) on keybase.
- I have a public key whose fingerprint is F459 21AB 27C8 930A B913 B3FB 4151 87C3 BF19 BAEB
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| adb shell "mount -o remount rw /sdcard" | |
| adb shell "run-as com.synaptian.smoketracker.habits cat databases/habits.db > /sdcard/habits.db" | |
| adb pull /sdcard/habits.db | |
| [ -f habits.db ] && sqlitebrowser habits.db |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| require 'json' | |
| require 'spreadsheet' | |
| if ARGV.length < 2 | |
| puts 'Usage: compare_dumps.rb [json|xls]{2}' | |
| puts 'Outputs asset_numbers present in each file not in the other' | |
| throw 'Input needed' | |
| end |
NewerOlder