I hereby claim:
- I am usmanbashir on github.
- I am usmanbashir (https://keybase.io/usmanbashir) on keybase.
- I have a public key whose fingerprint is B865 3A9E D803 6D25 5D2E 3842 8BC6 025E DB18 E9B7
To claim this, I am signing this object:
| <?php | |
| $sMailTo = "[email protected]"; | |
| $sMailSubject = "New Message"; | |
| $sMailMessage = "Your message!"; | |
| if ( mail($sMailTo, $sMailSubject, $sMailMessage, "From: [email protected]") ) { | |
| echo "Thank you for your feedback."; | |
| } else { |
| *.pbxproj -crlf -diff -merge |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| if which chef-solo; then | |
| echo "Chef already seems to be installed on the system."; | |
| else | |
| # Resynchronize the package index. | |
| apt-get -y update | |
| # Install build essential packages. | |
| sudo apt-get -y install build-essential zlib1g-dev libssl-dev libreadline-dev libyaml-dev libcurl4-openssl-dev curl |
| #!/usr/bin/env ruby | |
| require 'shellwords' | |
| def main | |
| loop do | |
| $stdout.print ENV['PROMPT'] | |
| line = $stdin.gets | |
| if line | |
| line.strip! |
| handleAdopt: function(event) { | |
| event.preventDefault(); | |
| var petId = parseInt($(event.target).data('id')); | |
| var adoptionInstance; | |
| web3.eth.getAccounts(function(error, accounts) { | |
| if (error) { | |
| console.log(error); |
| export const toProperCase = (string) => { | |
| return ( | |
| string.charAt(0).toUpperCase() + string.toLowerCase().substr(1) | |
| ) | |
| } | |
| // Usecase: | |
| // isNotEmptyString(firstName, (firstName) => { // do something... } | |
| // | |
| export const isNotEmptyString = (variable, func) => { |