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
| Source: https://gitter.im/syl20bnr/spacemacs?at=5b45e03a60c38707837070b0 | |
| Ljupcho Kotev @ljupchokotev 12:47 | |
| It's best to use the xclip package | |
| it works flawlessly | |
| Add xclip to dotspacemacs-additional-packages and then (xclip-mode 1) in user-config | |
| all copy/paste will work between terminal/spacemacs/gui/etc | |
| you just need to have xclip installed, which probably already is |
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
| """ | |
| saltstack_pr.py prints the pull requests, where the current user | |
| or team-suse was required to review. | |
| """ | |
| from github import Github | |
| g = Github("<github-token>") | |
| class bcolors: | |
| HEADER = '\033[95m' |
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
| // get_my_prs shows all the pull requests where either you | |
| // or Team SUSE was requestet to review in saltstack/salt. | |
| package main | |
| import ( | |
| "context" | |
| "fmt" | |
| "os" |
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
| query ($owner: String!, $name: String!, $board_number: Int!) { | |
| repository(owner: $owner, name: $name) { | |
| project(number: $board_number) { | |
| columns(first: 10) { | |
| nodes { | |
| name | |
| cards(first: 100) { | |
| edges { | |
| node { | |
| content { |
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
| { | |
| repository(owner: "brejoc", name: "test") { | |
| issues(first: 100) { | |
| totalCount | |
| pageInfo { | |
| startCursor | |
| endCursor | |
| hasNextPage | |
| } | |
| nodes { |
OlderNewer