Skip to content

Releases: arakilian0/about-me

Code Restructuring - pt2

27 Nov 22:05
Compare
Choose a tag to compare

Removed /dist folder and added bin.

Fixed Travis test errors.

Code Restructuring - pt1

25 Nov 17:45
Compare
Choose a tag to compare

Restructuring code to be more functional/procedural.

  • created random number generator script

Fact Picker by Index - Complete

25 Nov 16:30
Compare
Choose a tag to compare

Finished the fact picker by index feature.

Fact Picker by Index

24 Nov 22:26
Compare
Choose a tag to compare

Progress has been made on a new feature.

Feature:

  • enables fact selecting by specific index

Todo:

  • develop script to convert char type to int type
    (this will be used to pass to the fact() function)

Random Fact Picker

24 Nov 18:34
Compare
Choose a tag to compare

The project now picks facts at random.

Chooses from:

  • facts.txt
- lives in root directory
- the facts.txt file gets copied into an array of strings, with 
  each line in the text file being an index in the array
- A random number is generated using a max range (the
  length of the array - 1)
- The random fact gets printed to the client in plain black text

Todo:

  • Compile a list of 100 different facts about myself
  • Develop build scripts for Linux and Windows
  • Build the application for Linux and Windows
  • Test on multiple platforms
  • Create program installer

Added a small utility script - os.h

24 Nov 01:24
Compare
Choose a tag to compare

Added a small script that detects the clients operating system, and returns it by string type.
Detects macOS, Linux, and Windows 32 and 64 bit systems.

File Added:

  • src/os.h

Initial Release

23 Nov 19:20
Compare
Choose a tag to compare

Project boilerplate initialization.

Keynotes:

  • Initialized on macOS
  • Compiled only for macOS using clang++
  • Tested on Mac and Linux using Travis

Note: For future releases, each platform will have it's own executable, compiled via physical machines:

  • macOS | Clang
  • Windows | MinGW
  • Linux/Fedora | GCC