Open in app

Sign In

Write

Sign In

jraleman
jraleman

118 Followers

Home

About

Dec 9, 2020

How I gain back my motivation

Motivation is one of those things that come and go, frequently. I may feel motivated during the day, for a couple of hours or, maybe even days. On the other hand, lack of motivation may also manifest during the day, for a couple of hours, or maybe even days. Better…

Motivation

2 min read

How I gain back my motivation
How I gain back my motivation
Motivation

2 min read


Jul 1, 2019

Implementation of the C Function strtrim()

First, let’s take a look at the man page of this function. We can use the FreeBSD version of this function. strtrim removes all whitespace characters from the beginning and the end of a string. In other words, it will remove all the unnecessary white that you might have in…

Programming

4 min read

Implementation of the C Function strtrim()
Implementation of the C Function strtrim()
Programming

4 min read


Nov 6, 2018

42 Silicon Valley: The Good, the Bad, and the Ugly?

Probably you are asking yourself, what is this? A meme is worth than 9001 words: I would describe 42 as a tuition free coding school that revolves in a peer-to-peer ecosystem. …

Education

6 min read

42 Silicon Valley: The Good, the Bad, and the Ugly?
42 Silicon Valley: The Good, the Bad, and the Ugly?
Education

6 min read


Jan 7, 2018

Ternary operators vs if-else statements

You have probably seen a ternary operator (also known as a conditional expression) before in a source file, or somewhere else. In C, and in a lot of language with similar syntax, we use the ? character to represent this operator. Most beginners (by my own experience), find it a…

Programming

3 min read

Programming

3 min read


Dec 15, 2017

Code Golf: strlen() implementation

Can you do a strlen implementation in just one line? Being that line under 80 characters (no cheating), and without the use of if-else statements, and/or while loops? Yes, you can. size_t strlen(const char *s) { return((*s)?(strlen(++s)+1):(size_t)*s); } Don’t believe me? Try to compile it. How does it work? Recursion :)

Programming

1 min read

Code Golf: strlen() implementation
Code Golf: strlen() implementation
Programming

1 min read


Jan 13, 2017

C Programming Language: Types, Structures, and Enumeration

Before getting into this subject, we first need to understand exactly what is a type in C. What is a type? “A type refers to an extensive system used for declaring variables or functions of different types. …

Programming

3 min read

C Programming Language: Types, Structures, and Enumeration
C Programming Language: Types, Structures, and Enumeration
Programming

3 min read


Jan 10, 2017

Panamá: Martyr’s Day (Janaury 9)

Today, Panama commemorates the memory of all people who died during the riots in 1964, caused by the conflict between Panamanian students (Instituto Nacional), and the Canal Zone Police officers. Governor Robert John Fleming prohibited to fly U.S. and Canal Zone flags outside schools, post offices, police stations and other…

1964

2 min read

Panamá: Martyr’s Day (Janaury 9)
Panamá: Martyr’s Day (Janaury 9)
1964

2 min read


Nov 25, 2016

Compilation: Learn CS Concepts with Super Mario 64

Here is a list of some videos that can help you understand better some of the basic computer science concepts. Shout-out to Pannenkoek2012 for making this videos, check his Youtube Channel! Floating Points Underflow / Overflow Random Number Generator Vectors and Scalars

Super Mario 64

1 min read

Super Mario 64

1 min read


Nov 8, 2016

C Programming Language: Passing a Function as a Parameter

After reading this title, you’re probably feeling like this: This may be a little hard to understand as first. I mean, a function parameter? You probably have some questions, such as: The fuck is that!? How does it works? When should I use it? Is it really worth it? Fear…

Programming

3 min read

C Programming Language: Passing a Function as a Parameter
C Programming Language: Passing a Function as a Parameter
Programming

3 min read


Nov 2, 2016

Template: Un Makefile para gobernarlos a todos!

Un makefile es un archivo de texto que tiene un conjunto de reglas, para automatizar la compilacion un programa, de forma simple y organizada. Make se puede usar para compilar cualquier lenguaje, pero en este caso usaremos el Lenguaje C. Planilla de Makefile El siguiente Makefile lo puedes usar como planilla para compilar…

Makefile

2 min read

Makefile

2 min read

jraleman

jraleman

118 Followers

https://jraleman.com

Following
  • Flatlogic Platform

    Flatlogic Platform

  • Bartosz Salwiczek

    Bartosz Salwiczek

  • Wendell S. Misiedjan

    Wendell S. Misiedjan

  • Christopher Sprague

    Christopher Sprague

See all (5)

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Text to speech