[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y ] [Search | Free Show | Home]

I feel like I've his another level Mr Chan! Last week I

The stories and information posted here are artistic works of fiction and falsehood.
Only a fool would take anything posted here as fact.

Thread replies: 143
Thread images: 18

File: anonimouse.gif (2MB, 330x204px) Image search: [Google]
anonimouse.gif
2MB, 330x204px
I feel like I've his another level Mr Chan!
Last week I created a macro that extracted youtube URL's and converted them to MP3.
This week I've learned to create a fake virus that brings up pop up message windows.
I am still a newfag at this shit but I feel that I've finally took the red pill and cracked the surface of codeing.
Once I get more confident I think I'm gonna learn Java and make a website.
General codeing thread.
I'm willing to share mine if you are.
Also you can berate me on being newfag.
I'm half way to been a true anon.
>>
If dubs this is a copypasta
>>
>>704404156
No copy, I'm actually learning this shit young grasshopper.
>>
Was kinda expecting my fellow anons to congratulate me on a half finished success story.
Guess not.
NM, I am still the greatest hacker browsing 4chan ATM.
>>
>>704404691
Very confident young one.
~desu
>>
>>704404964
Show me you skill Mr Myagee?
>>
>>704404691
Congrats fag
>>
>>704405209
Thanks man, appreciate it.
>>
>>704405089
Why? One this chan are we're all equals.
The skills of the individual doesn't matter.

+i'm on mobile ~desu
>>
>>704405350
Yes but some anons are more equal than others.
I am now less equal faggot.
>>
I feel like the sky is the limit with coding, now I can play really good pranks on noobs on facebook who make fun of my sword collection and colored contacts. /b/ for life /b/ros
>>
>>704405633
>Uses FB
Kek
>>
>>704405708
your so getting hacked now, have fun living in a cave being poor an eating garbage the rest of your life, because that is what hacking can do to you
>>
>>704405523
MORE EQUAL
>>
Can we get some accrual coding in this thread, please?
I'll post my youtube code, which appears to be pretty allusive when you google it.
Nobody appears to be able to create it so you could be the 1st fags with access.
1) Download iMacro
2) Type this code:
TAB T=1
SET !TIMEOUT_STEP 1
SET !ERRORIGNORE YES
SET !DATASOURCE C:\Users\Documents\iMacros\Datasources\AndyCD1.csv
SET !DATASOURCE_LINE {{!LOOP}}
URL GOTO=https://www.youtube.com/
TAG POS=1 TYPE=INPUT:TEXT FORM=ID:masthead-search ATTR=ID:masthead-search-term CONTENT={{!COL1}}
TAG POS=1 TYPE=BUTTON FORM=ID:masthead-search ATTR=ID:search-btn
TAG POS=1 TYPE=IMG ATTR=SRC:https://i.ytimg.com/*
SET !EXTRACT {{!URLCURRENT}}
SET SAVEAS {{!COL1}}
SAVEAS TYPE=EXTRACT FOLDER=C:\Users\Documents\iMacros\Datasources FILE=test1.csv
TAB T=2
SET !DATASOURCE C:\Users\Documents\iMacros\Datasources\test1.csv
SET !DATASOURCE_LINE {{!LOOP}}
URL GOTO=http://www.youtube-mp3.org/
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/ ATTR=* CONTENT={{!col1}}
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:/ ATTR=*
WAIT SECONDS=3
TAG POS=3 TYPE=B ATTR=TXT:*Download*
WAIT SECONDS=3
ONDOWNLOAD FOLDER=* FILE=* WAIT=YES
>>
>>704406389
I'm less equal child.
You are the scum between my toes.
>>
>>704406282
You're heading towards the darkside.
A true hacktivist seeks should seek knowledge not power.
>>
>>704406631
This
Knowledge>power.
Power can be fond in knowledge > knowledge cannot be fond in power.
>>
>>704403993
>I created a macro that extracted youtube URL's and converted them to MP3.

why would you convert a URL to an MP3?
>>
>>704407034
To make CD's faggot.

See
>>704406537
YW
>>
>>704406537
Here is my youtube script faggot

#!/bin/bash
echo "Youtube Video Downloader"
echo "Download a link(1) or list(2) ?: "
read question
if [ $question = 1 ]
then
echo "Youtube Url: "
read url
file=$(sudo youtube-dl -o "%(title)s.%(ext)s" $url | grep -o '".*"' | tr -d '"')
echo "Finished Downloading $file"
sudo chown -R username:username "$file"
exit
else
if [ $question = 2 ]
then
echo "Location of list: "
read location
file=$(sudo youtube-dl -o "%(title)s.%(ext)s" --batch-file $location | grep -o '".*"' | tr -d '"' > filenames)
cat filenames | while read line; do
sudo chown -R username:username "$line"
echo 'Downloaded & Modified: '$line''
done
fi
exit
fi
>>
>>704406537
I should also mention you .csv (!DATASORCE) file needs to be typed
"like this",
"like this",
"like this",
>>
>>704407183
This guy has the right idea.

Please stop using iMacro.

Code.org, pick a language, get compiler, put in real framework for achetecture specific porting.
>>
>>704407126
but you still aren't "converting a url to an mp3" you are passing the URL to a website that grabs the actual mp4 file then downloads it.
>>
>>704407183
I don't know this format so I have many questions but the main and I think least retaded one is:
Where is it getting its input data from?
>>
Congratulations on the milestones though, it may be oversympathetic but not everyone can code.
>>
>>704407762
OK fancy dick.
But it still does what it says on the tin.
You write a sond name/title in a .csv file.
You will then be asked if you want to download the MP3 of it.
Why get anal over the wording?
>>
>>704407970
Thanks bud.
>>
>>704407790
i will break it down, it is pretty simple once you understand bash.

echo "Download a link(1) or list(2) ?: "
read question

that decides what the user wants to use for input

echo "Youtube Url: "
read url

this is used for single URLs, you can just paste a youtube url into the console when you run the script and it will download the single file to a .mkv/.mp4/mp3 format

sudo chown -R username:username "$file"

this changes the file permission, when it downloads it saves it as root, and for security i don't like to run anything as root.

if [ $question = 2 ]
then
echo "Location of list: "
read location

this is just getting the location of a text document that i have the URLs stored at. it goes line by line and downloads them all.
>>
>>704408167
Thanks man,
Is bash a good language to learn or would you recommend another? First released 1989 so is it starting to get a bit dated?
>>
>>704408538
Bash is still used for linux. It is really good to learn if you are using linux as your main OS because you can automate things very easily. but you would need to learn bash AND unix commands to be efficient.
>>
File: 1392556034209.gif (993KB, 250x250px) Image search: [Google]
1392556034209.gif
993KB, 250x250px
>>704403993
>Last week I created a macro that extracted youtube URL's and converted them to MP3
>This week I've learned to create a fake virus that brings up pop up message windows.

nigger ive learned this shit in 10 minutes
>>
>>704408704
I'm a windows fag TBH and worse yet I've been cucked by 10.
I saw a tutorial on blackhat that looked pretty simple. sorta 123 format so I was thinking of learning that(can't remember what it's called or arsed to look)
>>
>>704408769
Well it took me a bit to get my head around clicking java links, give me a break.
>>
>>704409019
I also have a 9-6, so weekends are my only time to learn.
>>
File: 1474134900077.jpg (42KB, 600x479px) Image search: [Google]
1474134900077.jpg
42KB, 600x479px
Shameless self bump
>>
File: 1382612875828.png (195KB, 500x431px) Image search: [Google]
1382612875828.png
195KB, 500x431px
>>704409019
you should just go on tor and find everyhting you need
>>
File: 1382612823074.jpg (440KB, 1417x1600px) Image search: [Google]
1382612823074.jpg
440KB, 1417x1600px
>>704409788
>i dont know how to tor
>>
>>704409788
Tor....
Thanks but no thanks.
>>
File: 1391911433607.gif (2MB, 412x229px) Image search: [Google]
1391911433607.gif
2MB, 412x229px
>>704409940
>Tor....
>Thanks but no thanks.

ok how retarded are you son? how old are you? If you want serious info you DEF need tor
>>
>>704410056
Yea, if I want to draw unwanted attention to myself.
Thanks, but no thanks.
>>
I developed scripts that scrapes all subreddits for images/videos and a script that scrapes all motherless groups I supply it.

FIght me.

I don't even look for porn anymore, I have robots do it for me.
>>
>>704410559
do you have a script that scrapes scripts?
>>
I'm an aspiring programmer - wondering if I can get an oldfags opinion on python programming? Some say it's useful, some say it's worthless. what's it really good for?
>>
>>704410635
No. I hadn't thought about that before...

Time to whip out Python.
>>
>>704410670
It's useful, very useful. Anyone who says otherwise is either a fool or ignorant to its capabilities.

I use it all the time and it's benefited me greatly.
>>
>>704410670
That's what I've read up on that's the 123 programming.
I have no clue how good it is though.
>>
>>704410670
That is the first object oriented language i learned. I still use it some times.
>>
>>704410756
Any perticular uses? I've only managed to do some small gimicy programs with it so far

>>704410798
>>704410816
Thanks for le info
>>
>>704403993
"This week I've learned to create a fake virus that brings up pop up message windows."
that is probably the easiest shit you can do...
are you fucking kidding me?
>>
>>704410863
>Any perticular uses?

You could use it for anything tbh, a friend of mine is currently making a honeypot written with python.
>>
>>704410981
I never said I was an ace.
But I have found the point where it all clicks. I understand my computer now.
I'm not just a gormless FB browser.
>>
Anyone here make games in Unity?
I've spent the last two days just to implement a few things in a game I just started making.
Now when I right click my character goes to the enemy and stops when it enters a trigger, but I tried using the lines with some changes for the enemies to follow my character and they won't stop. Also tried raycast without success.
Anyone have an idea?
>>
>>704403993
Decode this faggot
>>
>>704403993

This is some top level faggotry.
>>
File: cursed.jpg (54KB, 494x494px) Image search: [Google]
cursed.jpg
54KB, 494x494px
>>704411248
>highlyclassified.jpg
>kill yourself
>>
>>704411248
I know how to but I already know it's most likely CP and I don't want to be associated with that.
>>
>>704403993
meh
I just get my gf to code or hack whenever I need shit done. Which is rarely because seriously when do you need to hack?
>>
>>704411358
>Jpg

Its a lossless png noob
>>
>>704411109
Damn that's pretty cool, didn't know it was capable of that kind of stuff.
>>
>>704411404
When you're an introverted lilfag and want to find information about people without talking to them.
>>
>>704411482
Post his IP
>>
>>704411482
If you are that pathetic shouldn't you just like ignore the whole people thing? Seems more in line with the lifestyle you are developing.
>>
>>704411591
B-but how would we fuck with the normies?
>>
>>704411547
No one in perticular
>>704411591
I like people, I'm just not good at talking and meeting with people, but for the most part yes I do avoid talking unless anonymous
>>
>>704403993
i dont see you as a newfag
just a fag
>>
>>704411898
Thanks..... I think?
Same to you faggot.
>>
>>704410191
thats exceactly the opposite
>>
>>704411741
Then work on your social problems then mate?
>>
>>704403993
>google.com
>hwo 2 vbs
LELE 4CHAN HACKERINO
>>
>>704412283
>Download Tor
>Go on a list
Don't think so faggot.
>>
>>704412376
Eh I try when I'm forced into it, otherwise I'd rather not
>>
>>704411404
>because seriously when do you need to hack?

when you want to piss of the normies and spread your racist ideology

>>704411442
Yeah, if you are interested in security stuff with python you should check out the book "black hat python: python programming for hackers and pentesters" it is pretty neat.
>>
>>704405633
Upboat.
>>
>>704412407
It's not that the info isn't freely available, it's that I took the time to learn.
>>
>>704412583
https://pythonizame.s3.amazonaws.com/media/Book/black-hat-python/file/af0ef90e-83cf-11e5-964d-04015fb6ba01.pdf
This it lmao?
>>
>>704408167
why do you even use sudo at all? none of these actions require root
>>
kik malcolmwlkrsn
>>
>>704408918
The windows equivalent to bash would be powershell. Well, similar, not necessarily equivalent. Also, get chocolatey and install commands, languages, and other tools.
>>
>>704410559
besides /b/ what are you scraping.
>>
>>704413056
Idk, i downloaded it from an ebook repository

>>704413597
for some reason youtube-dl was only downloading mkv files when it wasn't running as root. i am guessing that it is because the mkv format is default but after it downloads it attempts to change it to mp4, and in order to change the file it needs elevated privelege.
>>
>>704410670
python, ruby, golang, even javascript (not used on command line much). any of these will do you well.
>>
File: 1434858288294.gif (2MB, 250x184px) Image search: [Google]
1434858288294.gif
2MB, 250x184px
>>704406537
This code is shit just uses youtube to mp3 They created the code to not you get your story straight nice try though.
>>
fuck off script kiddies
>>
>>704414380
no shit sherlock, that's what he said.
>>
>>704414497
Fucking this

Go home plebs
>>
>>704414497
no one here is trying to hack into anything.
>>
File: Q8ZNXS8.jpg (57KB, 540x531px) Image search: [Google]
Q8ZNXS8.jpg
57KB, 540x531px
bump
>>
>>704407760
this
>>
>>704415641
Thanks man, sorry I've been sewing my pockets on my work toruses.
Give me 10 more min and I'll be back.
>>
>>704413847
I did write a 4chan scraper, but I didn't really like the diverse quality of images.

4chan shouldn't be scraped.
>>
>>704415768
lmao sewing - I'm just going through my Tor and following this guy's guide
>>704409820
>>
>>704406537
What a horrible, ugly imacro script. Loading three Web pages in one instance of your loop just to avoid doing any real programming? Nice.
>>
>>704416333
The trips speaketh.
>>
>>704408167
If you are serious use python... easy to learn, powerful. If you are using bash... check out "bash check" for detecting bad habbits/code and syntax errors. Basics... https://www.codecademy.com/ for big newbs... but its a start in the right direction.
>>
>codeing
>>704403993
>>704407183
>>704411134 (maybe nt C# itself, but most people using the Unity framework)

Can't tell if troll.

Back in the day this tread would have been slammed everyone pointing out that none of this is coding and rightfully calling OP a script-kiddy.

Now years later everyone is just sitting around talking about their shitty scripting. Maybe I'm the newfag for being trolled by OP.
>>
>>704417205
Sorry https://www.shellcheck.net/ is what I meant
>>
>>704417205
I already know python, i started on the youtube script yesterday and it is unfinished, i am going to be adding some more options such as a grep string to parse a bookmarks file and automatically download all youtube links.

>>704417207
>none of this is coding

which is exactly why >>704407183
said script. are you mad that someone is scripting with a scripting language?
>>
>>704417568
What are you trying to accomplish... there are tons of browser add-ons that do this way more efficient and have coders/developers that interact with that all the time... Just testing your limits? If so... get creative. Make it be able to covert from mp3/youtube to other formats :)
>>
>>704418196
Yeah, i just wanted to download a list of youtube videos. and had nothing better to do. i am probably going to keep playing around with it and possibly add an option for proxychains and maybe even an option to download a video and automatically run it through deepdream animator.
>>
Remember the best scripts/software are modular and don't rely on many dependencies to function... You could just put that script into a curl loop with a list of urls in a file or csv... honestly csv is over rated. Good luck on your venture... keep coding anon. Be a shark... keep moving forward or drown...
>>
>>704403993
how fun is it not having a life?
>>
>>704417568
Run this and post a screenshot: sudo su -
cd / && ip addr show && python -m SimpleHTTPServer 80
>>
>>704418863
kek, no thanks.
>>
Really? Don't attack/fuck with a upcoming anon... pay it forward... whatever floats your boat ;)
>>
File: NIGGER.jpg (16KB, 427x240px) Image search: [Google]
NIGGER.jpg
16KB, 427x240px
Holy fuck this thread is cringy
>>
>>704419292
Very sorry we know how to do something you can't
>>
File: 1471791795255.png (1MB, 1494x974px) Image search: [Google]
1471791795255.png
1MB, 1494x974px
why are u all so fucking retards that to download a fucking video or music from youtube they dont go to a fucking website and put the url, no, they think its more cool to just open the inspection option and feel like a hacker
>>
>>704416333
back from sewing, had to do a button too. That was a ball ache, stabbed my thumb like 3 times.
Why is my script so ugly? It is functional and quite tidy IMO.
>>
>>704419663
Could be anon just wants to try something new... not hack the matrix. Can't fault someone for learning.... I guess you can... but perhaps is a shitty move for doing so.
>>
>>704419666
Indentation and variable encapsulation for one... ;) It's really basic... and doesn't check for error handling if something goes wrong... Also no logging... but that may be icing on the cake. Keep working on it.
>>
>>704419666
>SET !ERRORIGNORE YES
Learn to read before you criticise others anon.
>>
>>704420202
oops
see
>>704420363
>>
>>704420444
>>704419666
Check my trips fags!
>>
>>704420054
i dont complaint the newbies for trying cause we all been throught that but i dont like all the other that call themselfs hackers just because they know 2 or 3 code tips
>>
>>704420581
*nods* but I don't think anon is claiming to l33t lol. If so he/she hides it well.
>>
>>704420581
You're just synical, show me a bot?
>>
>>704404691
I bet you can't even triforce you vat of liquid ass cancer.
>>
File: 1468225102650.jpg (294KB, 960x1280px) Image search: [Google]
1468225102650.jpg
294KB, 960x1280px
>>704420568
nice work! Here is a little bump.
>>
>>704420202
4chan removes indentations and isn't encapsulation just for object oriented?

>>704420859
i am not who you responded to but >>704406537 said "Nobody appears to be able to create it so you could be the 1st fags with access. " which appears to be implying that he is better than others
>>
>>704420904
How so? Just showing support. Not tearing peeps down when they try something.
>>
File: 1469895770832.jpg (65KB, 700x613px) Image search: [Google]
1469895770832.jpg
65KB, 700x613px
>>704420904
what kinda bot?
like this one?
>>
>>704421038
Search for this script in iMacro format, you will have a hard time.
>>
>>704419663
Inspect element just allows you to view the source code for a webpage.
Learning other ways around things is good. Say for example you know one way to work, your friend knows another. Your friend won't have a problem with one road block, while you will.
>>
File: 1472475858348.gif (2MB, 500x459px) Image search: [Google]
1472475858348.gif
2MB, 500x459px
>>704407183

> sudo
> sudo
> sudo
> sudo


You fucking fuck.
>>
>>704421038
Didn't even factor 4chan cleaning it... Good point. True but anons have to be thick skinned in this realm or they get shit on. You make good points all around but I haven't heard OP start boasting much... just looking for help. Anywhoo...
>>
>>704421004
  ▲
▲ ▲
Fuck off!
Did I pass anon 101?
>>
File: 1469885440614.jpg (40KB, 300x250px) Image search: [Google]
1469885440614.jpg
40KB, 300x250px
>>704421246
you can download almost every video on the internet with inspect element, i confirmed that the other day on freepornday, that i downloaded the premium vids, and for youtube you can also go to a website or download an app
>>
>>704421144
Sorry mate thought you was having a pop.
Thanks for the support.
>>
>>704421512
No prob... everyone should know a bit of basic in my opinion even if you are not l33t or haxor. Knowledge, regardless, is always beneficial.... well... that can be a double edge sword. Sometimes ignorance is bliss. O..o
>>
>>704421501
I suppose if you can find the video link within the webside code?
>>
>>704421344
Thanks man.
Any script to share?
>>
>>704421745
>Sometimes ignorance is bliss.
Agree
But that ship has sailed, now I need all info I can get.
Any script to share?
>>
>>704417568
How long have you been in python and what kinds of things have you created? I ask because syntax is syntax no matter where you go ( python, C, ruby, php, bash... ). That script didn't show experience upfront :S
>>
File: Untitled-8.jpg (66KB, 300x261px) Image search: [Google]
Untitled-8.jpg
66KB, 300x261px
OP having finished sewing and making a few replies is mostly enjoying this thread.
Jack of all trades master of fuck all.
Shameless self bump!
Please share your scripts boys?
>>
>>704421762
not exaclty but more or less
>>
>>704421361
You failed. It was copy pasta.
>>
File: 1466796409621.webm (2MB, 854x480px) Image search: [Google]
1466796409621.webm
2MB, 854x480px
>>704422905
Most of my utils are meant for specifics. I may share some if we get another thread later. I g2g for now unfortunately... keep up the hard work man! Vid for effort.
>>
If we wanted to teach you, we'd teach you
Learn, we'll be in touch
>>
>>704423937
Love the vid, thanks man.
>>704423876
severe lack of delivery in this thread...
KYS
>>704424654
Nobody asked to be thought, go suck a dick.
>>
Ok then, your loss
>>
>>704425014
Considering you fail to reply, I very much doubt you have anything to teach.
On the off chance you do, I take it back. Please share your wisdom anon.
>>
File: Untitled-9.5.jpg (1MB, 1089x1154px) Image search: [Google]
Untitled-9.5.jpg
1MB, 1089x1154px
Bamp
Thread posts: 143
Thread images: 18


[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y] [Search | Top | Home]

I'm aware that Imgur.com will stop allowing adult images since 15th of May. I'm taking actions to backup as much data as possible.
Read more on this topic here - https://archived.moe/talk/thread/1694/


If you need a post removed click on it's [Report] button and follow the instruction.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com.
If you like this website please support us by donating with Bitcoins at 16mKtbZiwW52BLkibtCr8jUg2KVUMTxVQ5
All trademarks and copyrights on this page are owned by their respective parties.
Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.
This is a 4chan archive - all of the content originated from that site.
This means that RandomArchive shows their content, archived.
If you need information for a Poster - contact them.