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
object=user&fields=about,about_me,affiliations,allowed_restrictions,birthday,birthday_date,books,checkin_deal_claims,contact_email,current_location,education,education_history,email,email_hashes,events,family,feed,first_name,has_added_app,hometown,hometown_location,hs_info,interests,is_app_user,last_name,likes,link,locale,location,meeting_for,meeting_sex,movies,music,name,notes_count,online_presence,photos,pic,picture,pic_https,pic_with_logo,pic_big,pic_big_https,pic_big_with_logo,pic_small,pic_small_https,pic_small_with_logo,pic_square,pic_square_https,pic_square_with_logo,political_views,profile_blurb,profile_update_time,profile_url,proxied_email,quotes,relationship_status,religion,gender,sex,significant_other_id,status,statuses,timezone,television,tv,username,verified,wall_count,website,work,work_history,friends,platform,privacy,blocked,ip_optout |
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
SELECT title_text, updated_time FROM notification WHERE recipient_id=me() ORDER BY updated_time DESC |
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
git config --global alias.tree "log --graph --decorate --pretty=oneline --abbrev-commit" |
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
history | awk '{a[$2]++}END{for(i in a){print a[i] " " i}}' | sort -rn | head |
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
curl https://raw.github.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash | |
echo "source ~/.git-completion.bash" >> ~/.bash_profile |
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
// For block below content issue. | |
body { | |
padding-top: 60px; | |
} | |
@media (max-width: 979px) { | |
body { | |
padding-top: 0px; | |
} | |
} |
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
#... | |
path=`pwd` | |
project_name=${path/"$HOME/repositories/"/""} | |
#... | |
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
which sh | xargs ls -l |
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
make CROSS_COMPILE=arm-none-linux-gnueabi- ARCH=arm xxxx_config | |
make CROSS_COMPILE=arm-none-linux-gnueabi- ARCH=arm |
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/python | |
import sys | |
import smtplib | |
subject = sys.argv[1] | |
body = sys.argv[2] | |
recipients = sys.argv[3] | |
gmail_user = '[email protected]' | |
gmail_pwd = 'password' |