Skip to content

Instantly share code, notes, and snippets.

View justcoding121's full-sized avatar
🏠
Working from home

Jehonathan Thomas justcoding121

🏠
Working from home
View GitHub Profile
# apt-get install
sudo apt-get update
# For ubuntu 14.04
sudo apt-get install -y xserver-xorg-video-dummy-lts-trusty
# For ubuntu 16.04
sudo apt-get install -y xserver-xorg-video-dummy-lts-willy
# Copy the xorg.conf to `/etc/X11/xorg.conf`.
wget -P /etc/X11 https://gist.githubusercontent.com/mangoliou/ba126832f2fb8f86cc5b956355346038/raw/b6ad063711226fdd6413189ad905943750d64fd8/xorg.conf
@justcoding121
justcoding121 / upload-ipa-to-itunes-connect.sh
Created February 17, 2016 01:31 — forked from aspnetde/upload-ipa-to-itunes-connect.sh
A small script that uses XCode's Application Loader to automatically submit an IPA to iTunes Connect
#!/bin/bash
set -ex
# Originally from https://gist.github.com/jedi4ever/b1f8b27d4a803d487fa4
# This scripts allows you to upload a binary to the iTunes Connect Store and do it for a specific app_id
# Because when you have multiple apps in status for download, xcodebuild upload will complain that multiple apps are in wait status
# Requires application loader to be installed
# See https://developer.apple.com/library/ios/documentation/LanguagesUtilities/Conceptual/iTunesConnect_Guide/Chapters/SubmittingTheApp.html
Dim Name, Password as String
Dim Command as OracleCommand
Dim Reader as OracleDataReader
Name = Me.TextBox_username.Text
Command.SelectText = “Select password FROM usernames_table WHERE username =:parameter1”
Command.Parameters.AddWithValue(
"parameter1", Name)
Reader = Command.ExecuteReader
Dim Name, Password as String
Dim Command as OracleCommand
Dim Reader as OracleDataReader
Name = Me.TextBox_username.Text
Command.CommandText = “Select password FROM usernames_table WHERE username = ’” & Name &”’”
Reader = Command.ExecuteReader
Reader.Read ()
Password = Reader (“password”).ToString
@justcoding121
justcoding121 / gist:4648869
Last active January 26, 2017 15:19
csim - EEE
// C++/CSIM Model of EEE - Energy Efficient Ethernet
//This program is a modification of M/M/1 queue example bundled with CSIM software
//Compiled and run using the default compiler available with MS visual studio 2010
//TRACE files used were those provided at the project-3 link in Dr. Ken Christensen's web page
// class definitions
#include "cpp.h"
#include <stdio.h>
#include <string.h>
#include "utility.h"
#include "math.h"
std::string utility::intToString(int number)
{
std::stringstream ss; //create a stringstream
ss << number; //add number to the stream
return ss.str(); //return a string with the contents of the stream
}
/* ---------Compute edges and find circles using hough transform----------------*/
//-----------------------------Gray level histogram computation ------------------------------------
void utility::ComputeHistogramGrey(image& src, image& tgt, ROI roi)
{
int histogram_1[256] = { 0 };
int histogram_2[256] = { 0 };
for (int i = 0; i < src.getNumberOfRows(); i++)
for (int j = 0; j < src.getNumberOfColumns(); j++) {
int value = roi.InROI(i, j);
if (value != -1) {
/*-------------------------Grey Scaling-----------------------**/
void utility::addGrey(image& src, image& tgt, ROI roi, int value1, int value2)
{
tgt.resize(src.getNumberOfRows(), src.getNumberOfColumns());
for (int i = 0; i < src.getNumberOfRows(); i++)
for (int j = 0; j < src.getNumberOfColumns(); j++)
{
int value = roi.InROI(i, j);
Imports System.Collections.Generic
Imports System.ComponentModel
Imports System.Data
Imports System.Drawing
Imports System.Text.RegularExpressions
Imports System.Windows.Forms
Imports Extensibility
Imports EnvDTE
Imports EnvDTE80
Imports System.Runtime.InteropServices
;;; ----=========== General Information ===========-----
;;;
;;; Artificial Intelligence, Spring 2012
;;; Project 2 - Computer Assistant Expert System
;;; Authors: Nikolai,
;;; Titanium
;;;
;;; ----=========== System's Description ===========-----
;;;
;;; This expert system is designed to assist customers