/dpt/ Daily Programming Thread

Previous: What are you working on, Any Forums?

Attached: Evabuzz.webm (640x480, 2.84M)

Other urls found in this thread:

github.com/lucidrains/stylegan2-pytorch)
better-dpt-roll.github.io/
explainshell.com/
twitter.com/SFWRedditVideos

nth for Haskell!

Why shouldn't i learn javascript if i want to make malware, make websites, make automated scripts?

What's super fast? PHP or Javascript? Which one is less bloat?

b..but what if t extends beyond 100, I didn't study for that scenario

>Why shouldn't i learn javascript if i want to make malware
It's a good choice. All javascript is malware.

we'll have to solve it in 100 seconds then. initialize EVA units!

first for OOP

sex
e
x

>dat cold start load time and gc delay

def cat(self):
fileName = input("Enter file you'd like to see contents of: ")
os.system('cat ' + fileName)

why isn't this working? python says 'cat' isn't a recognized internal or external command, but based on some guides I read it should be working fine. I know cat is a linux command and unrelated, but i thought calling it within os.system would let me run it.

How are you calling it later on?

>*enters '&& rm -rf /*'*

>isn't a recognized internal or external command
isn't that what the windows cmd says? I don't think windows has cat.

If you're on Windows, you can't use Linux commands without an external utility like MinGW or Cygwin.

>want to learn bash
>every example is just a bunch of random characters
>yeah sure just rename every file like this:
-% -N -D ! || a -T $ &

It's either this or a "handy" one-liner that's 500 characters long.

Alright. Yet another furry porn GAN update here. I am starting to consider restarting training with the full-blown StyleGAN2 (github.com/lucidrains/stylegan2-pytorch) for better results.

Attached: 98.jpg (2066x2066, 667.04K)

Can someone tell me some fun project to do
Something in c++, haskell, rust, scala something like that
For example some compressor in c
Or some algorithm in haskell but which one
Pls dont tell me to look at leetcode or hackerrank. I need a real project/ task, not that

better-dpt-roll.github.io/

better-dpt-roll.github.io/

better-dpt-roll.github.io/

If you've never written a monadic parser in Haskell before, absolutely do that.

>Implement JPEG-like compression
>Text-compression
>Raycasting engine
Hard mode/You will actually learn something mode: Don't look up tutorials or existing implementations. You probably need to know the general concept, e.g. that JPEG uses fourier transforms, but other than that try to come up with stuff on your own, pretend you're inventing it and see how close you are to the mark when you are done.

Make a command-line calculator, but something more than the "required" operations. Add unit/currency conversion, basic equation solving, vectorization, or anything that you feel is missing from others.
Alternatively, make any kind of life-improving CLI tool. Do you do competitive programming? Make a program in your preferred language that compiles, runs and tests a file against a specified input and output.

explainshell.com/
Maybe a little help user?

Try reading a man page for bash also. It's a surprisingly good resource.
it covers stuff like
[[ -a which echo ]] echo "echo has been found"

and how -a is diffrent from -f or -d

LOL

what a shitty website

Attached: ccde2.png (1631x818, 83.85K)

>fun project
What difficulty? I think developing an optimizing compiler is a fun project, but it's pretty tough when you're doing stuff deep in type theory. Something that's a fun project for a beginner (configurable fizzbuzz or something basic like that) would be utterly boring for me. Where do you fit?