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
import tkinter as tk | |
class SampleApp: | |
def __init__(self, root): | |
self.root = root | |
self.root.title("Tkinter Navigation Example") | |
# Set the initial size of the window | |
self.root.geometry("400x300") |
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
mutation MyMutation($meetingId: ID!, $part1: ID!, $part2: ID!) { | |
__typename | |
updateMeeting(input: {meetingId: $meetingId, participants: [{personId: $part1, status: CONFIRMED}, {personId: $part2, status: CONFIRMED}]}) { | |
errors { | |
message | |
} | |
meeting { | |
id | |
} | |
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
package main | |
import ( | |
"encoding/xml" | |
"flag" | |
"fmt" | |
"net/http" | |
"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
{ | |
"Working Directory" : "\/Users\/aurelienbaumann", | |
"Prompt Before Closing 2" : 0, | |
"Selected Text Color" : { | |
"Green Component" : 0.7847255, | |
"Red Component" : 1, | |
"Blue Component" : 0.5426263 | |
}, | |
"Rows" : 40, | |
"Ansi 11 Color" : { |
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
javascript:(function () { | |
var ul, br, validCoords = /^[+-]?\d+(\.\d+)?,[+-]?\d+(\.\d+)?$/; | |
do { | |
if (!(ul = window.prompt('Type in the value for UL (upper left) as lng, lat. Example: 58, 58'))) { | |
return; | |
} | |
if (!ul.replace(/ /g, '').match(validCoords)) { | |
console.log('Invalid format for UL, please type again'); | |
ul = undefined; |
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
# Remove all stopped containers | |
docker rm $(docker ps -a -q) | |
# Remove all untagged images (<none>) | |
docker rmi $(docker images -f="dangling=true" -q) |
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
[XDebug] | |
zend_extension = "/path/to/xdebug.dll" | |
xdebug.remote_enable=on | |
xdebug.remote_handler=dbgp | |
xdebug.remote_port=9000 | |
xdebug.remote_autostart=on |
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
[program:sentry-web] | |
directory=/www/sentry/ | |
command=/www/sentry/bin/sentry --config=/etc/sentry.conf.py start http | |
autostart=true | |
autorestart=true | |
redirect_stderr=true | |
[program:sentry-worker] | |
directory=/www/sentry/ | |
command=/www/sentry/bin/sentry --config=/etc/sentry.conf.py celery worker -B |