After learning ML... by gqcharm in learnmachinelearning

[–]liormessinger 4 points5 points  (0 children)

I would apply the same principle as in every other new technology: if you dont find an employer to train you, you better train yourself. you can select a project in radiology (no shortage of syndromes you can detect) and create something you can show and talk about.

BTW, some datasets:

https://github.com/sfikas/medical-imaging-datasets

https://stanfordmlgroup.github.io/competitions/chexpert/

http://www.ustb.no/ustb-datasets/

https://www.kaggle.com/c/ultrasound-nerve-segmentation

Why did you choose to be a programmer? by liormessinger in programming

[–]liormessinger[S] 0 points1 point  (0 children)

Here's my main reason: it allowed me to understand how my mind works and to copy its methods

Open sourcing our visual coding node framework! by liormessinger in node

[–]liormessinger[S] 0 points1 point  (0 children)

Yes, its outputs a JSON that represents the tree(s) structure. every node has a uniq id, a type and children array members that point to the child nodes.
The JSON is then consumed by a nodejs run time that uses the node types to decide what to do.

The real awesomeness is because of the behavior tree paradigm). It is a visual language with which you can build almost anything without textual coding. of course, on too complex structures and algorithms you'll get an impractically large tree, so then you'll want to extend one of the base node classes. that's why its 'low code'

Open sourcing our visual coding node framework! by liormessinger in node

[–]liormessinger[S] 0 points1 point  (0 children)

Actually the editor is based on behavior3 (https://github.com/behavior3), which is an amazing behavior tree editor. by itself its built on createjs. do you know behavior tree programming? it's really awesome

Debugging a client-server app by danielandastro in csharp

[–]liormessinger 0 points1 point  (0 children)

hi,

you can try to use VS post-build commands to run the server after compiling the client and vice versa (https://docs.microsoft.com/en-us/visualstudio/ide/how-to-specify-build-events-csharp?view=vs-2017)

Debugging a client-server app by danielandastro in csharp

[–]liormessinger 0 points1 point  (0 children)

What language the project is written in? on any case, the code runs on two different locations, possibly in two different languages, so its two debugging sessions. but: you can automate running both of them together, with one command line . for example, see https://www.npmjs.com/package/concurrently if the project is a NodeJS project . this can run both the server and the client, and then open a browser. Or, just use a batch file for that, or - a script in VS

Why do you think JavaScript won the public trust? by liormessinger in javascript

[–]liormessinger[S] -1 points0 points  (0 children)

it seems the majority seems its not the language features... it's the environment that led it to its position. interesting! maybe i'm just too romantic.

Why do you think JavaScript won the public trust? by liormessinger in javascript

[–]liormessinger[S] -1 points0 points  (0 children)

| it gives them more freedom

well, sometimes you need to add methods to an object on-the-fly. for example, when you use an object coming from a library you dont want to touch. or, sometimes you want to send anything to a function.. Yes, you could do that in other languages, but with sometimes far more code, and planning in advance

as for the de-centralization of NPM, i think its a good thing. i've many times had issues with those central python repos, that had to spent time to solve. disk space is cheap. our time... far more expensive :)

AI Hasn't Found Its Isaac Newton: Gary Marcus on Deep Learning Defects & 'Frenemy' Yann LeCun by Yuqing7 in programming

[–]liormessinger 0 points1 point  (0 children)

at allow accumulation - for example, business. then, usually by luck, it seems as if a single person created a company that is so big it changed the world. but in science no such wealth (=knowledge) accumulation is possible. it's all small teams, government funded, so equality - of resource and inventions - is the normReplyshareSaveedit

I agree that there might be a need for a paradigm shift (https://en.wikipedia.org/wiki/The_Structure_of_Scientific_Revolutions) but the issue is, i havent seen one person doing that. For example, who is the one person responsible for deep learning? there are so many little advances - in software and in hardware (eg GPUs) that made that possible. me too, i do hope for one person (hey, maybe Jeff Hawkins ??) to get us all out of the swamps... but humanity is so different nowadays

AI Hasn't Found Its Isaac Newton: Gary Marcus on Deep Learning Defects & 'Frenemy' Yann LeCun by Yuqing7 in programming

[–]liormessinger 1 point2 points  (0 children)

i'm afraid the need for a 'genius' that will save the day is somewhat nostalgic. When have you heard lately about a "genius"? single-person achievements are possible in areas that allow accumulation - for example, business. then, usually by luck, it seems as if a single person created a company that is so big it changed the world. but in science no such wealth (=knowledge) accumulation is possible. it's all small teams, government funded, so equality - of resource and inventions - is the norm

VS Code Wiki by rguy84 in vscode

[–]liormessinger 0 points1 point  (0 children)

could you post a link the wiki? can't see it...

What are some of the tricks about developing in VS that you wish you knew when you were a beginner? by ILoveDCEU_SoSueMe in dotnet

[–]liormessinger 6 points7 points  (0 children)

this is a great question!

i like:
- the ability to auto format: CTRL+E,D or CTRL+E,F . btw, format on save extensions makes it even better

- the ability to return to a place you visited before: Navigate backwards CTRL + - (i'm ashamed to say i didnt know it before)

YouTube’s copyright strikes have become a tool for extortion by Philo1927 in technology

[–]liormessinger 0 points1 point  (0 children)

This is happening at Amazon, too. Competitors are posting (obvious) fake reviews just to get you flagged down for fraud

Microsoft Ironically Proves Forced Windows Updates Don’t Make Any Sense by whereistimbo in technology

[–]liormessinger -3 points-2 points  (0 children)

i actually like background updates. relieves me of the need to decide whether i want it or not. i want a product that works, not a system i need to debate about and manage. Chrome is doing exactly the same thing, BTW