A generic term meaning the process by which text transformed into a more meaningful or clearer output. A typical example would be the transformation of a decimal into a particular currency format with the correct number of decimal places.
13
votes
4answers
496 views
Generating formatted multiplication tables in C++
I am self studying C++ from Robert Lafore's OOP in C++. I am solving the first exercise questions of chapter-3 loop and decisions. I've written three different codes using different approaches. I want ...
4
votes
2answers
80 views
Colorful output on terminal
I went from manually outputting escape codes in each string to creating a utility struct/class full of static functions and variables that needed to be initialized in source files (static private ...
2
votes
1answer
40 views
Basic JSON Representation in Rust
This week I started reading "The Rust Programming Language". As I reached the chapters on enumerations and pattern matching I felt I had enough material to put together a simple representation of JSON ...
1
vote
0answers
33 views
making dynamic tables with JSON - angular2
Okay, so simple enough task - I'm using Ionic/Angular2 to develop an auditing app. Using angular I can map Objects into the DOM rather easily, so what I need to do is create an object - but I would ...
3
votes
1answer
50 views
Timestamp function with millisecond precision
I want to be able to print timestamps with milliseconds precision and time_t doesn't provide this. I also want the code to be portable, so operating specific ...
4
votes
1answer
76 views
Preventing numbers from showing up in scientific notation
We have a StreamBuffer class which is not inherited from std::ios_base (or some of it's derivatives such as ...
-3
votes
2answers
31 views
Display calendar using a loop
Desired output:
Can I get an shorter version of this code? My instructor just wants me to figure it out my self.
...
4
votes
2answers
55 views
Library assistant
HackerRank currently has '7 days of JavaScript' going, a quick intro into the JavaScript language. Every day a couple of challenges will be made available. One of the challenges of today was this:
...
4
votes
1answer
62 views
Syntax highlighter for HTML and PHP
I've created a JavaScript application to highlight the syntax of HTML and PHP. I know a lot of syntax highlighter are available nowadays, I just created to extend my knowledge in JS and regular ...
-1
votes
1answer
58 views
5
votes
0answers
158 views
Document formatting markup engine in Postscript
I've been rewriting this same sort of thing off and on over the years, but finally here's the "perfected" monstrosity. Some kruft in the middle with attempting to predict the number of spaces that ...
6
votes
1answer
37 views
Printing a nested data structure in Clojure
I wrote the following code which transforms a nested data structure
...
1
vote
2answers
45 views
Converting an angle in degrees to a pretty string representing it in radians
Given an angle in degrees, output a pretty string representation of its value in radians as a fraction.
Where pretty means:
Simplified as much as possible.
With no unnecessary ones.
Using the ...
8
votes
1answer
203 views
Pretty printing degrees input to radians
I'm mostly concerned about edge cases, although I think I dealt with them all. Improvements on code quality would also be much appreciated.
...
4
votes
3answers
92 views
Use va_list to format a string
I wrote a function that basically works like sprintf, but instead returns the formatted string (std::string). I haven't worked ...
2
votes
1answer
33 views
Printing an array in columns
I'm trying to define a function which takes an array and prints it to a predefined total width in as many columns as needed. Think of the way ls prints files for ...
6
votes
1answer
36 views
Convert data back-and-forth between CSV files and pretty-print
I wrote a script to convert CSV files in human readable format and vice versa.
Human readable format is achieved like so:
...
0
votes
2answers
49 views
JLabel formatting on GPA calculator
I am currently working on a GPA Calculator side project over holiday break to become more familiar with Swing, but I find the number formatting is more complicated than in regular Java. At the moment ...
15
votes
2answers
326 views
K&R 1-21 write an “entab” program
From K&R exercise 1-21,
Write a program entab that replaces strings of blanks by the minimum
number of tabs and blanks to achieve the same spacing. Use the same
tab stops as for detab. ...
11
votes
4answers
478 views
Function to format the local time
This is a statement that I use a lot in my code base:
(LocalDateTime.now()).format(DateTimeFormatter.ofPattern("ssmmHHddMMMuu"))
Should I create a static method ...
4
votes
3answers
562 views
Format of hexeditor
Is there a cleaner way to write this code? It's the start of a hexeditor I'm creating.
I'm aware that the variables aren't descriptive, this is just a test run for when I imbed it into a File ...
2
votes
2answers
34 views
Parsing users from a list of commands for email notifications
I want to make a list of the last words on each line of a file that looks like this:
...
3
votes
2answers
63 views
Print multiplication tables
Write a function that given a max argument will print a nicely aligned multiplication tables, for example, if max = 8
...
4
votes
1answer
60 views
String formatting of unit types
I have a units of measure library that I added string formatting to. Here is sample code:
...
4
votes
6answers
161 views
Centering a line of text
I need a procedure that "centers" a string inside a string that is consecutive characters of a fixed length. For instance,
...
7
votes
1answer
55 views
Function to wrap words in a text editor without breaking them
These are 3 functions I created in C language to read in a text file, remove the carriage returns from it in order to display on the screen, and display the file on screen wrapped with the words of ...
3
votes
1answer
58 views
Formatting “Bond, JAMES (Mr)”
I need to call this function over a big dataset. I need it to be as efficient as possible but still be readable. Can I make it anymore efficient by using a different function for capitalize or blank ...
2
votes
1answer
45 views
Printing polynomials
I am taking a class on ruby and our assignment is to take user input and print out a polynomial. Wondering if I can get any feedback to how to improve my code.
...
2
votes
3answers
35 views
Perl code that breaks a line after fixed number of columns
Here is a simple program that I created to print a file by breaking it after a fixed number of columns. I feel it can be optimized but not sure how. Any feedback is great.
...
7
votes
5answers
557 views
Normalizing `DateTime` values to strings
I have this as part of a project to normalize DateTime values to more readable strings, localized to the relative time in the past that they happened.
It allows ...
1
vote
2answers
129 views
Number to german decimal format converter function [closed]
I have a function that formats a number (even a float) to a German decimal format. I got this function from here ...
2
votes
1answer
69 views
A Scala script for beautify scientific notation strings from Excel
Excel renders scientific notation in the engineering fashion, e.g. “4.2E-5”. That’s OK, but when you are writing a scientific paper, it’s likely that you want it to look like this: “4.2×10⁻⁵”.
I have ...
2
votes
2answers
76 views
Updating a clock display with the time
Originally, I was going to post a question about how to condense four repetitive functions into a single function, but I wound up figuring it out myself before I could even post it.
However, the ...
5
votes
1answer
59 views
Using changeable column formatting to display table
When answering python tuition calculator v2, I got a little carried away, and started building a print_table() function which I don't like the resulting code for, ...
3
votes
2answers
52 views
Aligning text in Haskell
This Haskell program just aligns the text lines on the given substrings.
I took inspiration from here, but my code is not golfed.
...
7
votes
1answer
229 views
Replacement string Base64 (and a Base32) conversion [closed]
This provides (my own) implementation of ToBase64String and FromBase64String (since the .NET implementations suck), and a ...
1
vote
0answers
76 views
Parse a plain text newsletter and show it with nicer markdown formatting
I wrote some code to parse an e-mailed events newsletter I'm on and redisplay it with better formatting. I like the output, but I'm not thrilled with the code. It feels like there's a lot of ...
8
votes
1answer
70 views
Stream manipulating indenter
I've always wanted to be able to steer stream indentation, so that I could write code like this:
...
3
votes
1answer
127 views
Phone number format and data entry restriction
I created a form that formats phone numbers, allows only allowable keys to be pressed, and converts a lettered entry into its corresponding phone keypad number. Is there some cleanup or better coding ...
2
votes
1answer
34 views
Significant Figures Formatting.00
I wrote this for an SO question on formatting numbers to specific quantities of significant figures (after all, reinventing-the-wheel), anyway, all critiques welcome.
It's pretty easy to use, ...
3
votes
1answer
67 views
Twisting words! (boustrophedon formatting)
I decided to implement properly the Code Golf challenge about twisting strings. I report the assignement verbatim for convenience:
Twisting Words!
Given a string and a positive integer. You ...
6
votes
1answer
179 views
ANSI colors cross platform
I am trying to write for both NT and POSIX (my two usual platforms) and have come up with the code below. The clrs code I refer to is apparently from blender build ...
6
votes
1answer
118 views
printf-style string formatter
As part of a larger project I'm working on, I've made a function that aims to replicate, as best as I can, the placeholder part of the console.log() function usable ...
2
votes
3answers
147 views
Printing a text rectangle
I'm starting C as my first language and am just under halfway done the book I'm using. However, I commonly hear about 'bad' programmers and 'bad' code whenever I encounter any sort of programming ...
5
votes
1answer
669 views
A custom Pandas dataframe to_string method
Oftentimes I find myself converting pandas.DataFrame objects to lists of formatted row strings, so I can print the rows into, e.g. a ...
2
votes
2answers
109 views
Date formatters, lazily instantiated once
I would like to create two date formatters only on first call. In Objective-C I would use dispatch_once() but now working in Swift. Am I doing it correctly? My code ...
3
votes
2answers
234 views
Returning the length of the File in B/KB/MB
The method length() in File returns the length of a file in Bytes, this code transforms that into b/kb/mb as can be seen in the ...
5
votes
1answer
71 views
How much time is left?
rags-to-riches of Convert seconds to hours, minutes and seconds.
In that question, BigDecimal was chosen to be the model class, which doesn't seem like a right fit ...
2
votes
1answer
56 views
Implementing SQL function STR
I am writing a piece of code in c# that mimics the behaviour of following SQL function STR in the following case:
...
5
votes
1answer
43 views
Dump hash in columns
I tried to answer the question "How to print a hash in Perl, such that 3 key value pairs are printed on each line?" like this.
As I got an uncommented downvote, I'd like to ask: What's wrong with/How ...