Mark Nahabedian

Results 14 issues of Mark Nahabedian

`rmlines` would be more useful it it worked recursively. ``` rmlines(Meta.parse(""" begin begin begin end end end""")) quote begin #= none:3 =# begin #= none:4 =# end end end ```...

This is in Julia 1.6.0. ``` versioninfo() Julia Version 1.6.0 Commit f9720dc2eb (2021-03-24 12:55 UTC) Platform Info: OS: Windows (x86_64-w64-mingw32) CPU: Intel(R) Core(TM) i5-4300U CPU @ 1.90GHz WORD_SIZE: 64 LIBM:...

feature request

I'm having a problem with HyperScript.jl. This function ``` function pretty_stitches(image_stitches, flip_right_to_left::Bool) # image_stitches should be the top_image_stitches or bottom_image_stitches # of a TabletWeavingPattern. stitch_width = 5 stitch_length = 10...

I originally posted this to the Julia #helpdesk slack on October 9th, but didn't get an answer then. I'm feeling like it's a bug. I'm having trouble using `Symbolics.solve_for`. I'm...

On MSWindows, when I try to `mplay` a MIDI file I get an error that a DLL can't be loaded: ``` using Mplay Activating project at `c:\Users\Mark Nahabedian\.julia\dev\RegistryCI.jl` mplay("foo.mid") ERROR:...

This change simplifies the passing of paramneters from the various `Guideline`s from `run` down to the various `Guideline.check`functions. Such parameters no longer need to be explicitly declared and passed through...

These changes introduce the new Guideline guideline_linecounts_meet_thresholds that uses PackageAnalyzer to collect line counts from the candidate package and compare against specified thresholds. The thresholds are provided ad these keyword...

# Motivation: There are ordering constraints among some Guidelines. For example, `guideline_distance_check` should be run last. Also, `guideline_code_can_be_downloaded` should be checked before `guideline_version_has_osi_license` or any other guideline that depends on...

This pull request adds the tutorial "Family Tree", which demonstrates how MetaGraphsNext.jl can be incorporated into an application's existing data model to provide graph capabilities. It also modifies the "test"...

I wanted to extend the support for some SVG elements (for example, `rect` should accept content) but also wanted to use NativeSVG to produce arbitrrary HTML. These changes implement the...