/dpt/ - Daily Programming Thread

prev
What are you working on, Any Forums?

Attached: 98602681_p0.jpg (1000x1000, 469.04K)

Other urls found in this thread:

rosettacode.org/wiki/Rosetta_Code
twitter.com/NSFWRedditGif

too many fun langs
not enough time to become a wizard at all of them

no projects to help wizard them

just pretend you know them for dpt cred

rewriting c++ game engine in C

extern "c" {}

currently working on a python wrapper of a data analysis library -

struggling a bit since i want to make as many abstractions and generalizations as possible since i plan to share this with my colleagues at some point (and i want them to actually be able to use the fucking thing)

currently scratching my head off to make a script to automated IDS rule detection creations, pretty neat and annoying

ifdef __cplusplus
#error ":)"
#endif

can someone post the latest programming challenge chart so I can roll please. Need something quick and easy to code

Any postman alternative not written in electron?

There is a website that is like a huge wiki of what different types of codes look like. something glot i always forget the name anyone know what i mean?

insomnia

rosettacode.org/wiki/Rosetta_Code

ROLL

Attached: roll.png (1200x675, 609.05K)

>> curl

Sirs rate my idea:

I have questionaire results in the qualitative scale
>very unlikely
>maybe
>likely
>very likely
My idea is to convert this thing in a 10/10 scale. I assume that likely and very likely will buy, very unlikely wont buy but we cant know for maybe. To convert:
rating = unlikely/total

But I'm thinking about running 100 monte carlo trials to flip the maybe into yes or no.
Is this a good idea or just time wasting?

Attached: dd.jpg (438x570, 55.72K)

>I like to make my life harder for no reason

For example:
>very unlikely
5
>maybe
10
>likely
25
>very likely
10
monte carlo: 5 yes, 5 no

rating = (50-10)/50
rating = 8 out of 10

>not written in electron

thank you fren

curl is easy
>not in electron
>I'm also shit
dreamin

Any tips for improving?

public static void main(String[] args) {

int veryLikely = 10;
int likely = 10;
int maybe = 30;
int unlikely = 5;
int trials = 10;
int yes = 0;
int no = 0;
int rating = 0;

for(int i=0;i