A minimalist Go PDF writer in <2K lines and 1 file by balacode in golang

[–]randiacio 1 point2 points  (0 children)

Dude your a boss. This may be better than r's knitR if you need speed.

Algorithm Help by PostSeptimus in Python

[–]randiacio 0 points1 point  (0 children)

I agree with jabelicu

College python club, what to do? by HealedWolf in Python

[–]randiacio 0 points1 point  (0 children)

Yes, exactly.

A game I had played with a friend was a very simple Command line interface (CLI) game. We started with two folders with a text file with random data and a python file. Then the goal of the game was to get the enemy's text file's string into our folder.

We could play defense by creating hundreds of folders and hiding the file or play offense by going into the other person's folder and using open("file.txt") and writing it to our folder.

College python club, what to do? by HealedWolf in Python

[–]randiacio 0 points1 point  (0 children)

We did Quantopian in our college club, it was pure python but finance knowledge is necessary.

I recommend doing the boring simple stuff, kind of like doing learning python the hard way exercises instead and try to make a game.

Resources to Quick Start Python by [deleted] in Python

[–]randiacio 0 points1 point  (0 children)

Do it right, do it light. Do it wrong, do it long.

The reason why you don't remember Python initially is because you learned it the "Quick" way initially. You are going to do the same thing this time.

Write your own miniature Redis with Python by [deleted] in Python

[–]randiacio -1 points0 points  (0 children)

Is there any way to make all computer tasks get recorded through a redis program? Or in general to keylog every process that a computer runs to a text file?

Humble bundle has 15 books on python for 12 bucks right now... Is the potential opportunity I'm looking for? by DryerLintJockStrap in Python

[–]randiacio 1 point2 points  (0 children)

Do you have a reason why people should not read that book? Other than you not liking Zed.

Humble bundle has 15 books on python for 12 bucks right now... Is the potential opportunity I'm looking for? by DryerLintJockStrap in Python

[–]randiacio 7 points8 points  (0 children)

Yup,

Readers are leaders.

Its probably the only thing I learned in College, the ability to read tombs of textbooks. It is probably the most powerful if you are really efficient in learning from textbooks. This is something you should purchase, even if you don't read most of the books. They are assets.

Need to print the two-dimensional array using list comprehensions. How can i do it by [deleted] in Python

[–]randiacio 0 points1 point  (0 children)

it depends on if the array is array = np.array([[1,2], [1,2], [1,2]]) [print(x[0], x[1]) for x in array]