[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 - 297. 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: a9b6c7dd1af457ca5be7817b547b4702.jpg (825KB, 860x1192px) Image search: [Google]
a9b6c7dd1af457ca5be7817b547b4702.jpg
825KB, 860x1192px
Someone please resize and scale this image it can perfectly fit as my phone wallpaper
7 posts and 3 images submitted.
>>
bitch I don't know what kind of phone you have
>>
>>355707

op here forgot to mention my phone's resolution 720 x 1280
>>
>>355706
>what is waifu2x

File: god is not dead.png (415KB, 894x894px) Image search: [Google]
god is not dead.png
415KB, 894x894px
can anyone here make his lil feet go around in a circle?
6 posts and 2 images submitted.
>>
>>355678
working on it right now
>>
File: sonicrunningfast.gif (474KB, 894x894px) Image search: [Google]
sonicrunningfast.gif
474KB, 894x894px
>>355678
done
>>
>>355690
tnk u

File: IMG_1555.jpg (70KB, 498x741px) Image search: [Google]
IMG_1555.jpg
70KB, 498x741px
Can anyone undo this stupid app to see if this girl is hot or not?
Fuck these apps are dumb thanks!
9 posts and 2 images submitted.
>>
>implying she isn't hot in that pic
>>
>>355638
Haha that's what I'm thinking but was wondering if there was a way to reverse it to see how she looks regular
>>
>>355637
bump is it even possible or would it take a shit load of work

File: ikaikaika.png (279KB, 1040x768px) Image search: [Google]
ikaikaika.png
279KB, 1040x768px
Where can I get RAW's of the Ika Musume manga? I know senmanga has some but I want the very first chapters.
7 posts and 1 images submitted.
>>
>https://animebytes.tv/torrents.php?id=10180&torrentid=248591
>>
>>355635
I don't have an account, and I was hoping for an online reader.
>>
>>355641
>an online reader
For what purpose?

File: tbh.jpg (25KB, 667x670px) Image search: [Google]
tbh.jpg
25KB, 667x670px
Need new reacts, computer got wiped, none left, please help me /a/ </3

Smug girl best girl 100% of the time
15 posts and 14 images submitted.
>>
This isn't /a/, oops. I was redirected here sorry hun xoxo
>>
File: aho smug.png (678KB, 978x623px) Image search: [Google]
aho smug.png
678KB, 978x623px
>>
File: blyat.jpg (26KB, 720x345px) Image search: [Google]
blyat.jpg
26KB, 720x345px
Ite that's all the dumping I can do

File: Sadness of Belladonna.jpg (3MB, 1434x1076px) Image search: [Google]
Sadness of Belladonna.jpg
3MB, 1434x1076px
I'm looking for beautiful, unique looking anime similar to Belladonna of Sadness.
9 posts and 2 images submitted.
>>
>>355609
is that really an anime? It looks amazing.

anyway, I'm recommending:
Mononoke (not that Miyazaki Movie)
The Count of Montecristo (Gankutsuou)
Kuuchuu Buranko
The Tatami Galaxy
Ping Pong
Angel's Egg
Mushishi
The Night is Short, Walk on Girl
Lu over the Wall
The Tale of Princess Kaguya
In this Corner of the World
Miss Hokusai
Mawaru Penguindrum
>>
Dragon's Heaven and Nausicaa
California Crisis
Tekkon Kinkreet

This
https://www.youtube.com/watch?v=BvcUHphENxk
>>
>>356072
It is and it's great. Have seen most of the ones you mentioned but haven't seen Night is Short yet. Neither have I seen the new Yuasa films, but are those available on blu-ray already?
>>356078
Thanks for reminding me of California Crisis.

File: 752945868492.png (16KB, 400x400px) Image search: [Google]
752945868492.png
16KB, 400x400px
c# help.

I have a file that takes arguments but for some reason isn't picking up this one:

public void ReadFromFile2(int[] numbers)
{
string path = "FILEPATH\\numbers.txt";
StreamReader sr = new StreamReader(path);


for (int index = 0; index < numbers.Length; index++)
{
numbers[index] = Convert.ToInt32(sr.ReadLine());
}


sr.Close();
}

The other file reads this:
else if (option == 2)
{
Console.WriteLine("Option 2 chosen........");

obj.ReadFromFile2(numbers);
Console.Write("Not sorted: \n");
obj.DisplayArray(numbers);

Console.Write("\nSorted: \n");
obj.SortArray(numbers);
obj.DisplayArray(numbers);
}


Problem is with string arrays:

public void ReadFromFile3(string[] array)
{

string file1 = "FILEPATH\\Month_1.txt";

array = File.ReadAllLines(file1);


}

and this section is the problem:

else if (option == 3)
{
Console.WriteLine("Option 3 chosen........");

obj.ReadFromFile3(array);
Console.Write("Not sorted: \n");
obj.DisplayArray(array);

Console.Write("\nSorted: \n");
// obj.SortArray2(arr1);
// obj.DisplayArray(arr1);
}


It doesn't recognise array.

Why not?

And can I use stream reader like before?
5 posts and 1 images submitted.
>>
I think the problem here is that c# passes arguments by value and not by reference by default, what this means is when you try to assign an argument like in ReadFromFile3 (array = File.ReadAllLines(file1);) what's actually going on is that array when passed in is a shallow copy of the array above.
now, the quick and dirty solution to this problem would be to either return the array that you get from ReadAllLines OR you can pass array by reference like so:

public void ReadFromFile3(ref string[] array)

and then you would have to change:

obj.ReadFromFile3(ref array);

hope this helped ^^
>>
other useful links:

https://stackoverflow.com/questions/18066429/shallow-copy-or-deep-copy

https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/passing-parameters
>>
>>355577
C# passes *object references* by value, which is a very important distinction when you're dealing with mutable objects.

Arrays are mutable objects, so methods that mutate the object will work as OP expects (see his functions that work with arrays of ints), wheras methods that create a new object and mutate the object reference will not.

So File.ReadAllLines(...).CopyTo(array,0) will work, because it mutates array, and
array=File.ReadAllLines(...) won't work because it mutates the reference to array.

File: 1496260607369.jpg (102KB, 500x500px) Image search: [Google]
1496260607369.jpg
102KB, 500x500px
>install Steam through PlayOnLinux
>update
>crash
>doesn't appear under .wine
>repeat
What the fuck do I do?
7 posts and 1 images submitted.
>>
>>355557

I don't think Windows Steam as a full DRM system can be run under PlayOnLinux. That is difficult for games themselves- but another layer on top of that needing Windows functions? Prone to crash.
But you know Steam has a full on Linux version too, right? Just install that one.
>>
>>355557
Open terminal and paste this
LD_PRELOAD='/usr/$LIB/libstdc++.so.6' DISPLAY=:0 steam
>>
>>355573
want to install skyrim

can someone please turn this into a PC wallpaper with an image size of 1920 x 1080?
6 posts and 2 images submitted.
>>
File: gjfc.jpg (455KB, 1920x1080px) Image search: [Google]
gjfc.jpg
455KB, 1920x1080px
Here ya go
>>
>>355660
What did you do to prevent the image from being distorted?
>>
>>355709
If you look, the outside edges of the image are distorted; he progressively stretched everything left and right of Starlord, while leaving the character unaltered.

File: HulkBurgerPOSTERdraft02.png (2MB, 900x1350px) Image search: [Google]
HulkBurgerPOSTERdraft02.png
2MB, 900x1350px
Hey internet. Ive been asked by a friend of mine to design and come up with a poster for his new burger eating challenge at his diner. The thing is, im not as good as i thought i was. Ive never used photoshop before, I grew up with a similar alternative called Paint Shop Pro, which i think is kinda limited to what all the bigger boys use. So I'm asking if there is anyone out there who could come up with something for me? I'll post a few bits and pieces that I was planning on using, just so you can get an idea as to what I was going for.
The food challenge is called 'The Hulk Beastly Burger Challenge' .. it costs £14.95 and you must finish it in 30 minutes or less. It needs to be portrait and A3 in size.. PLEASE HELP!
10 posts and 7 images submitted.
>>
File: BurgerFLOAT.png (2MB, 1019x1475px) Image search: [Google]
BurgerFLOAT.png
2MB, 1019x1475px
>>
File: sun_burst_texture.jpg (185KB, 900x600px) Image search: [Google]
sun_burst_texture.jpg
185KB, 900x600px
>>
File: HulkBurgerPOSTERdraft01.png (998KB, 980x1400px) Image search: [Google]
HulkBurgerPOSTERdraft01.png
998KB, 980x1400px

File: Screenshot_20170729-213045.png (458KB, 720x599px) Image search: [Google]
Screenshot_20170729-213045.png
458KB, 720x599px
Can someone make a fanfic with Summer Rae (WWE) where you use this pic?
7 posts and 2 images submitted.
>>
File: 1501434864461.png (424KB, 720x599px) Image search: [Google]
1501434864461.png
424KB, 720x599px
>>
>>355516
Summer Rae bodily picked up the unnamed lingerie model and slammed her into the bed, face down. Disdainfully she pushed the continental quilt cover up to the model's lower back with one toe, sneering ".. and that's what you get for trying to steal my endorsements."

the end.
>>
>>355525
>>355556
That was unexpected xD

File: woman_beauty.jpg (41KB, 500x667px) Image search: [Google]
woman_beauty.jpg
41KB, 500x667px
http://i.4cdn.org/wsg/1501302031546.webm

please, what's the music name?
7 posts and 2 images submitted.
>>
File: 4653826437.png (5KB, 213x237px) Image search: [Google]
4653826437.png
5KB, 213x237px
Holy shit it was difficult to find, did an image search and linked me to a shitload of russian imageboard sites, and have to translate it.

https://www.youtube.com/watch?v=-9EncFmX9F4
>>
dem fucking kikes
>>
>>355497
it's been 13 hours and you haven't gotten a thank you from OP. I listened to the song and don't care for it but I want to thank you anyways just for putting effort in helping others.

File: gru.jpg (200KB, 824x934px) Image search: [Google]
gru.jpg
200KB, 824x934px
I'm thinking of taking some awareness / concentration tablets... Has anyone got any recommendations from their own personal usage?

I've been looking at Mind Lab Pro... They seem to get quite a good write up and people that have taken them themselves seem to swear by them.

Thoughts?
8 posts and 1 images submitted.
>>
Bumping for advice
>>
>>355436
People tend to react differently to afinil products. It's not yet clear why it is so. It has Not been published by actual Independent medical research yet. They are apparently better though than the classic stay-awake drug palette with lesser physical withdrawal symptoms.
>>
>>355456
So, in essence, would you recommend the Mind Lab Pro stuff?

File: IMG_0657.jpg (36KB, 396x385px) Image search: [Google]
IMG_0657.jpg
36KB, 396x385px
Is Boku no Hero Academia appropriate to watch with a bunch of 8-year-olds.

No spoilers please. Pic unrelated.
7 posts and 5 images submitted.
>>
>>355399

Forgot to add that they're okay with violence and stuff. It's the fanservice that puts it on the fence.
>>
http://www.imdb.com/title/tt5626028/parentalguide
>>
File: IMG_1766.jpg (40KB, 480x480px)
IMG_1766.jpg
40KB, 480x480px
>>355403

Thanks a bunch!

File: african.png (174KB, 491x426px) Image search: [Google]
african.png
174KB, 491x426px
What is this language? and what it supposed to means?
6 posts and 2 images submitted.
>>
So it isn't a stylized "stool"?
>>
>>355378
Where did you find that? I mean to me it just looks like meaningless graffiti.
>>355386
Also that would have been my guess.
>>
>>355378
So it's not eTool either?

Pages: [First page] [Previous page] [287] [288] [289] [290] [291] [292] [293] [294] [295] [296] [297] [298] [299] [300] [301] [302] [303] [304] [305] [306] [307] [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.