This file contains 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 ( | |
"fmt" | |
"sync" | |
gitlab "github.com/xanzy/go-gitlab" | |
) | |
func main() { |
This file contains 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
# Qt | |
# Incomplete | |
{ include: ["<../../../qtdeclarative/src/qml/jsapi/qjsengine.h>", private, "<QJSEngine>", public ] }, | |
{ include: ["<../../../qtdeclarative/src/qml/jsapi/qjsvalue.h>", private, "<QJSValue>", public ] }, | |
{ include: ["<../../../qtdeclarative/src/qml/qml/qqmlcontext.h>", private, "<QQmlContext>", public ] }, | |
{ include: ["<../../../qtdeclarative/src/qml/qml/qqmlengine.h>", private, "<QQmlEngine>", public ] }, | |
{ include: ["<../../../qtdeclarative/src/quick/items/qquickitem.h>", private, "<QQuickItem>", public ] }, | |
{ include: ["<../../../qtdeclarative/src/quick/items/qquickview.h>", private, "<QQuickView>", public ] }, | |
{ include: ["<../../../qtdeclarative/src/quick/items/qquickwindow.h>", private, "<QQuickWindow>", public ] }, | |
{ include: ["<../../../qtdeclarative/src/qml/qml/qqmlapplicationengine.h>", private, "<QQmlApplicationEngine>", public ] }, |
This file contains 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
#!/usr/bin/env python3 | |
import os | |
import argparse | |
import tempfile | |
import getpass | |
import keyring | |
from pathlib import Path | |
from subprocess import call |
This file contains 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
#!/usr/bin/python3 | |
import argparse | |
import itertools | |
import sys | |
import time | |
import threading | |
import spotipy | |
import spotipy.util as util |
This file contains 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
var express = require('express'); | |
var app = express(); | |
var server = require('http').Server(app); | |
var io = require('socket.io')(server); | |
var port = process.env.PORT || 8120; | |
server.listen(port, function () { | |
console.log('Chat is listening on port %d', port); | |
}); |