I hereby claim:
- I am youngchief-btw on github.
- I am youngchief (https://keybase.io/youngchief) on keybase.
- I have a public key ASAPJ7hXY7z7CtSEVpplBF9XL8saDq6g9pL096V1XKK5-wo
To claim this, I am signing this object:
| ProjectName="ExampleApp" | |
| rm -rf "$ProjectName.xcodeproj/xcuserdata" | |
| rm -rf "$ProjectName.xcodeproj/project.xcworkspace" | |
| rm -rf "$ProjectName.xcodeproj/project.xcworkspace/xcuserdata" |
| test |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| OLD_NAME=master | |
| NEW_NAME=main | |
| git checkout $OLD_NAME; | |
| git branch -m $NEW_NAME; | |
| # If already on remote do the following: | |
| git push origin -u $NEW_NAME; | |
| git push origin --delete $OLD_NAME: |
| function getUrlVars() { | |
| var vars = {}; | |
| var parts = window.location.href.replace(/[?&]+([^=&]+)=([^&]*)/gi, function( | |
| m, | |
| key, | |
| value | |
| ) { | |
| vars[key] = value; | |
| }); | |
| return vars; |
| function XMLHttpRequestFUNC(method, url, async) { | |
| var xhr = new XMLHttpRequest(); | |
| xhr.onreadystatechange = function() { | |
| if (xhr.readyState == 4 && xhr.status == 200) { | |
| console.log(xhr.response); | |
| return; | |
| } | |
| }; | |
| xhr.open(method, url, async); // arguments[#] | |
| // xhr.setRequestHeader("User-Agent", "https://youngchief-btw.github.io/"); // header, value |
| // HTTP --> HTTPS | |
| if (location.protocol === "http:") { | |
| location.replace(window.location.href.replace("http:", "https:")); | |
| } |
| # This is a comment. | |
| # Each line is a file pattern followed by one or more owners. | |
| # These owners will be the default owners for everything in | |
| # the repo. Unless a later match takes precedence, | |
| # @global-owner1 and @global-owner2 will be requested for | |
| # review when someone opens a pull request. | |
| * @global-owner1 @global-owner2 | |
| # Order is important; the last matching pattern takes the most |