dev.to
1. A hacker view of your github profile
For my next project while learning React.js. I created a app where you can view your github profile with greenish ui.
I just started to create the app and it's not yet done, but I want to share it anyway since it is already deployed in vercel.
Check your own profile with the following link format.
https://githux.vercel.app/{username}
Github profile: https://githux.vercel.app/github
Repo: https://github.com/junsantilla/githux…
#webdev #javascript #react #uiweekly
2. Advent of Code Day 3
Hello Everyone :)
I've completed Day 3 of Advent of Code
The language used is Rust and the code can be found here…
#rust #beginners #showdev #adventofcode
3. The Perl outlook for next year is favorable
The Perl outlook for next year is favorable for me.
AI, machine learning and IoT need more and more C/C++ for calculation in low level layer.
SPVM is a Perl module that is created by me. This module ease the binding C/C++/CUDA.
And Perl is good at text processing on Linux that is not good at for C/C++.
The combination of Perl and C/C++ is very good because they complement each other perfectly…
#perl #c #cpp #linux
1. A hacker view of your github profile
For my next project while learning React.js. I created a app where you can view your github profile with greenish ui.
I just started to create the app and it's not yet done, but I want to share it anyway since it is already deployed in vercel.
Check your own profile with the following link format.
https://githux.vercel.app/{username}
Github profile: https://githux.vercel.app/github
Repo: https://github.com/junsantilla/githux…
#webdev #javascript #react #uiweekly
2. Advent of Code Day 3
Hello Everyone :)
I've completed Day 3 of Advent of Code
The language used is Rust and the code can be found here…
#rust #beginners #showdev #adventofcode
3. The Perl outlook for next year is favorable
The Perl outlook for next year is favorable for me.
AI, machine learning and IoT need more and more C/C++ for calculation in low level layer.
SPVM is a Perl module that is created by me. This module ease the binding C/C++/CUDA.
And Perl is good at text processing on Linux that is not good at for C/C++.
The combination of Perl and C/C++ is very good because they complement each other perfectly…
#perl #c #cpp #linux
dev.to
1. JS Functional Concepts: Pipe and Compose
Function piping and composition are concepts from functional programming that of course are possible in JavaScript -as it's a multi-paradigm programming language-, let's deep into this concepts quickly.
The concept is to execute more than a single function, in a given order and pass the result of a function to the next one.
You can do it ugly like that:
function1(function2(function3(initialArg)))
Or using function composition
compose(function3, function2, function1)(initialArg);
or functio…
#javascript #webdev #programming #tutorial
2. C Vs C++
C and C++ are both programming languages, but they were designed for different purposes and have some key differences.
Here are a few of the main differences between C and C++:
1)C++ is an object-oriented programming (OOP) language, while C is a procedural language. This means that C++ provides support for classes, objects, and other OOP concepts, while C does not.
2)C++ includes features for exception handling, such as try-catch blocks, which are not present in C.
3)C++ allows function over…
#c #cpp #programming #beginners
1. JS Functional Concepts: Pipe and Compose
Function piping and composition are concepts from functional programming that of course are possible in JavaScript -as it's a multi-paradigm programming language-, let's deep into this concepts quickly.
The concept is to execute more than a single function, in a given order and pass the result of a function to the next one.
You can do it ugly like that:
function1(function2(function3(initialArg)))
Or using function composition
compose(function3, function2, function1)(initialArg);
or functio…
#javascript #webdev #programming #tutorial
2. C Vs C++
C and C++ are both programming languages, but they were designed for different purposes and have some key differences.
Here are a few of the main differences between C and C++:
1)C++ is an object-oriented programming (OOP) language, while C is a procedural language. This means that C++ provides support for classes, objects, and other OOP concepts, while C does not.
2)C++ includes features for exception handling, such as try-catch blocks, which are not present in C.
3)C++ allows function over…
#c #cpp #programming #beginners
dev.to
1. To-Do List Application with Tailwind CSS, and JavaScript
As a web developer, one of the first types of applications that I learned to build was a to-do list. These simple, yet powerful tools allow us to stay organized and on top of our tasks, making them an essential tool for anyone looking to boost their productivity. In this tutorial, I'll walk you through the process of building a to-do list application from start to finish using HTML, CSS, and JavaScript.
Step 1: Set up the HTML
The first step in building any web application is to set up the HT…
#javascript #webdev #programming #react
2. Rust's impact on security (Why the NSA, Microsoft CTO, and Linux recommend it as the safer choice over C and C++)
Rust's impact on security
Why the NSA, Microsoft CTO, and Linux recommend it as the safer choice in comparison to C or C++.
Outline for Rust's impact on security compared to C & C++
Introduction
Introduction to Rust programming language
Overview of C and C++ programming languages
Importance of security in software development
Chapter 1: Memory Safety
Explanation of memory safety issues in C and C++
Description of Rust's memory safety features, such as its borrow checker and ownership sy…
#rust #c #security #web3
3. Web Performance Resources for Front End Developers
One of the best ways to level up your front end development career is choosing one or more areas to specialize in. Web performance can be directly tied to increases in conversion rates and revenue generated and is a great choice for front end developers looking for an area of specialty since it is so in demand.
By focusing on performance, a front-end engineer can help ensure that their projects are able to handle large amounts of traffic and provide a smooth and enjoyable user experience.
And …
#webdev #performance #career
1. To-Do List Application with Tailwind CSS, and JavaScript
As a web developer, one of the first types of applications that I learned to build was a to-do list. These simple, yet powerful tools allow us to stay organized and on top of our tasks, making them an essential tool for anyone looking to boost their productivity. In this tutorial, I'll walk you through the process of building a to-do list application from start to finish using HTML, CSS, and JavaScript.
Step 1: Set up the HTML
The first step in building any web application is to set up the HT…
#javascript #webdev #programming #react
2. Rust's impact on security (Why the NSA, Microsoft CTO, and Linux recommend it as the safer choice over C and C++)
Rust's impact on security
Why the NSA, Microsoft CTO, and Linux recommend it as the safer choice in comparison to C or C++.
Outline for Rust's impact on security compared to C & C++
Introduction
Introduction to Rust programming language
Overview of C and C++ programming languages
Importance of security in software development
Chapter 1: Memory Safety
Explanation of memory safety issues in C and C++
Description of Rust's memory safety features, such as its borrow checker and ownership sy…
#rust #c #security #web3
3. Web Performance Resources for Front End Developers
One of the best ways to level up your front end development career is choosing one or more areas to specialize in. Web performance can be directly tied to increases in conversion rates and revenue generated and is a great choice for front end developers looking for an area of specialty since it is so in demand.
By focusing on performance, a front-end engineer can help ensure that their projects are able to handle large amounts of traffic and provide a smooth and enjoyable user experience.
And …
#webdev #performance #career
dev.to
Tail Call Optimization by Base Jumping off the Stack
Tail calls are the only means of iteration in most functional languages. So implementation support is absolutely critical.
For example, Scheme requires tail call optimization as part of its language specification (PDF):
3.5 Proper tail recursion
Implementations of Scheme are required to be properly tail-recursive. A Scheme implementation is properly tail-recursive if it supports an unbounded number of active tail calls. A call is active if the called procedure might still return.
Over the …
#computerscience #c #scheme
Tail Call Optimization by Base Jumping off the Stack
Tail calls are the only means of iteration in most functional languages. So implementation support is absolutely critical.
For example, Scheme requires tail call optimization as part of its language specification (PDF):
3.5 Proper tail recursion
Implementations of Scheme are required to be properly tail-recursive. A Scheme implementation is properly tail-recursive if it supports an unbounded number of active tail calls. A call is active if the called procedure might still return.
Over the …
#computerscience #c #scheme
dev.to
Bits and Bytes: A Comprehensive Guide to Bit Manipulation for Developers
Ah, bit manipulation. Another classic when learning to develop embedded software. It saved me half of...
#tutorial #c #embedded #beginners
Bits and Bytes: A Comprehensive Guide to Bit Manipulation for Developers
Ah, bit manipulation. Another classic when learning to develop embedded software. It saved me half of...
#tutorial #c #embedded #beginners
dev.to
audioFlux: A library for audio and music analysis, feature extraction.
Category Submission: C/Python Screenshots Description A library...
#python #opensource #c
audioFlux: A library for audio and music analysis, feature extraction.
Category Submission: C/Python Screenshots Description A library...
#python #opensource #c
dev.to
C program to display calendar for a given year
A calendar is an essential tool that is used by people all over the world to manage their schedules...
#c #challenge #computerscience #wecoded
C program to display calendar for a given year
A calendar is an essential tool that is used by people all over the world to manage their schedules...
#c #challenge #computerscience #wecoded
dev.to
What to choose: C vs C++?
C vs. C++ is a popular developer blog topic. C and C++ are programming languages that can be used to...
#discuss #programming #c #productivity
What to choose: C vs C++?
C vs. C++ is a popular developer blog topic. C and C++ are programming languages that can be used to...
#discuss #programming #c #productivity
cointelegraph.com
5 programming languages to learn for AI development
From Python and Java to C++, R and Lisp, these languages offer powerful capabilities for working with machine learning algorithms to build AI apps.
#programminglanguages #AIdevelopment #Python #Java #C++ #R #Lisp
5 programming languages to learn for AI development
From Python and Java to C++, R and Lisp, these languages offer powerful capabilities for working with machine learning algorithms to build AI apps.
#programminglanguages #AIdevelopment #Python #Java #C++ #R #Lisp