mydef

Programming in the next paradigm -- your way

https://github.com/hzhou/mydef

Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (12.6%) to scientific vocabulary

Keywords

metaprogramming mydef paradigm perl programming-language refactor
Last synced: 4 months ago · JSON representation ·

Repository

Programming in the next paradigm -- your way

Basic Info
  • Host: GitHub
  • Owner: hzhou
  • Language: HTML
  • Default Branch: master
  • Homepage:
  • Size: 2.29 MB
Statistics
  • Stars: 50
  • Watchers: 4
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Topics
metaprogramming mydef paradigm perl programming-language refactor
Created almost 14 years ago · Last pushed almost 2 years ago
Metadata Files
Readme Citation

README.md

An old tutorial is available at http://huizhou.gitbooks.io/programming-with-mydef/

A more thorough manual that will be kept within the repository is currently in progress. You can view it here.

MyDef is not a new programming language. It is an additional layer on top of your programming language -- a layer that can do almost anything without affecting the demands of the underlying language. The layer can be very thin, in which case you still write your code exactly the same way you used to. And you should if you never had complaints in your programming career. But if you do, MyDef allows you to do something about it.

  • I have always complained about semicolons. Now with MyDef, I don't type them anymore.
  • I have complained about curly braces. Now with MyDef, I avoided them, along with the grammatical parentheses.
  • I have wished to refactor my code without worry about variable scopes. MyDef allows me to refactor with no side effects.
  • I have wished a less uglier way to write JavaScript, with MyDef, I like the new look.
  • etc.

And they are not on/off switches. You may start refactoring part of your code, and simply paste the rest of your legacy code. Unlike other programming language which will tell you what to do -- often strictly, you just do what you want to do in MyDef. You do need know what you want to do though.

I cannot show you the freedom unless you feel the restriction. Before you ask what good does MyDef buy you, recall what bad you have complained. MyDef offers solutions -- without changing your language and still allowing collaboration with your fellow coworkers even when they are stuck in their primal language.

MyDef is not just syntax, it is about paradigm. If you have a vision on how you think to program, MyDef can realize them. Contrary to what others may preach, you don't need classes to do object oriented programming, you don't need first-class functions to do functional programming. You program in objects when you are thinking in objects, and you program functionally when you are thinking in pure functions. Do you want a language restrict you on how to think? MyDef liberates you.

INSTALL

  1. Dependency:

    perl -- base language
    make, sh, git -- convenience requirement, only tested with GNU make, bash
    vim -- optional, but you need an editor that supports indentation, syntax, and short-cut keys
    
  2. MyDef currently is in perl. First setup a custom installation environment:

    PATH=$PATH:$HOME/bin
    PERL5LIB=$HOME/lib/perl5
    MYDEFLIB=$HOME/lib/MyDef
    export PATH PERL5LIB MYDEFLIB
    

    The purpose is to install into one's home directory rather than system folders. I assume you will know how to change it into any installation destination.

  3. Now install it:

    sh bootstrap.sh all
    
  4. If you haven't, read the documentation: http://huizhou.gitbooks.io/programming-with-mydef

  5. Try it. e.g.

    $ vim t.def
    page: t
        module: perl
    
        $print Hello World!
    
    $ mydef_run t.def
    

    Explanation:

    page outputs a file in that name with the default extension -- in this case t.pl. $print is special since it is used so often. It is customized in MyDef to provide many convenience (and a uniform syntax across languages) In this case, it is translated into print("Hello World!\n"); mydef_run is a convenience for short script. Formally, mydef_page compiles .def into .pl (or whatever language of the module), and the normal toolchain of the language follows. mydef_page is what should be used in a Makefile.

    Try more:

    Who writes Perl nowadays? (I do!) If Python is your language, try replace the module with module: python and run it. You may also try c, cpp, java, fortran, sh, js, php, lua, go, rust, tcl, pascal, etc. (assuming you have necessary language toolchain in place). MyDef is a meta-layer that can easily work with any programming languages. You may download specific output module or write your own to extend your favorite languages.

  6. If you use vim, there is simple mydef syntax.

    $ vim ~/.vim/filetype.vim
    augroup filetypedetect
    au BufNewFile,BufRead *.def setf mydef
    augroup END
    $ ln -s /path/to/MyDef/docs/mydef.vim ~/.vim/syntax/
    

    lastly, in .vimrc, I would consider minimally:

    :set shiftwidth=4
    :set expandtab 
    :nmap <F5> :!mydef_run %<CR>
    
  7. Set those environment variables in step 1 in your login shell's startup file. In addition, set:

    MYDEFSRC=[your MyDef path]
    export MYDEFSRC
    

This is needed when you install or develop specific output modules.

More Output Modules

This repository only contains the general and perl output modules. You can use the general output module for any text based code. However, there are specialized output modules for various programming languages. For example, if you are working with C/C++ code, you may want to try the outputc module: https://github.com/hzhou/outputc.

Owner

  • Name: Hui Zhou
  • Login: hzhou
  • Kind: user
  • Company: Argonne National Laboratory

Citation (CITATION.cff)

cff-version: 1.2.0
message: "If you use this software, please cite it as below."
authors:
  - family-names: Zhou
    given-names: Hui
title: "MyDef - A Generic Preprocessor"    
url: https://github.com/hzhou/mydef

GitHub Events

Total
  • Watch event: 1
Last Year
  • Watch event: 1

Dependencies

.github/workflows/test.yml actions
  • actions/checkout v1 composite