[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]

Archived threads in /wsr/ - Worksafe Requests - 1041. page

This is a blue board which means that it's for everybody (Safe For Work content only). If you see any adult content, please report it.

File: 705679.jpg (2MB, 1920x1200px) Image search: [Google]
705679.jpg
2MB, 1920x1200px
Does anybody have a Suicide Squad torrent that isn't garbage quality?
12 posts and 1 images submitted.
>>
>>180527
go in a damn cinema and see the movie or wait for the bluray torrents
>>
>>180704
this

also the movie is already garbage quality, what difference does it make if the torrent is any good?
>>
>>180527
bump for this

File: 31hVstq5JvL._SY400_.jpg (12KB, 500x159px) Image search: [Google]
31hVstq5JvL._SY400_.jpg
12KB, 500x159px
Oi my /wsr/ niggas, Any bassists here willing to help me out?
I'm a bassist, intermediate. Been playing for about 2 Years and I want to get out of just following the guitar. I want to have/create interesting and fun basslines. Not necessarily walking bass lines but maybe something like this:
https://youtu.be/E7h2LOQ1wLg
If you listen closely in the "breaks" you can hear the bass being itself

>pic sort of related, a bass I want
8 posts and 3 images submitted.
>>
File: Blues_scale_hexatonic_C.png (6KB, 1043x225px) Image search: [Google]
Blues_scale_hexatonic_C.png
6KB, 1043x225px
It's all about those scales. The most helpful one for bass/rock music is pic related (blues scale). If you know what the next chord will be for the guitar, try using notes to get up to it (ie, chord goes from A to D, play A, then play a C right before the D).
This song uses a lot of 5ths, switching back and forth between the root and the 5th below it (I don't know the technical term for this. It's technically a 4th, but it's the 5th of the chord.) For example, if the chord is a B, play the B and bounce back and forth with the F# below it. It's not that hard, but makes it sound a lot more interesting.
Am I making any sense? Sorry, I'm mostly self-taught, so I don't know the fancy Italian names for most of this stuff.

It really comes down to this: experiment when you practice, figure out what works, and after a while it will come more naturally. Also, read tabs of songs with bassists you like and see what they're doing.
>>
>>180489
Thanks man.
I do know the bass scale and the major scale I was learning the minor today and I know modes, I just don't know how to use them mate. And the thing about adding a note in between 2 guitar notes is that what we play is faster (metal) we don't have the little "breaks" that song I linked has. But I see what you mean and I'll try it.

Yeah I'm basically self-taught as well and what you're saying makes sense, I don't speak music terms either.
A fith is right. It's basically a powerchord arpeggiated (if you didn't know that or forgot, I did)
But I'm playing what you said right now and that's not the part I'm looking at I'm mostly looking at the little run back but what you said makes sense.

Thanks man. I appreciate the answer and the bump.
And I can't look at tabs because the music I listen to is mostly obscure (like the song you heard)
And not many people will tab it. I mostly play all of it by ear.
>>
>>180497
There's not really one single explanation I can give, so I'll just keep shooting and hope I hit something.
For faster stuff, instead of doing just one note in between chords, use the scales (or modes if it's not the root chord) to make quick runs (16th notes or faster) on the last beat, and land where you want to be by beat one. They can be ascending or descending. There is no break, just a run leading to the next measure.
And yeah, arpeggios, that's a thing (I need sleep). Those are always good, and you can always add certain notes to them depending on the character of the song.
Also, a good rhythm really drives a song. Rests are notes too, and can either be used for syncopation or make the next downbeat have more of an impact. Here's where the Italian comes in, every few notes special in some way (staccato, tenuto, accent, etc.). On top of that, make some kind of pattern between octaves or closely related notes that stays consistent throughout a section. (Basically an ostinato)
I don't play a lot of metal, but I know you will use the minor scales a lot.

Hopefully I am at least some help. I'm horrible at explaining, or maybe this is more of a subconscious right-brained thing for me.
When I play, I don't think about each note. I think the big picture (what key is it in, what are the chords, etc) and how I want to execute it. The rest comes naturally.

I would appreciate it very much.
10 posts and 3 images submitted.
>>
Aaaaaaaand bump.
>>
>>180450
ok
>>
File: konfu.gif (1MB, 1225x690px) Image search: [Google]
konfu.gif
1MB, 1225x690px
>>180450
here you go my dude

File: GDDAM POINTERZ.png (32KB, 306x382px) Image search: [Google]
GDDAM POINTERZ.png
32KB, 306x382px
Hey everyone, I need some help wth C programming.

I'm a total noob on coding, so I go a little stuck with pointers. In the image is the code of the lesson I'm in, and I just can't get why the variables s1, s2 and result or the function longer need to be pointers. And what's the magic on declaring string1 and string2 as pointers and assigning them the text value right away?

I found some nice explanation on pointers searching on the web, but I can't understand why those things need to happen like this in on this particular code. I'd take another (and lengthier and noobbier) approach for the same output. So, if you computer geniuses out there feel like helping me improving, I'd feel really glad.

Thanks in advance.
16 posts and 1 images submitted.
>>
>>180440
The functions in string.h take a pointer to a string as an argument.

>And what's the magic on declaring string1 and string2 as pointers and assigning them the text value right away?

I'm not sure what you mean by this. The compiler adds the null terminator automatically for a quoted string constant though, if that's what you mean. You can initialize any variable at the same time you declare it.
>>
>>180455

Thanks, I'm not sure I got the string.h part, but at least that gives me a clue on which topic to delve into next.

And concerning string1 and string2, I thought you couldn't do that because with the * operator they would only count as a pointers and their contents would be the memory addresses of the variables they would point to, so you couldn't assign them any values other than those.
>>
>>180440
>I'm a total noob on coding, so I go a little stuck with pointers. In the image is the code of the lesson I'm in, and I just can't get why the variables s1, s2 and result or the function longer need to be pointers.
C doesn't have a string type *at all*, so if they were char literals, you could only have one letter.

By making them pointers, you can keep adding 1 to the pointer and reading the next char, and that way you get a string and not just a single char.

But how do you know when to stop? By convention you check to see if the char is zero, and if it is, that's the end of the string.

What if the zero isn't there? Why you've just discovered C's greatest feature: buffer overruns with remote-execution potential! You can add a buffer-overrun vulnerability anywhere you use a pointer! And because C allows arbitrary pointer arithmetic, finding buffer overruns reduces to the Halting Problem and is provably unsolvable in the general case!

File: 125709b.jpg (16KB, 190x173px) Image search: [Google]
125709b.jpg
16KB, 190x173px
15 posts and 8 images submitted.
>>
I liked Stella Glow.
>>
Not obscure, but you can't go wrong with DK Country
>>
What's "obscure" to you? Not enough people have played the devil survivor games and the 3ds ports are the way to play them, but any is hardly obscure

File: b58f11db6a.gif (140KB, 379x440px) Image search: [Google]
b58f11db6a.gif
140KB, 379x440px
Reccomend your favorite few anime from the past 2 years.

Here's the catch:
>From Jan 2014-Present
>Series can't take place in High school
>Series can't be a SAO type, "trapped in an MMO"

Pic related, the most fun i've had in a LONG time watching anime
21 posts and 2 images submitted.
>>
Plastic Memories if you don't mind a heartbreaker.
>>
No game no life
Shingeki no Bahamut: Genesis
Nanatsu no Taizai
Black Bullet
Ajin (if you can stomach the CGI)
Hitsugi no Chaika
Sekai Seifuku: Bouryaku no Zvezda
Kekkai Sensen
Punchline
One Punch Man
Kono Subarashii Sekai ni Shukufuku wo!

Log horizon (Traped on a MMO type but its more focused in politics)
Tonari no Seki-kun (I think its placed in middle school, anyway its very funny)
Overlord (Traped on a MMO type but diferent to SAO and log horizon)

Wow that was hard and most of them are average looks like /a/ its right, anime its dying
>>
To the above I'd like to add:

Space Dandy
Garo: Honoo no Kokuin (NOT Guren no Tsuki)
Dimension W

I had to remove two when I belatedly noticed that, technically, they take place in or around a school.

File: Tetsuo[1].jpg (1MB, 3072x1728px) Image search: [Google]
Tetsuo[1].jpg
1MB, 3072x1728px
Photoshop is frustrating me. Hair should be orange and skin should be fair, everything else is up to you.
11 posts and 5 images submitted.
>>
Is anyone already working on this?
I'm really bad at coloring but I could give it a try if onbody else is going to.
What color scheme do you want?
>>
>>180775
ye
>>
>>180844
alright then.
sorry I didn't see it sooner, I'll have to redo the line drawing, after that coloring should be easy, might be done in 30 minutes - 2 hours.

File: vga.jpg (52KB, 640x480px) Image search: [Google]
vga.jpg
52KB, 640x480px
New to building computers here and I recently built my own, but I'm having problems when I try connecting my VGA cable into my GPU. The only way my monitor can turn on is when I plug the HDMI cable into the motherboard and when I try to use a VGA/HDMI cable directly into the GPU, the GPU stops working and my monitor doesn't even turn on. I would love some help here!

Full PC Build: http://pcpartpicker.com/list/p3ZzQ7
35 posts and 4 images submitted.
>>
I would help you but you chose Intel which is a dirty grimy disgusting company.
>>
>>180214
Again, I know jack-shit about computers so I just chose an inexpensive build but honestly I would love any help, even if I made a shitty decision.
>>
>>180212
When you plug in your VGA/HDMI into the GPU card, do you still have an HDMI cable plugged into the motherboard?

If yes, disconnect the HDMI cable from the motherboad GPU and try the PCIe/AVG GPU again.

If no, check the BIOS and make sure the correct GPU is enabled.

File: IMG_1577.jpg (3MB, 3264x2448px) Image search: [Google]
IMG_1577.jpg
3MB, 3264x2448px
Can someone photoshop me in Los Angeles or Santa Monica Pls!!
10 posts and 5 images submitted.
>>
File: 1.jpg (1MB, 1280x845px) Image search: [Google]
1.jpg
1MB, 1280x845px
>>
man u are awesome pls can photoshop me for real in los angeles or santa monica pls it's really important!!
>>
>>180129
why are you standing on the wall.

File: DINO_PC_MAGMADON_GTX_750_TI.jpg (155KB, 1200x734px) Image search: [Google]
DINO_PC_MAGMADON_GTX_750_TI.jpg
155KB, 1200x734px
My PC works but can't send signal to the monitor.
Earlier it worked but it had the "BOOTMGR is missing" error so I was just preparing a flash for it to repair windows 7 but now I'm too late and this is happening. I have tried removing the CMOS battery for resetting and cleaning the RAM a bit but the issue remains the same. what are other possible ways to solve this problem? what parts will I need to replace possibly?
30 posts and 1 images submitted.
>>
When you power the PC on what kind of beeps do you get?
>>
>>180137
No beeps it just turns on and runs. I suspect that it still gets the BOOTMGR thing even though it I can't see anymore
>>
>>180210
>No beeps
Is it a laptop? All PCs (not laptops, but desktop PCs) emit a POST beep code upon powering on, even if it's just a single happy beep that lets you know all is well. This beep usually occurs just after your mobo manufacturer's info appears on the screen.

File: She-wallpaper-10748256.jpg (939KB, 2160x1920px) Image search: [Google]
She-wallpaper-10748256.jpg
939KB, 2160x1920px
Requesting gifs of girls with brown hair and blue eyes.
Reaction or otherwise.
Please and thank you.
10 posts and 5 images submitted.
>>
I'd prefer anime but real girls are cool too.
>>
In case you didn't look at that artist's DA

http://kuvshinov-ilya.deviantart.com/
>>
maybe not worksafe:

https://chan.sankakucomplex.com/?tags=brown_hair+blue_eyes+gif&commit=Search

Since the last thread is being archived, I'm starting a new one.
I am looking for the album 麗玖月歌 ~終わらぬ夜の帳. It was an album released during Comiket 85 but I have not been able to find it available for download.
It is not in the AB C85 collage nor is it on dojin.co
The doujin circle's webpage for the album: http://www.xn--ldkt64npjof5w.jp/#!reikyu/c1qou
I would be extremely thankful if anyone could either find it or upload it if they have it.
5 posts and 2 images submitted.
>>
I refuse to let up. Bump
>>
bump
u
m
p
>>
File: 1437764393532.png (943KB, 1052x706px) Image search: [Google]
1437764393532.png
943KB, 1052x706px
just waiting

Is there any torrent or mega.nz link to download 4chan cup matches from http://archive.klaxa.eu/?
10 posts and 1 images submitted.
>>
>>179988
klaxa stores a total of 721 gigabytes of data, so you'd probably need an external storage device to keep everything.

You can use winhttrack, however, to download everything from klaxa, and you can also exclude things like pre-game setups, draws, intros and outros. It would still be a lot.

My advice: Get a HDD or two, make sure you back up all the downloads in case one HDD fails.
>>
>>180006
I'm just downloading 2016 cups so my HDD will be fine, I just needed better method of downloading them. Chrome's downloader is unstable and gets disrupted easily if internet connection is bad or if downloading multiple files at once.

So, is winhttrack a good method to use? Is it freeware?
>>
wget -r http://archive.klaxa.eu/Summer_2016/

Not sure it if works but it should.

File: 20160821_135729.jpg (4MB, 4128x2322px) Image search: [Google]
20160821_135729.jpg
4MB, 4128x2322px
Could someone please colorize this. It's family member of mine
8 posts and 4 images submitted.
>>
File: color.jpg (2MB, 2322x4128px) Image search: [Google]
color.jpg
2MB, 2322x4128px
>>179943
i tried. i don't know what color stuff should be.
>>
>>179989
What did you use to do that? Looks very good
>>
>>179943
Do you know in which branch or where he served?

File: image.jpg (2MB, 3264x2448px) Image search: [Google]
image.jpg
2MB, 3264x2448px
Can anyone help me find some legal work experience. I have applied at nineteen different firms and have been ignored by all of them. I plan to attend Durham law next year and I feel that a work experience placement would really strengthen my application.
I am happy to provide my CV to anyone if needed.
Please email me at:
[email protected]
For any inquiries
9 posts and 1 images submitted.
>>
Just start volunteering.
>>
>>179774
I have been, they just don't reply
>>
Cmon please I'm actually desperate

Pages: [First page] [Previous page] [1031] [1032] [1033] [1034] [1035] [1036] [1037] [1038] [1039] [1040] [1041] [1042] [1043] [1044] [1045] [1046] [1047] [1048] [1049] [1050] [1051] [Next page] [Last page]

[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.