Message from @FrostyCrits

Discord ID: 645041283781492736


2019-11-15 23:13:15 UTC  

anyone know regex :/

2019-11-15 23:13:38 UTC  

yup if its not to complicated of a pattern

2019-11-15 23:13:38 UTC  

im STRUGGGLING why cant i do a recurring capture like i want

2019-11-15 23:15:12 UTC  

I use regex in most everything, we have a love / hate relationship

2019-11-15 23:15:32 UTC  

it is complicated lol its kinda beyond the limits of what i should be doing with regex i think im just gonna write a c# parser lexer to do it later

2019-11-15 23:16:17 UTC  

im basically trying to transform xaml into x# (a language that i wrote) but it really should be a transpiler/full blown converter

2019-11-15 23:17:09 UTC  

I think this was the site I used, it shows you all the matches
https://regex101.com/

2019-11-15 23:17:21 UTC  

kinda helpfull for debugging

2019-11-15 23:17:34 UTC  

oh yea i know that tool, i use Resharper's live one i prefer it

2019-11-15 23:18:05 UTC  

but when theres a capture within a capture and i want the outer capture to be recurring idfk

2019-11-15 23:18:36 UTC  

are you a desktop/xaml boy?

2019-11-15 23:18:53 UTC  

No, c# and js mostly

2019-11-15 23:19:44 UTC  

ah yeah. ive been struggling to transition to web with the layout of CSS im just waiting on Blazor to replace css and html and js entirely lol

2019-11-15 23:20:07 UTC  

I can probably help with CSS

2019-11-15 23:21:15 UTC  

ill keep that in mind, i know the basics and all of css and im using scss for my home project and stuff but i just dont understand the layout system fundamentals

2019-11-15 23:21:24 UTC  

Not totally up to date, is Blazor a css framework ?

2019-11-15 23:21:41 UTC  

no no Blazor is webassembly and its part of .net core 3.0

2019-11-15 23:21:51 UTC  

it allows you to run any language on client side

2019-11-15 23:22:40 UTC  

C#, C++, low level access to the rendering, so its a matter of time before someone just makes an awesome replacement for all the messiness of web as it is traditionally

2019-11-15 23:22:58 UTC  

Unity can compile down to webasm, thats all i know about webasm.. lol

2019-11-15 23:23:46 UTC  

But webasm requires a js component to call its functions I believe

2019-11-15 23:24:25 UTC  

C# 8 is so great, im so excited about the direction theyre heading with .net standard and .net core combining and rebasing WPF desktop apps to be able to run on any platform

2019-11-15 23:24:47 UTC  

i was worried theyd never touch WPF again after they put out the shit of a fuck that was UWP

2019-11-15 23:25:35 UTC  

redoing the whole XAML compiler from scratch (which is why i wrote X# to begin with, its a replacement for XAML which i have a love hate relationship with)

2019-11-15 23:25:55 UTC  

I wrote one WPF program and then decided to focus on JS

2019-11-15 23:26:20 UTC  

Thats the direction that dev is heading. web apps and modern web stuff

2019-11-15 23:26:28 UTC  

so that was a good idea on your part

2019-11-15 23:26:56 UTC  

http://www.ammyui.com/ X# is a lot like this lang.

2019-11-15 23:27:53 UTC  

he kinda beat me to it with the open sourcing and all lol mine has some features that his doesnt, but all in all Ammy UI is better written than mine so meh

2019-11-15 23:28:34 UTC  

Reads lot like JS syntax

2019-11-15 23:29:02 UTC  

exactly, it takes away the bloat of basing your UI language off XML

2019-11-15 23:29:25 UTC  

which was a stupid decision imo. like C++'s QML, they started with JS

2019-11-15 23:30:03 UTC  

do you use SCSS and Typescript? or a purist javascript boi

2019-11-15 23:31:01 UTC  

Just purist, I don't like using libraries stuff that builds code. I like to know exactly whats going on

2019-11-15 23:32:10 UTC  

Typescript id recommend highly especially if you are familiar with C#, but in the end it is a shoehorn of a fake ass type system into javascript's shitty proto nonsense

2019-11-15 23:32:33 UTC  

i guess its just what youre used to

2019-11-15 23:33:06 UTC  

exactly, it's good if you have a huge app with lotsa devs.

2019-11-15 23:34:30 UTC  
2019-11-15 23:34:40 UTC  

NodeJS and Electron

2019-11-15 23:34:44 UTC  

Ive played with electron

2019-11-15 23:35:23 UTC  

also i keep flipping back and forth from vue.js and angular.js lol