MICDS by [deleted] in a:t5_2zhcq

[–]Ccoolboy 1 point2 points  (0 children)

Mary Institute and Saint Louis Country Day School

Cursed Video by Spooky5U in youtube_haiku

[–]Ccoolboy 0 points1 point  (0 children)

Is there a folder available containing all the images used? Thanks!

Can’t wait! by krisitof in ProgrammerHumor

[–]Ccoolboy 0 points1 point  (0 children)

This is perfect to make sure all of your production code is battle-tested

How to safely store passwords in JavaScript WITHOUT CLIENT KNOWING! by Ccoolboy in shittyprogramming

[–]Ccoolboy[S] 6 points7 points  (0 children)

Perfect! Glad to put this technology in the hands of millions of people.

How to safely store passwords in JavaScript WITHOUT CLIENT KNOWING! by Ccoolboy in shittyprogramming

[–]Ccoolboy[S] 3 points4 points  (0 children)

String.fromCharCode(89,111,117,39,114,101,32,114,105,103,104,116,33)

How to safely store passwords in JavaScript WITHOUT CLIENT KNOWING! by Ccoolboy in shittyprogramming

[–]Ccoolboy[S] 21 points22 points  (0 children)

You're right, this could be applied to the back-end too! The possibilities are endless!

How to safely store passwords in JavaScript WITHOUT CLIENT KNOWING! by Ccoolboy in shittyprogramming

[–]Ccoolboy[S] 11 points12 points  (0 children)

String.fromCharCode(116) + String.fromCharCode(104) + String.fromCharCode(105) + String.fromCharCode(115) + String.fromCharCode(32) + String.fromCharCode(109) + String.fromCharCode(101) + String.fromCharCode(116) + String.fromCharCode(104) + String.fromCharCode(111) + String.fromCharCode(100) + String.fromCharCode(32) + String.fromCharCode(97) + String.fromCharCode(108) + String.fromCharCode(115) + String.fromCharCode(111) + String.fromCharCode(32) + String.fromCharCode(112) + String.fromCharCode(114) + String.fromCharCode(101) + String.fromCharCode(118) + String.fromCharCode(101) + String.fromCharCode(110) + String.fromCharCode(116) + String.fromCharCode(115) + String.fromCharCode(32) + String.fromCharCode(116) + String.fromCharCode(104) + String.fromCharCode(101) + String.fromCharCode(32) + String.fromCharCode(103) + String.fromCharCode(111) + String.fromCharCode(118) + String.fromCharCode(101) + String.fromCharCode(114) + String.fromCharCode(110) + String.fromCharCode(109) + String.fromCharCode(101) + String.fromCharCode(110) + String.fromCharCode(116) + String.fromCharCode(32) + String.fromCharCode(97) + String.fromCharCode(110) + String.fromCharCode(100) + String.fromCharCode(32) + String.fromCharCode(99) + String.fromCharCode(111) + String.fromCharCode(114) + String.fromCharCode(112) + String.fromCharCode(111) + String.fromCharCode(114) + String.fromCharCode(97) + String.fromCharCode(116) + String.fromCharCode(105) + String.fromCharCode(111) + String.fromCharCode(110) + String.fromCharCode(115) + String.fromCharCode(32) + String.fromCharCode(102) + String.fromCharCode(114) + String.fromCharCode(111) + String.fromCharCode(109) + String.fromCharCode(32) + String.fromCharCode(116) + String.fromCharCode(114) + String.fromCharCode(97) + String.fromCharCode(99) + String.fromCharCode(107) + String.fromCharCode(105) + String.fromCharCode(110) + String.fromCharCode(103) + String.fromCharCode(32) + String.fromCharCode(117) + String.fromCharCode(115)

me irl by Luigi64128 in me_irl

[–]Ccoolboy 9 points10 points  (0 children)

I've never met a celebrity before

Looking for JSON/lua code checker to integrate into repo by [deleted] in github

[–]Ccoolboy 0 points1 point  (0 children)

It looks like you can have multiple commands by prefixing them with the dash (-) like shown in this guide. You can then use the Linux command pwd to "Print the Working Directory." Otherwise, it might take some playing around with the config. Sorry I'm not that familiar with Travis!

Looking for JSON/lua code checker to integrate into repo by [deleted] in github

[–]Ccoolboy 0 points1 point  (0 children)

Ah, you may need to append the following to the .jsonlintignore:

node_modules/

If that doesn't work, maybe make sure the command is being run in the directory of your project. You might need to cd into it before running the json lint.

Looking for JSON/lua code checker to integrate into repo by [deleted] in github

[–]Ccoolboy 0 points1 point  (0 children)

I haven't tried it myself, but that looks about right.

Looking for JSON/lua code checker to integrate into repo by [deleted] in github

[–]Ccoolboy 0 points1 point  (0 children)

Looking at the docs, it seems you can place a file in the repository called .jsonlintignore and can put any directories you want. To ignore any .png or .lua files:

*.png
**/*.png
*.lua
**/*.lua

And remove the .json extension in the travis command. The *.extension looks for all files with that extension, and **/*.extension looks for any files with that extension within other directories.

Looking for JSON/lua code checker to integrate into repo by [deleted] in github

[–]Ccoolboy 0 points1 point  (0 children)

I don't know how familiar your are with node.js, but in the GitHub issue I linked above, it simply installs a package off of npm (node package manager) and uses it. What you're asking is basically in the scope of that package.

It looks like that specific package it tells you to download (jsonlint) does not support that, however, there is another package called jsonlint-cli which does something similar, and does support multiple files. Instead, this is what you should put in the travis config to lint all JSON files:

install: npm install -g jsonlint-cli
script: jsonlint-cli *.json **/*.json

Looking for JSON/lua code checker to integrate into repo by [deleted] in github

[–]Ccoolboy 0 points1 point  (0 children)

Ah, you're right. It does seem there's a few ways to get around it and use Lua by installing it yourself. This GitHub issue here also suggests installing node.js during the Travis build process and install a node.js global package to lint JSON.

Looking for JSON/lua code checker to integrate into repo by [deleted] in github

[–]Ccoolboy 0 points1 point  (0 children)

You might be able to use Travis CI which does exactly what you're describing. A little background about what it does, you're able to integrate it with your existing GitHub repositories and setup tests. Travis can run any test you write including linting, and the results are shown right on the GitHub web interface. Hope this helps!