Converting involves changing data from one data type or format to another.

learn more… | top users | synonyms

4
votes
1answer
27 views

GUID to hex-string and back

I'm new to Python and I'm trying to convert between Microsoft GUIDs and plain hex strings: ...
3
votes
1answer
367 views

Binary to ASCII converter

This is a program I wrote to convert binary to ASCII. I am still learning ARM assembly. How can I improve my program? Are there any bad programming habits in my code? I've tested it on Raspberry Pi ...
6
votes
2answers
103 views

Number converter between bases

I just wrote a utility program in C that converts numbers of different bases to 'standard' well-known bases (hex, dec, oct, bin). I called it repnum, short for ...
3
votes
1answer
836 views

Converting Delphi colors between TColor, RGB, CMYK, and HSV

I wrote a record which encapsulates conversion of colors between TColor, RGB values, CMYK ...
9
votes
3answers
118 views

HTML to Markdown converter

I've made a simple HTML→Markdown converter in Javascript and am looking for any feedback. For now, I've basically used Stack Exchange's /editing-help as a guide as ...
12
votes
3answers
77k views

Faster way to convert DataTable to List of Class

I am using ExcelDataReader to import an excel file to a dataset. Example Excel table below: ...
3
votes
3answers
209 views

Unit Converter in Python

I am new to programming and I am trying to make a simple unit converter in python. I want to convert units within the metric system and metric to imperial and vice-versa. I have started with this code ...
8
votes
1answer
6k views

Convert between date/time and time-stamp without using std library routines

I am trying to implement in C two simple convertors, date/time to time-stamp and vice-versa, without any dependencies on time library routines (such as localtime, mktime, etc, mainly due to the fact ...
3
votes
1answer
37 views

Map strings to (const) ints

I'm imagining go generate would be a good tool for this. I want to convert strings to ints to save space. ...
1
vote
1answer
55 views

Powershell to Convert HTML Table to Array of PSCustomObject

I created the below script to sent a request to a website, then convert the table in the results to an array of PSObjects which I can work with in PowerShell. This uses some nasty hacks (e.g. using a ...
2
votes
1answer
69 views

Currency converter using MVC pattern in C++ & QT

While understanding the MVC pattern, I came across this particular article. I thought to implement it using the C++/QT library. The intent over here is to implement/use MVC concepts in correct way. ...
6
votes
4answers
400 views

Conversion of hexadecimal string to string

Given a C# string which is a set of hexadecimal numbers such as: string HexString = "202048656c6c6f20576f726c64313233212020"; Where those hexadecimal numbers ...
6
votes
4answers
201 views

Converting from decimal to word

I'm still investigating the problem with decimal to word conversion. I understood the basics, but now my goal is to learn how to add in base-26 (the English alphabet) or base-52 (...
10
votes
2answers
341 views

Convert Persian digits to English numbers

I use the following code to convert ۱۲۳۴۵ to ‍12345, effectively transliterating the persian numbers into latin numbers: ...
3
votes
2answers
167 views

Converting numbers to English words

This is a simple program to convert a number, from 0 up to 99999999, to English words. Example: If the input is: 1234 The output would be: one thousand ...
3
votes
2answers
85 views

Integer to English Conversion

I wrote some code to translate numbers ( for now just positive, up to the 32bit limit ) into English words. Everything works and I'm happy. I searched through the site looking for a comparison code ...
0
votes
3answers
57 views
1
vote
1answer
90 views

Angular filter to format temperature

Below is a basic filter I created with Angular that does temperature conversion. I'd like to get thoughts on how to improve this code from both an Angular perspective and a general JS perspective. ...
4
votes
3answers
1k views

Decimal/binary/hex converter

I've finally finished my converter and have determined that it works, but I'm trying to make it cleaner and/or more practical (primarily with the switch ...
11
votes
2answers
260 views

Returning result and error status for number type conversions

Looking for review of design strategy of using a struct to return the functional result and error status. Your experience of how my design approach may succeeded ...
3
votes
2answers
94 views

Date and time columns conversion to Time(WithZone)

I have two columns representing a date and a time. {dateproc: '2012-03-23', horproc: '2000-01-01 16:15:23 UTC'} Both are read as a ...
7
votes
1answer
68 views

MS Access to PostgreSQL converter

I was hoping to get some feedback on the implementation of this class for programmatically converting an access file into a PostgreSQL schema (works by obtaining schema data from the cursor object). ...
4
votes
2answers
79 views

Recognizing number representation (and convert to decimal) from the base prefixes

Here is what appears to be a fairly easy problem: Write a program that prompts the user to enter several integers in any combination of octal, ...
4
votes
2answers
235 views

Converting CSV files to Excel workbooks

My converter converts all CSV files in the subfolders of folders 1, 2 & 3 into Excel workbooks. As of now, I am converting using codes for each folders. I previously tried to combine those into ...
3
votes
1answer
103 views

Converting a CSV file to a social network graph for Pajek

The code will ask for a directory and will then read the CSV file and then generate a file in that directory describing a social network for Pajek. Does anyone know a way to load this CSV file to a ...
4
votes
1answer
53 views

Brainf**k to Ruby interpreter — v3

Previous iteration. I think this is about as good as it's gonna get, but just for kicks, let's do one more round of iterations. As before, it's a very simple substitution from Brainfuck to Ruby, ...
8
votes
1answer
121 views

Brainf**k to Ruby converter — v2

Previous iteration. You know, I think this is the fastest I've ever pushed out an update to anything. This is Version 2 of my Brainf**k to Ruby converter, and the generated code looks... Well, like ...
6
votes
2answers
403 views

Brainf**k to Ruby converter, written in Ruby — v1.0

I've seen a lot of Brainf**k interpreters in various languages. I decided that actually interpreting Brainf**k is too hard, so instead of that, I wrote a 'compiler' in Ruby that directly transcribes ...
5
votes
3answers
183 views

K&R 4-12 recursive converter int to string

The exercise is: Adapt the ideas of printd to write a recursive version of itoa; that is, convert an integer into a string by calling a recursive routine. I wonder if I have correctly ...
1
vote
2answers
807 views

Converting audio to different file formats

I have this code that converts audio to different file formats: ...
2
votes
2answers
148 views

Float string to integer string

I have a float in the String strFloat. I wanted to convert it to a rounded integer also stored in a ...
7
votes
1answer
86 views

Conversion calculator using polymorphism and Swing

This is my first attempt at a program (outside of school) and I was trying to implement and learn polymorphism on a conversion calculator for volumes and weights. I found myself using long ...
7
votes
4answers
1k views

Kelvin-Fahrenheit-Celsius temperature converter

I am curious if it would ever be in good practice to omit constructor definitions from a class. Here, the intention of the Temperature class is to simply convert between one temperature scale to ...
2
votes
2answers
57 views

Binary Conversion in Java

Before implementing a GUI I tried performing it at CLI first and I also tried to implement it by using calling methods to another class. ...
8
votes
2answers
83 views

Converting to Base 26 in One Based mode

I needed to create a simple method that converts numbers in Base 26 (string) using, as expected, letters from a to z. But that's not all, this Base 26 needs to be ...
1
vote
1answer
250 views

Using strong types on top of COM and ODBC

I am stuck with some old API that involves COM and ODBC, and I cannot switch to cool things like MEF or entity framework. So, I am working on some wrappers that will help me write less code and also ...
3
votes
1answer
64 views

Updating geo coordinates

An error in a live environment was detected when trying to convert string geo coordinates into a double. The current culture (hu-HU) uses comma instead of point ...
8
votes
1answer
28k views

Converting List to a DataTable and/or DataSet Extension Methods

Can someone help me improve this code? I and trying to have a couple extension methods to convert strongly-typed lists to a DataSet and ...
2
votes
2answers
79 views

ConcurrentLinkedQueue to unmodifiable list

I have a ConcurrentLinkedQueue where I put some mails in. Now I have a visual page where I want to see what's in the Queue, but ...
0
votes
3answers
93 views

convertToHHMM function

Can someone help me make a more elegant solution to this function? ...
2
votes
2answers
2k views

Currency conversion class with caching

I've just made this class, which supports caching. I'd really appreciate any comments on how to make it better etc. Code ...
0
votes
3answers
127 views

Converting shoe sizes and distance

I'm working on a code where it converts shoe sizes and distance. I require help making it "nicer" because I feel like it is a little messy. I was thinking about maybe making an enum to hold the ...
5
votes
2answers
374 views

Length Converter

I have a Swing application that converts lengths. Inches to centimeter, feet to yard, etc. I’m wondering if I could make the super large HashMap a little smaller, or more efficient. Any other ...
0
votes
1answer
139 views

Converting from binary to unary [closed]

I have function that convert binary number to unary number based on a Markov algorithm. In what ways can I improve the code? The algorithm goes as follows: Replace all ...
7
votes
3answers
1k views

Function that convert decimal to binary

I have a function that converts an integer to its binary representation. I am wondering if there is any way I can improve the function. ...
1
vote
1answer
61 views

Beat count-to-time converter (task #2)

About a year ago, I was given a C++ assignment as a preliminary job-interview test. The assignment included 4 different tasks, from which I had to choose one. I actually chose and completed 3 out of ...
5
votes
3answers
761 views

Number to words problem

This is a very long solution I've been working on to a Number to Words problem. I've identified that there's a lot of repeating logic (e.g. 'if writing > 0', 'writing = integer /',). How would you ...
6
votes
2answers
175 views

Convert a 24bit bitmap to grayscale

I wrote this so I can learn CUDA. This is coded to work on my laptop's Nvidia GeForce GT 540M. Main points I need reviewed: CUDA programming conventions Performance, especially kernel speed C ...
2
votes
1answer
3k views

Conversion of datetime strings in PHP pages to user's timezone

I am working on a PHP/MySQL application that uses a different time zone from the server it runs on, and neither of the timezones are UTC. I'm converting displayed times to be in the user's timezone, ...