Welcome, Developers and Architects!


This group is for the discussion of Software Development and Software Architecture. Whether you are brand new and are just about to write your first Hello World program or an old hat guru please feel free to chime in! We would love to hear about any of your recent projects or even older ones you are proud of.


Unus Nemo


#DevOP #Software Development #Software Architecture

in reply to Dev Shack

@Dev Shack --[------->++<]>.----.--[->++++<]>-.+[->+++<]>.+++++++.--------------.++++++++++++.----.>++++++++++.[->++++++++<]>.+[--->++++<]>.-----------.+++++++++++++.[----->++<]>+.-[-->+++<]>-.-[-->+<]>.++++[->++<]>+.+[--->+<]>.++++++.+++[->+++<]>.+++++++++++++.-----.--------.-.+++++.--------.--[--->+<]>---.+++++++.-[---->+<]>++.[-->+++++<]>--.>--[----->+<]>-.[--->+<]>---.+++.--------.+++.-------.>++++++++++..[->+++<]>++....+[->++<]>.[-->+++<]>++..+++++++++.-[->+++++<]>-.[->+++<]>+.--[--->+<]>-.[---->+<]>+++.---[->++++<]>.------------.+.++++++++++.+[---->+<]>+++.++[->+++<]>.+++++++++.+++.[-->+++++<]>+++.--[->++++<]>+.--[->+++<]>.----.--[--->+<]>---.+.+[++>---<]>.++[--->++<]>.+[->++<]>+.+[--->+<]>+++.--.-------.+++++++++.+++.++.+[->+++<]>++.+.++++++++++.-------.--[--->+<]>-.-[--->++<]>-.+++++.-[->+++++<]>-.+[->++<]>.[-->+++<]>--.--[--->+<]>--.-----------.----[->+++<]>.------------.--[->++++<]>-.--------.+++.-------.-[++>---<]>+.-[--->++<]>-.+++++.-[->+++++<]>-.[-->+++++<]>.[-->+++<]>+.-----.------------.+++++++.-.-[->+++++<]>-.--[->++++<]>-.+[->+++<]>.---.+++++++++.-[->+++++<]>-.---[->++++<]>.------------.---.--[--->+<]>-.-[--->++<]>.+++++.-------------.--[->+++<]>.+[->+++<]>.--.+++++++++++..+++++++.+[---->+<]>+++.++[->+++<]>.+++++++++.+++.[-->+++++<]>+++.-[--->++<]>-.+++++++++++.[++>---<]>.++[--->++<]>.++++[->++<]>+.-[->++++<]>.+[->+++<]>+.+++++++++++.[--->+<]>-----.[-->+++++<]>-.++++.----------.+++++.++++++.[-->+<]>++.------------.++[--->++<]>.+++..----.-[++>---<]>+.++[->+++<]>.+++++++++.+++.[-->+++++<]>+++.[++++>---<]>.-----..+[--->+<]>++++.[->+++<]>+.+++++++++++++.----------.-[--->+<]>-.>-[--->+<]>--.--.-----.++[--->++++<]>+.[----->++<]>++.------------.[->+++<]>+.+++++++++++++.----------.-[--->+<]>-.++++[->++<]>+.-[->++++<]>.-[--->++<]>+.+++.+.++++++++.+[---->+<]>++.+[----->+<]>.--[--->+<]>.-[---->+<]>++.--[->++++<]>-.-[->+++<]>-.+[--->+<]>+++.-[---->+<]>++.[->+++<]>+.--[--->+<]>---.---.++++++.-------.----------.-[--->+<]>-.---[->++++<]>.------------.---.--[--->+<]>-.---[->++++<]>.-----..---.+++++++.+[++>---<]>.++[--->++<]>.[-->+++++<]>--.-[--->+<]>.+++++.[---->+<]>+++.[->+++<]>+.-[->+++<]>.++[->+++<]>+.--[--->+<]>--.---.+++.-[++>---<]>--.------------.-[--->++<]>.+++++++++++.--.+.[---->+<]>+++.---[->++++<]>-.----.--.--------.++++++++++.-.---------.--[--->+<]>-.--[->++++<]>-.+[->+++<]>.+++++++.[--->+<]>++.-[->+++<]>+.+[---->+<]>+++.+[->+++<]>+.+++++++++++.-.---------.--[--->+<]>-.---[->++++<]>.------------.+.++++++++++.+[---->+<]>+++.++[--->++<]>.+++.-.-------.-[--->+<]>--.+[->+++<]>++.+++++++++.+.++++++.++[->+++<]>++.+.--[--->+<]>--.---[->++++<]>.-----.[--->+<]>-----.-[--->++<]>+.+++.+.++++++++.+[---->+<]>++.--[->++++<]>-.+[->+++<]>.-------.--[--->+<]>-.[---->+<]>+++.--[->++++<]>-.--------.+++.-------.++++++++.+[---->+<]>+++.[->+++<]>+.+++++++++++++.----------.-[--->+<]>-.--[->++++<]>-.+[->+++<]>.-------.--[--->+<]>-.[---->+<]>+++.+[->+++<]>+.+++++++++++.----------.[--->+<]>----.-----.[++>---<]>++.[->+++<]>-.[++>---<]>.

Dev Shack reshared this.

in reply to Unus Nemo

@Unus Nemo Yeah I have such a toolbox or Pod just for brainfuck but I was too arsed to use it so I used just a site to translate..
### **1. `bftxt` – Text to Brainfuck**
Convert text into Brainfuck code. 

**Usage**:
```bash
./bftxt [OPTIONS] "Your text here"
```

**Example**:
```bash
./bftxt -r "I do techno voodoo"
```

**Flags**:
- `-r`: Optimize using relative character positions.
- `-m`: Multi-line output.
- `-c`: Add character comments.

**Output**: Brainfuck code that prints your message. 

---

### **2. `bf` (ZhongRuoyu interpreter) – Run Brainfuck**
Execute `.b` files.

**Usage**:
```bash
./bf <filename>.b
```

**Example**:
```bash
echo "++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>++.---.-----.++++++++.--------.++++++++.--------.++." > techno.b
./bf techno.b
```

**Output**: `I do techno voodoo` 

Dev Shack reshared this.

in reply to Dev Shack

@Dev Shack Translation:
Hello world!
$ whoami
Plan-A Intermediary Network
Been at this for years. Comfortable in Bash, work in Python when the job calls for it. I do OSINT, look for XSS and SQLi, and I know my way around the tools. Not a guru, just someone who's done this long enough to know what works and what doesn't.

Dev Shack reshared this.