probably it is a markup language
πŸ‘︎ 81
πŸ’¬︎
πŸ‘€︎ u/Linked_Punk
πŸ“…︎ Jan 18 2022
🚨︎ report
X Markup Language
πŸ‘︎ 13k
πŸ’¬︎
πŸ‘€︎ u/DemonKillerh29
πŸ“…︎ Oct 13 2021
🚨︎ report
Do you prefer doing GUI with a markup language and a programming language or just the programming language?

e.g. C#/XAML, Java/XML, JS/HTML, Objective-C/Storyboard XML.. or Kotlin (Jetpack Compose), Dart (Flutter), JSX (React), Swift (SwiftUI)

I, for one, much more prefer working with a programming language alone. Microsoft tries too hard to push the C#/XAML with Windows GUI programming or cross-platform Xamarin.Forms. I prefer it because I don't have to switch tabs and also I don't need to do weird-finding-the-widget code like in Java (#getViewById). Jetpack Compose is a godsend for Android programming. Dart/Flutter is as well. Everything fits so nicely. Not so with markup language programming.

πŸ‘︎ 65
πŸ’¬︎
πŸ‘€︎ u/timleg002
πŸ“…︎ Jan 02 2022
🚨︎ report
I created a new markup language.

Happy New Year!

I created a new markup language during the New Year holidays.

https://pub.dev/packages/simple_widget_markup

You can also try it out on the following sites. However, a full HD or higher display is recommended.

https://simple-widget-markup-editor.web.app/

The reason I made this was because I wanted to deliver to my app users new information on Flutter Web, but HTML was difficult to use and markdown was not expressive.

The parsed markup text is replaceable with Flutter's Widget, so most of the static parts of the layout can be written in this language as well.

Also, This language is inherently simple, so even non-programmers should be able to use it immediately after training. (Although the documentation is still inadequate ...)

I don't know how much it will be accepted, but I hope it helps someone who has the same worries as me.

Thank you.

πŸ‘︎ 39
πŸ’¬︎
πŸ‘€︎ u/Masahide_Mori
πŸ“…︎ Jan 04 2022
🚨︎ report
Experimental UI Markup Language, Thoughts?

I am thinking about creating a markup language for a personal UI project. I like a lot of web tech concepts, but want to trim the fat. I'm aware I could use XML, but this is more of a curiosity side-project. The goal is to create a slimmed down version of XML and CSS-like styling. Here's my quick and dirty draft of the syntax. I do not have a functional prototype as of now. Any and all feedback much appreciated.

Quick Summary + Example

Everything is a node. A node can have a custom name, but it is not necessary. All attributes are in a JSON-like format. Text and children nodes are similar to XML.

Example Doc:

<{.:[section, col-4]}>
    <{.:[container, col-3]}>
        <{.:[label, col-1]}>Message:</>
        <{.:[box], data:{`my key`:`my value`}}>Hello</>
    </>
    <{.:[container, col-3]}>
        <{.:[label, col-1]}>Message:</>
        <{#:link-1, .:[box, link, col-2], @:gmail.com}>World</>
    </>
    <custom-node {config:{x:1,y:2,z:3}}>Lorum Ipsum</custom-node>
    <another-node {#:unique, x:1,y:2}/>
    <{.:[exit-btn]}/>
</>

Scaffolding

Everything is just a node. There's no special node types, but they can be named for readability:

<></> // default
<whatever></whatever> // custom name

Self-Closing

If a node doesn’t have text or children nodes, it can self close:

<{}/>
<whatever/>
<whatever {}/>

Attributes

Keys

keys are strings. Some keys are default meanings, as per my example file above:

  • # ID
  • . [class, list]
  • @ hyperlink_url
  • ~ render config, more on this later

Numbers

All are assumed to be 32 bit integers or floats.

{n: 123}    // integer
{n: 123.}   // float
{n: 123.4}  // float
{n: 123f}   // float

I may implement a more technical notation, if I find it necessary:

{n: 123u8  }  // unsigned 8 bit integer
{n: 123i32 }  // signed 32 bit integer
{n: 123f64 }  // 64 bit float

Booleans

I don't think creating keywords 'true' and 'false' or some variant is a good idea. They are too fat data-wise. It's up to the interpreter. Possible solutions:

{myBool: T, myOtherBool: 1}

Key : Value Collections (KVC)

{key: value}  // manual keys
[value]          // 'numeric' keys, automatically incremented. Sort of an array.      
... keep reading on reddit ➑

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/TheGabelle
πŸ“…︎ Jan 24 2022
🚨︎ report
Swiss programmers have grown tired of using Yet Another Markup Language.

So they've created the ultimate replacement.

Your Only Data Language.

πŸ‘︎ 16
πŸ’¬︎
πŸ‘€︎ u/kwan_e
πŸ“…︎ Jan 18 2022
🚨︎ report
Safemoon Point of sale system LFG! Maybe they can have devices at stores that allow them to accept crypto just like Toast has the little handhelds.
πŸ‘︎ 229
πŸ’¬︎
πŸ‘€︎ u/dxdifr
πŸ“…︎ Jan 28 2022
🚨︎ report
How would one go about making and releasing their own markup language?

Hi, assuming that I have already come up with the design/rules of my markup language (not XML-based), what would I do next in order to "publish" or "release" it. (like making a parser etc)

πŸ‘︎ 26
πŸ’¬︎
πŸ‘€︎ u/No-Rich5357
πŸ“…︎ Dec 27 2021
🚨︎ report
And just like that, Palm Pilot has left our language as a generic term used to describe a handheld device
πŸ‘︎ 15
πŸ’¬︎
πŸ‘€︎ u/thenewyorkgod
πŸ“…︎ Oct 23 2018
🚨︎ report
I wrote a lightweight markup language in Go (sorta like markdown; MIT)

For those that want to see it right away: GitHub: https://github.com/touchmarine/to Online Playground: http://touchlabs.io/play


I used markdown to write all kind of docs, mostly for my projects, but it started to become a PITA. Using markdown for online comments/posts or short docs is great but try anything more and it becomes increasingly frustrating.

Markdown is lightweight and that's one of the best things about it and I don't want to change that. But it's missing some very basic features like comments, notes/admonitions, and attributes. To get those features you have to use a markdown flavor that's incompatible with others or abandon markdown altogether and write your docs in an unreadable language.

I designed Touch to come with a default set of semantic elements that are common in writing. This set is not yet final (it might shrink) but in addition to markdown it provides:

  • comments
  • attributes (note: they're intended to be used very sparingly and serve as an escape hatch)
  • numbered headings
  • notes (or also known as admonitions or callouts)
  • description lists
  • subtitles (might be removed from default)
  • captions (might be removed from default)

I very much enjoy working with Go so I designed Touch based on similar principles:

  • it is explicit and has simpler syntax with fewer rules (e.g. both -a and - a are list items unlike in markdown; see also 17 principles governing emphasis in markdown)
  • simpler syntax allows for easier tooling
  • it is orthogonal and prefers composability (e.g. a named link element is composed from a group and a link element)
  • comes with auto-formatting like gofmt

Touch is the result of my experieces with markdown, John MacFarlane's post beyond markdown, and my "research" of other people's problems with markdown. I would like to add that Touch really tries to stay similar to markdown as to stay familiar but, unlike markdown flavors, it's not constrained by it.

Would love to hear your thoughts! Best, touchmarine

πŸ‘︎ 5
πŸ’¬︎
πŸ‘€︎ u/touchmarine
πŸ“…︎ Dec 15 2021
🚨︎ report
Adafruit upcoming handheld console may be the smallest (playable) DOOM device blog.adafruit.com/2022/01…
πŸ‘︎ 274
πŸ’¬︎
πŸ‘€︎ u/lgsp
πŸ“…︎ Jan 28 2022
🚨︎ report
Best small handheld device?

So, I have a few of the Anbernic devices and although I love my RG351P and MP, the RG280V is amazing in terms of pocketability.

However, although the screen is nice, having the half sized pixels and no 640x480 is kind of a bummer (I don't even mind the weaker cpu, I'm mostly interested in pre-PS1 stuff and some selected PS1 titles).

I had some hope for the MIYOO-mini, but the firmware quirks, the washed up screen (as stated by retrogamecorps in his video) and lack of stock is pushing me a bit away from that option.

I stumbled upon the RG300X and although I prefer a vertical layout, it looks like a nice alternative to the RG280V.

My question is this: are there any other 3" devices (or smaller) with a 640x480 screen that might be worth considering? Thanks!

πŸ‘︎ 14
πŸ’¬︎
πŸ‘€︎ u/xtremis
πŸ“…︎ Jan 24 2022
🚨︎ report
Waiting patiently for the day we could play (natively, not in streaming) something like this on an handheld device... v.redd.it/aeaym412hy281
πŸ‘︎ 585
πŸ’¬︎
πŸ‘€︎ u/bici_00
πŸ“…︎ Dec 01 2021
🚨︎ report
A wireless handheld printer in action. Reminded me of the device they use to print/erase ship names. Haha reddit.com/r/Damnthatsint…
πŸ‘︎ 103
πŸ’¬︎
πŸ‘€︎ u/GingeryGnetum
πŸ“…︎ Jan 24 2022
🚨︎ report
Help me build a list of S-Tier games to play comfortably on small handheld devices

I'm personally playing on an Anbernic rg280v, but there are a lot of other pocketable devices that are not quite ergonomic enough for long sessions.

A few different ways you might like to use this list:

  • Choose 1 game to load onto your device.
  • Choose 1 game from each genre to load onto your device.
  • Choose a bunch of quick session games to load onto your device.

You should probably avoid loading all of these onto a device. This will likely create analysis paralysis and you'll switch from game to game constantly. Not everyone is like this, but many are.

How to help

Tell me which are the worst games on the list? This list is for S-tier! This list is (almost) only for definitive editions!

Feel free to contribute games from systems I have not listed.

Which Tetris games should I remove?

Goals

  • S-Tier games only! (Hidden emeralds aren't good enough. We only need hidden diamonds.)
  • Only choose what seems like the absolute best of a genre rather than piling on endless variations that are very similar. This means there are not many beatemups or shmups, though I love both genres.
  • Game must hold up. Take off your nostalgia glasses.
  • No hand cramps. This means no long-form action/twitch/reflex things like action rpgs or first person shooters.
  • Easily playable on a small screen.
  • Definitive versions only. Not replaced by a better version or a better sequel on a different platform. (For example, I did not include Chrono Trigger because the DS version is notably improved.) I made exceptions for a couple of games such as Tetris.

Note: platformers generally do not meet the qualifications. If you know of one that is a special exception, please tell me! I think Kid Dracula works because it's very simple and you can complete sections of the game in a very short time.

Caveats

I'm skipping everything newer than the PS1 except the GBA.




Games for quick sessions:

Arcade

  • Blazing Star (shmup)
  • Esp.ra.de (shmup)
  • Sengoku 3 (beatemup)
  • Windjammers (pong tennis)
  • Neo Turf Masters / Big Tournament Golf - An arcade golf game with great music and fun gameplay. Four courses to choose from.
  • Bust-A-Move / Puzzle Bobble 1/2 - Classic bubble launcher games. 2 has branching paths to pick from, as well as a singleplayer vs mode.
  • Metal Slug series - Classic run and gun games.
  • Ninja Baseball Bat Man (beatemup)
  • Magical Drop III (Set Neo Geo dip switches to Japanese for full voices.)

Genesis/Megadrive

  • Darius (shmup)
  • S
... keep reading on reddit ➑

πŸ‘︎ 99
πŸ’¬︎
πŸ‘€︎ u/valzi
πŸ“…︎ Dec 10 2021
🚨︎ report
ITS A MARKUP LANGUAGE
πŸ‘︎ 33
πŸ’¬︎
πŸ“…︎ Nov 23 2021
🚨︎ report
This handheld web browsing device from the HBO show Station Eleven is an Atari Lynx Model 2 reddit.com/gallery/rt38v7
πŸ‘︎ 134
πŸ’¬︎
πŸ‘€︎ u/Ladsworld-
πŸ“…︎ Dec 31 2021
🚨︎ report
Odin Handheld - The ultimate all-in-one Cloud Gaming device! youtu.be/eMBM6FWCqRc
πŸ‘︎ 17
πŸ’¬︎
πŸ‘€︎ u/Marchief
πŸ“…︎ Jan 27 2022
🚨︎ report
Mau v2 - A template-based markup language written in Python

Mau is a lightweight markup language heavily inspired by AsciiDoc that makes it a breeze to write blog posts or books. If you already know Markdown or AsciiDoc you already know which type of software Mau is, and you will quickly learn its syntax.

The main goal of Mau, however, is to provide a customisable markup language. While Mau's syntax is fixed by its implementation, its output is created through user-provided templates. This strategy gives the user great flexibility with no added complexity.

I currently use Mau to write posts for my blog The Digital Cat and to write my book Clean Architectures in Python. The Mau documentation is also written using Mau.

I hope someone else can find it useful!

Source code: https://github.com/Project-Mau/mau

Official documentation: The Mau book at https://www.thedigitalcatbooks.com/

πŸ‘︎ 10
πŸ’¬︎
πŸ‘€︎ u/lgiordani
πŸ“…︎ Oct 20 2021
🚨︎ report
Best handheld device for gba games?

Hey guys I’m new to this community and retro handheld devices I’ve got 2 devices on the way with 4:3 aspect ratio ratio but I’m wondering what the best device would be to buy for a 3:2 aspect ratio for gameboy games something that’s not too expensive as I would use it just purely for gameboy games

any help or advice I’d appreciate it thanks for reading

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/TheUkWidowmaker
πŸ“…︎ Jan 18 2022
🚨︎ report
2021-11-27 Orgdown as a new lightweight markup language standard - EmacsConf21 - Karl Voit tube.graz.social/w/bgJVfj…
πŸ‘︎ 7
πŸ’¬︎
πŸ‘€︎ u/fakecreditcard
πŸ“…︎ Nov 30 2021
🚨︎ report
A DIY Steam Handheld device while waiting for the Deck boilingsteam.com/the-ques…
πŸ‘︎ 136
πŸ’¬︎
πŸ‘€︎ u/YanderMan
πŸ“…︎ Dec 05 2021
🚨︎ report
React is a markup language now?
πŸ‘︎ 45
πŸ’¬︎
πŸ‘€︎ u/TitoyanMor18
πŸ“…︎ Nov 07 2021
🚨︎ report
Qualcomm & Razer's Snapdragon G3x Handheld Android Gaming Device youtube.com/watch?v=wEyiC…
πŸ‘︎ 53
πŸ’¬︎
πŸ‘€︎ u/HU55LEH4RD
πŸ“…︎ Dec 02 2021
🚨︎ report
So watching National Lampoon's Vacation. I remember this scene as Audrey holding a book. Can anyone tell me what device she's holding because Google has given me 0 clues for handheld devices are that small in 1983.
πŸ‘︎ 65
πŸ’¬︎
πŸ‘€︎ u/spankypantsmcgee
πŸ“…︎ Dec 04 2021
🚨︎ report
Handheld device for Genshin Impact

I’m planning to get this one but do you guys think this would be a good console for playing Genshin Impact? I have AYA NEO Pro but kinda feel overkill for just playing GI. Anyone planning to do the same?

πŸ‘︎ 4
πŸ’¬︎
πŸ‘€︎ u/Odd_Implement3144
πŸ“…︎ Jan 20 2022
🚨︎ report
Why do handheld devices across all of modern sci-fi look like this?

either I'm missing something or humans in the future evolve to never play candy crush at work

https://preview.redd.it/dypejn8gywb81.png?width=1776&format=png&auto=webp&s=4900965e56a33388c6de83aaa5fbb9784b6fc9b9

πŸ‘︎ 7
πŸ’¬︎
πŸ‘€︎ u/botdoggy
πŸ“…︎ Jan 15 2022
🚨︎ report
CookLang – Recipe Markup Language

https://cooklang.org/

πŸ‘︎ 7
πŸ’¬︎
πŸ‘€︎ u/2cats2hats
πŸ“…︎ Oct 26 2021
🚨︎ report
Is Steam implementing a Metaverse using Ethereum on their new Steam Deck (PC + handheld in one device)? Could be Layer 2 solutions such as Loopring be used as a form of payment option / currency in the Metaverse? With the possible Gamestop connection it could help reach the masses (with sources)

Guys listen me out: I have found some strong indicators what could happen in the upcoming months. I want to do a discussion on what you think about my discoveries. Please read every single aspect before commenting.

While celebrating new years eve, i got pretty stoned and hyped about any possible announcements from either Loopring or any other big company. My thoughts about how 2022 will change the life for us all got pretty wild. So i did a lot of research and found some really interesting articles. I'm a gamer since my early days and i want us all to succeed. There was one thing that came into my mind which afterwards blew me away:

With the upcoming release of the Steam Deck (Possible to order after Q2 2022) Valve is planning to reach their customers in a completely new way. Valve is known for implementing ground breaking technical solutions to modern problems. Just look back at the introduction of the Steam network back in 2003. Even if we jump back in time, when Gabe Newell (while he was still working at Microsoft) found an efficient way to sell the Microsoft OS by showing that you can run DOOM on it. He spent 13 years working there, serving as a producer of the first three releases of the Windows operating system. He also led development on a port of the 1993 first-person shooter game Doom for Windows 95; the port is credited for helping make Windows a viable game platform. Keep that in mind. Source

In a 2013 tech talk at the Texas LBJ School he was stating opinions on how the game industry has changed in the views of a Video Game Maker. Link to the video

Short summary of the video (worth watching the whole 1 hour for even more context): His background at Microsoft made him feel like companies were going in the wrong direction in the mid-90s and how he decided to start Valve. The necessity for creating a strong product first and not worry so much about sales / marketing. If you really made a good product, it will sell itself. At Valve they have a flat management structure. They see how independent autonomy given to employees can boost their productivity. Then he switches to an in-depth discussion of the TF2's virtual economy and player trading (= steam market and the workshop, later necessary to build a bridge to NFT things.) While bringing examples on how players see va

... keep reading on reddit ➑

πŸ‘︎ 31
πŸ’¬︎
πŸ‘€︎ u/frooost1337
πŸ“…︎ Jan 02 2022
🚨︎ report
I’ve got two toast POS systems with receipt printers and cash registers as well as a handheld device and a kitchen display screen for sale. PM me if interested
πŸ‘︎ 5
πŸ’¬︎
πŸ‘€︎ u/jayptl93
πŸ“…︎ Jan 21 2022
🚨︎ report
[Handheld device] [early 2000’s?] Spongebob game

as a young child I had this handheld spongebob game thing that would have puzzles and minigames and what-not. was a yellow device and the sponge man himself would talk to you and tell you what you had to do occasionally. Its been sooo so many years since ive see that thing and I only ever saw one once ever. Was thinking about bringing back some nostalgia, and maybe keeping it to look back on when i grow old.

EDIT: It is it’s own little spongebob themed device, with just the one game on it.

πŸ‘︎ 6
πŸ’¬︎
πŸ‘€︎ u/Garfupa
πŸ“…︎ Jan 16 2022
🚨︎ report
orgdown: Orgdown (in short β€œOD") is a lightweight markup language similar to Markdown and it is based on Org-mode gitlab.com/publicvoit/org…
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/fakecreditcard
πŸ“…︎ Nov 30 2021
🚨︎ report
Have you ever switched from org-mode to another markup language? Have you ever switched back again?

Hi,

I'm wondering if anyone's moved from org-mode to other note-taking systems, such as a personal wiki, or markdown in vim, or switched and switched back to org-mode. What caused you to switch? If you switched back, why?

Thanks.

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/gollyned
πŸ“…︎ Oct 14 2021
🚨︎ report
Idiot β€œstorm chaser” driving at high speeds in bad weather, recklessly passing on the right, all while filming with a handheld device. imgur.com/a/ADe1OZL
πŸ‘︎ 13
πŸ’¬︎
πŸ‘€︎ u/Planet_Rock
πŸ“…︎ Jan 09 2022
🚨︎ report
My old Passport 9500ix doesn't detect handheld devices that cops use here. Anything that will?

The cops near me (suburbs of LA) have these handheld devices that look like binoculars. I see a lot of motorcycle cops using them. My 9500ix does not pick them up at all. Do newer radar detectors pick them up?

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/TheAceMan
πŸ“…︎ Jan 14 2022
🚨︎ report
this handheld device / holds a galaxy at war / what device holds us? #haiku
πŸ‘︎ 48
πŸ’¬︎
πŸ‘€︎ u/VirtualAlex
πŸ“…︎ Dec 02 2021
🚨︎ report
[TOMT] [TOY] I’m trying to find some tiny tiny toy car that would launch out of a handheld device/controller.

I had this toy around 2010-2012. I think there were race tracks as well as the cars. Very popular at toys r us during that time.

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/ohthatoneguyright
πŸ“…︎ Jan 11 2022
🚨︎ report
Books any handheld device enthusiast must haves
πŸ‘︎ 13
πŸ’¬︎
πŸ‘€︎ u/SilentFebreze
πŸ“…︎ Jan 11 2022
🚨︎ report
What exactly is this Component? Located inside a Handheld GPS Device. reddit.com/gallery/ry6yy9
πŸ‘︎ 4
πŸ’¬︎
πŸ‘€︎ u/LestaDE
πŸ“…︎ Jan 07 2022
🚨︎ report
Project to rebuild papers with plaintext markup languages

Is there a project which tries to recreate all / the most important scientific papers with plaintext markup languages (e.g. Markdown, AsciiDoc, or LaTeX). Storing them as PDFs feels like such waste of space if most papers are just text and diagrams anyways. Also, PDFs are not responsive and don't scale pleasantly on different screen sizes.

πŸ‘︎ 12
πŸ’¬︎
πŸ‘€︎ u/adwolesi
πŸ“…︎ Sep 25 2021
🚨︎ report
Official debut of RG552 - with a 1920 * 1152 screen, Anbernic's newest handheld gaming device youtube.com/watch?v=nC85i…
πŸ‘︎ 35
πŸ’¬︎
πŸ“…︎ Dec 04 2021
🚨︎ report
What's your favorite game played on a handheld device?
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/joevilla1369
πŸ“…︎ Jan 28 2022
🚨︎ report

Please note that this site uses cookies to personalise content and adverts, to provide social media features, and to analyse web traffic. Click here for more information.