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
| set colorcolumn=0 | |
| set norelativenumber | |
| set virtualedit="" |
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
| 127.0.0.1 media-match.com | |
| 127.0.0.1 adclick.g.doublecklick.net | |
| 127.0.0.1 www.googleadservices.com | |
| 127.0.0.1 open.spotify.com | |
| 127.0.0.1 pagead2.googlesyndication.com | |
| 127.0.0.1 desktop.spotify.com | |
| 127.0.0.1 googleads.g.doubleclick.net | |
| 127.0.0.1 pubads.g.doubleclick.net | |
| 127.0.0.1 audio2.spotify.com | |
| 127.0.0.1 www.omaze.com |
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
| const http = require('http') | |
| function makeCall(options) { | |
| return new Promise(function(resolve, reject) { | |
| const req = http.request(options, (res) => { | |
| const q = [] | |
| res.setEncoding('utf8') | |
| res.on('data', (chunk) => q.push(chunk)) | |
| res.on('end', () => resolve(q.join(''))) |
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
| { | |
| "cwd": "${workspaceRoot}/", | |
| "type": "node", | |
| "request": "launch", | |
| "name": "Mocha Tests", | |
| "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", | |
| "args": [ | |
| "--timeout", | |
| "999999", | |
| "${workspaceFolder}/test/**/*.spec.ts", |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>ANSIBrightWhiteColor</key> | |
| <data> | |
| YnBsaXN0MDDUAQIDBAUGKyxYJHZlcnNpb25YJG9iamVjdHNZJGFyY2hpdmVyVCR0b3AS | |
| AAGGoKcHCBMZHSQoVSRudWxs1QkKCwwNDg8QERJcTlNDb21wb25lbnRzVU5TUkdCXE5T | |
| Q29sb3JTcGFjZV8QEk5TQ3VzdG9tQ29sb3JTcGFjZVYkY2xhc3NPECgwLjk0NjMxMjMx | |
| MzQgMC45MzkxOTcxODMyIDAuOTUzNDI3NDQzNSAxTxAnMC45MzQyODAwOTc1IDAuOTIy |
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
| Error details: | |
| Error: GraphQL error: java.util.concurrent.CompletionException: com.atlassian.confluence.api.service.exceptions.PermissionException: Not permitted to use confluence | |
| at java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:292) | |
| at java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:308) | |
| at java.util.concurrent.CompletableFuture.uniApply(CompletableFuture.java:593) | |
| at java.util.concurrent.CompletableFuture.uniApplyStage(CompletableFuture.java:614) | |
| at java.util.concurrent.CompletableFuture.thenApply(CompletableFuture.java:1983) | |
| at org.dataloader.DataLoader.dispatchQueueBatch(DataLoader.java:312) | |
| at org.dataloader.DataLoader.dispatch(DataLoader.java:272) | |
| at java.util.ArrayList.forEach(ArrayList.java:1257) |
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
| sudo tmutil thinlocalsnapshots / 999999999999 |
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
| defaults write com.apple.dock springboard-columns -int 7;defaults write com.apple.dock springboard-rows -int 5;defaults write com.apple.dock ResetLaunchPad -bool TRUE;killall Dock |
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 | |
| sudo softwareupdate -ia | |
| brew update | |
| brew upgrade | |
| brew cleanup -s | |
| #now diagnotic | |
| brew doctor | |
| brew missing | |
| /opt/bin/updateCCTF.sh && terminal-notifier -message "git pull done :-)" -title "CCTF up to date" | |
| echo "you can hit mas upgrade to upgrade theses apps from the app store:" |
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
| const THEN = 'then'; | |
| const CATCH = 'catch'; | |
| class Prrromise { | |
| static get THEN() { | |
| return THEN; | |
| } | |
| static get CATCH() { |
NewerOlder