#PseudoCode

2025-09-09

My project today is to showcase that #pseudocode is in fact the first probabilistic programing language. The compiler will use #openai's API to compile the code in python and execute it right away. This is a #serious project that will change programing as we know. Probabilistic languages opens doors to so much possibilities. Like.... Like... There is a lot probably.

Knowledge Zonekzoneind@mstdn.social
2025-05-07

#ITByte: #Pseudocode is a fantastic way to sketch programs using informal, natural language, without worrying about specific syntax.

#SudoLang is one such #Pseudolanguage designed for interacting with #LLMs.

knowledgezone.co.in/posts/Sudo

Side-Line Magazinesidelinemag@mas.to
2025-01-13
Joxean Koret (@matalaz)joxean
2024-11-03

This paper looks promising: "SIGMADIFF: Semantics-Aware Deep Graph Matching for Pseudocode Diffing".

ink.library.smu.edu.sg/cgi/vie

2024-08-26

When you write #pseudocode is it:

2024-08-25

Growing up in the 90s and 2000s was such an exciting time, it was centered around whats next and how what we had at the time could get better. I always remember the excitement of enrolling to do #Information Technology in high school, learning how to type in Mavis Beacon, understanding #pseudocode algorithms in #QBasic, creating documents, spreadsheets and databases, changing the #wallpaper on the lab computer or guessing my IT teachers password on the NT server.

2024-08-06

#DailyBloggingChallenge (351/365)

Now that the #PseudoCode exists, it shall be converted into #Hugo syntax as described in 349. As in the image, some #GoLang functions are used like printf and other Hugo functions to loop over the variables that are saved as an array type.

Knowledge Zonekzoneind@mstdn.social
2024-05-07

#ITByte: #Pseudocode is a fantastic way to sketch programs using informal, natural language, without worrying about specific syntax.

#SudoLang is one such #Pseudolanguage designed for interacting with #LLMs.

knowledgezone.co.in/posts/Sudo

2024-04-19

1/🧵 We all work in different ways, but I find a lot of benefit when starting a new #rstats project or pipeline is to not dive straight into coding, even if the topic is familiar. Taking a moment to pause, ponder, and jot down a heap of comments (yes, usually riddled with spelling mistakes) and pseudo code in a dev.R script file can be invaluable.
#programming #pseudocode

2024-03-02

Viele angehende Fachinformatiker*innen tun sich bei der Beschreibung von #Algorithmen mit #Pseudocode viel schwerer, als beim Programmieren.Das liegt sicher zum Teil an der recht sperrigen Art "deutsches Pseudopascal", die sich in den IHK-Beispiellösungen findet. In diesem Artikel habe ich versucht, gängige Pseudocode-Notationen mal gegenüberzustellen: oer-informatik.de/pseudocode #informatikEdu

Stefan Münzstefanm@misskey.de
2023-08-08

Nach Feierabend geschriebener #Pseudocode, den ich gerne als schickes Plakat für den globalen Klimastreiktag hätte :-)

if(life == "profit") {
life.replace("r","l"); // "plofit"
life.replace("o","a"); // "plafit"
life.replace("f","n"); // "planit"
life.replace("i","e"); // "planet"
}
life.save();

https://fridaysforfuture.de/klimastreik/

Knowledge Zonekzoneind@mstdn.social
2023-05-07

#ITByte: #Pseudocode is a fantastic way to sketch programs using informal, natural language, without worrying about specific syntax.

#SudoLang is one such #Pseudolanguage designed for interacting with #LLMs.

knowledgezone.co.in/posts/644a

2023-02-12

What should a Continuous Integration (CI) server do?

#pseudocode #python #continuousintegration

youtu.be/2VrKIIMTFUI

2023-02-09
@hankg @codefolio Now you've got me wondering whether there are any 100+ year old math papers containing #pseudocode. Surely descriptions of #algorithms have been around for more than a century.
2022-12-16

Howdy, my #fediverse friends! 🤝 May you all have a great and healthy Friday. 🍀

I have implemented a new process for practice-oriented learning. Taking the assignments of the #DSA course first to #pseudocode and then into a #flowchart. Then #code it in #javascript, #Java and #golang. Tedious, but it sticks.

An example is in the screenshots. Take care and happy #coding, folks!

Pseudocode to the solution to display a number in reverse order. The screenshot shows the following text in white on darkgrey background.

start

input a number as int num to get reversed
set a var int answer to 0
while int num is greater than 0
	store the result of num modulo 10 in a temp variable
	set the answer variable to answer * 10 + temp
	set the variable num to num - temp divided by 10
output answer

endFlowchart to the solution to display a number in reverse order. The display corresponds to the pseudocode and shows the sequence in graphical style. The default symbols for programm flow are used.Java code to the solution to display a number in reverse order. The screenshot shows the following text color coded inside the IntelliJ Idea Editor.

package com.main;

import java.util.Scanner;

public class ReverseNum {
    public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        int num = input.nextInt();

//        int num = 156482;
        int answer = 0;

        while (num > 0) {
            int temp = num % 10;
            answer = answer * 10 + temp;
//            num = (num - temp) / 10;
            num /= 10;
        }
        System.out.println(answer);
    }
}
Rod2ik 🇪🇺 🇨🇵 🇪🇸 🇺🇦 🇨🇦 🇩🇰 🇬🇱☮🕊️rod2ik
2022-10-31

Teacher in & , .
Toot on , , , , and any stuff.
RTs≠Endorsement.

as in (mind)


extensions & add-ons :
- , - ,
CSS/Javascript add-ons for .
(French) .


Sites :

(ex?)Twitter/Gitlab/Github @rod2ik

2021-02-11

@mkl1987
Die brauchen #Pseudocode:
Demo am Sonntag
Beginn: 14 Uhr
Ende: wenn das Internet wieder geht, 22 Uhr oder die Temperatur unter -10°C fällt, was auch immer zuerst eintritt.
Mindestdauer: 2 Stunden

Client Info

Server: https://mastodon.social
Version: 2025.07
Repository: https://github.com/cyevgeniy/lmst