Skip to content

Instantly share code, notes, and snippets.

View pixelead0's full-sized avatar
👨‍💻
Programando.... ando...

AdanGQ pixelead0

👨‍💻
Programando.... ando...
View GitHub Profile
@unbracketed
unbracketed / export_repo_issues_to_csv.py
Last active August 3, 2023 18:13
Export Issues from Github repo to CSV (API v3)
"""
Exports Issues from a specified repository to a CSV file
Uses basic authentication (Github username + password) to retrieve Issues
from a repository that username has access to. Supports Github API v3.
"""
import csv
import requests
@mikeerickson
mikeerickson / laravel-setup.sh
Last active December 30, 2015 12:28
Laravel Setup Script to craft new Laravel 4.1 (has drop down support for Laravel 4.0.x as well) application and optionally install a suite of commonly used developer tools. In addition, provides support for creating a new MySQL database as well as setting up a new git repository.
#!/bin/bash
# Current Version 0.0.9
# dont forget to create write permissions on this file
# 2013-12-20: 0.0.9
# - refactored .bowerrc to store in 'lib' instead of components
# 2013-12-16: 0.0.8
# - Updated Gruntfile.js and .jshint gist referece
@ashmigelski
ashmigelski / parser.py
Last active March 23, 2023 11:51
Python server for Wialon Retranslator 1.0
# -*- coding: utf-8 -*-
import binascii
import struct
def parse(fmt, binary, offset=0):
'''
Unpack the string
# -*- coding: utf-8 -*-
"""
Data models for the Deis API.
"""
from __future__ import unicode_literals
import base64
from datetime import datetime
import etcd
# -*- coding: utf-8 -*-
"""
Data models for the Deis API.
"""
from __future__ import unicode_literals
import base64
from datetime import datetime
import etcd