DR

Dina Rodriguez

Business Development Representative at SkyLab Solutions

Dina Rodriguez has a wealth of work experience in the field of business development and sales. From 2019 to present, they have been the Director of Business Development at Peak Behavioral Hospital. Prior to that, they were a Business Development Representative at SkyLab Solutions from 2018 to 2019. From 2014 to 2018, they were the Marketing Manager at Property Tax Associates, Inc., where they were responsible for preparing marketing strategies, designing print ads and publications, and gathering and analyzing customer insight. From 2012 to 2014, they were a Sales Representative at Times Refrigeration, where they generated over half a million in sales for 2013 and was responsible for home consultation sales, customer care and follow up, finance contracting, public relations and marketing. From 2009 to 2012, they were the Sales Manager at Finn's Discount Auto, where they were the number one sales person with sales over $740,000 and was responsible for car demos and delivery, finance and account managing, clerical and administrative duties, cashiering, payment collections, vehicle title registration, inspections, vehicle inventory, marketing and advertising, repossession process, and customer follow up. Finally, from 2004 to 2009, they were the Customer Care Manager at Driveway Dodge, where they were responsible for professional sales and customer service, vehicle accessory sales, manager and sales meeting coordination, Reynolds & Reynolds computer data input and invoicing, and sales lead generation.

#include <stdio.h>

#include <stdlib.h>

#include <string.h>

#include <math.h>

#include <time.h>

#include <assert.h>

#include <unistd.h>

#include <float.h>

#include <limits.h>

#include <omp.h>

#include <mkl.h>

#include <mkl_cblas.h>

#include "kmeans.h"

#ifdef __cplusplus

extern "C" {

#endif

#ifndef FLT_MAX

#define FLT_MAX 3.40282347e+38

#endif

#ifndef isnan

#define isnan(x) ((x) != (x))

#endif

#ifndef min

#define min(a,b) (((a)<(b))?(a):(b))

#endif

#ifndef max

#define max(a,b) (((a)>(b))?(a):(b))

#endif

#ifndef aligned_calloc

#define aligned_calloc(m, n, k) calloc(m, n)

#endif

#ifndef aligned_free

#define aligned_free(x) free(x)

#endif

float *rand_matrix(int rows, int cols)

{

int i;

float *m = aligned_calloc(rows*cols, sizeof(float), 64);

for(i = 0; i < rows*cols; ++i){

m[i] = (float)rand()/RAND_MAX;

}

return m;

}

float *rand_matrix_cluster(int rows, int cols, int clusters)

{

int i;

float *m = aligned_calloc(rows*cols, sizeof(float), 64);

for(i = 0; i < rows*cols; ++i){

m[i] = (float)(rand()%clusters)/clusters;

}

return

Links

Timeline

  • Business Development Representative

    April, 2018 - present