Update choco itself
$ choco upgrade chocolatey
Update a package
$ choco upgrade pacagename
| // | |
| // 2022-11-10 | |
| // sample api response of an application we were looking into integrating with. | |
| // we didn't. | |
| // | |
| // | |
| { | |
| "user": { | |
| "estado_civil": [], |
| Verifying that "vetras.id" is my Blockstack ID. https://onename.com/vetras |
| // see this gist as well: https://gist.github.com/sergio-fry/3917217 | |
| // create the "promises" objects (deferred objects) | |
| var address = $.ajax({}); | |
| var tweets = $.ajax({}); | |
| var facebook = $.ajax({}); | |
| // wait for all to be done | |
| $.when(address, tweets, facebook).then(function (addressResult, tweetsResult, facebookResult) { | |
| /* all solved and the result is on each function argument */ |
| # | |
| # About line endings on windows: | |
| # https://help.github.com/articles/dealing-with-line-endings/ | |
| # | |
| [user] | |
| name = John Doe | |
| email = [email protected] |
I hereby claim:
To claim this, I am signing this object:
| Set bit X to 1 : number |= 1 << x; | |
| Set bit X to zero : number &= ~(1 << x); | |
| Toggle bit X : number ^= 1 << x; | |
| Checking the value of bit X : value = number & (1 << x); |