Converting involves changing data from one data type or format to another.
4
votes
2answers
53 views
Basic distance conversion program
This is a simple program to convert miles, yards, feet, and inches appropriately. Everything intended for works but I feel my program is very redundant. How can I make it more efficient and less lines ...
4
votes
1answer
65 views
Hex to Double converter
I stumbled on this SO question which was asking about a way to convert larger hex values to a positive numeric value:
...
10
votes
1answer
101 views
Roman Numerals in Java
I wrote a class that can convert to and fro from Roman Numerals and Decimals. I would appreciate critical points on everything, especially:
Shortening my code.
Choosing a better approach.
Using ...
1
vote
2answers
33 views
Decimal to Roman numeral conversion algorithm
I have written a program to convert a decimal to a Roman numeral. I am wondering if my algorithm is okay or not. If it's not okay, I want suggestions on improving my code. This code only works in ...
7
votes
5answers
658 views
Creating a numeric phone keypad
I'm writing a Telephone class and it has a method called getDigits which takes in a String parameter and returns the number that would appear on your phone if you ...
8
votes
1answer
72 views
Replacement string Base64 (and a Base32) conversion
This provides (my own) implementation of ToBase64String and FromBase64String (since the .NET implementations suck), and a ...
6
votes
4answers
231 views
Character to decimal conversion
This converts from character representation of integers to their decimal value:
...
6
votes
5answers
310 views
Using functions to separate code for Fahrenheit to celsius conversion
I'm relatively new to programming, and I've been wondering about a problem such as this. How can I think about decomposing the code into its constituent functions? I went the simplest route I could, ...
6
votes
2answers
113 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 ...
9
votes
3answers
129 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 ...
4
votes
1answer
50 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
3answers
260 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 ...
3
votes
1answer
41 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
143 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
77 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
576 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 ...
3
votes
2answers
210 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 ...
10
votes
2answers
433 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
98 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 ...
6
votes
4answers
204 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 (...
0
votes
3answers
58 views
Low-latency implementation of converting non null terminated char* to unsigned int
How would you rewrite this code which I have now:
...
11
votes
2answers
307 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 ...
4
votes
2answers
106 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
487 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
118 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
57 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
124 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
407 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
189 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
1answer
157 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.
...
7
votes
1answer
107 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
2k 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
62 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
93 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 ...
3
votes
1answer
68 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 ...
0
votes
3answers
98 views
2
votes
2answers
101 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 ...
5
votes
2answers
530 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
176 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
2k 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.
...
6
votes
2answers
208 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 ...
1
vote
1answer
573 views
Conversion functions between binary, hexadecimal and ASCII
I've written a small suite to easily convert my data between binary, hexadecimal and ASCII:
...
5
votes
3answers
251 views
atoi implementation in C
I'm looking for feedback on my atoi implementation here in C. Any feedback would great. I made my own atoi for fun and to learn ...
1
vote
1answer
62 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 ...
2
votes
1answer
65 views
Rhythm notation converter (task #1)
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 ...
2
votes
1answer
83 views
Converting a string to a corresponding type in JavaScript
I need to convert a string value to its primitive type in JavaScript. Other values that are not of type String should just be returned.
Example:
String '...
4
votes
2answers
92 views
Time Code with Microsecond Conversion
The function below converts a time code into seconds, while maintaining the decimal value (fractions of seconds). The time code fed to this function will always contain microseconds. This currently ...
7
votes
1answer
81 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).
...
8
votes
2answers
476 views
Reference implementation of HTML-to-JSON converter for PCG
I have opened a puzzle at Programming Puzzles and Code Golf. The question is not perceived well (yet) and one of the reasons is that no reference implementation is provided. To mitigate this ...
6
votes
2answers
174 views
int32 to char[4] conversion functions
I need to pass some int32_t values into and later retrieve them from a local storage API that uses void* and ...