[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 - 636. 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: John-Cena-Shock-to-Smile.gif (1006KB, 260x187px) Image search: [Google]
John-Cena-Shock-to-Smile.gif
1006KB, 260x187px
Anybody got this, but in reverse?
6 posts and 4 images submitted.
>>
File: image.gif (1006KB, 260x187px) Image search: [Google]
image.gif
1006KB, 260x187px
>on gimp -> layer -> stack -> reverse layer order -> file -> export to image.gif
here you go
>>
>>299068
Thank you!
>>
>>299068
Not everyone can afford those programs retard

File: ORIGINAL.jpg (350KB, 667x600px) Image search: [Google]
ORIGINAL.jpg
350KB, 667x600px
Hi!

To the left you can see a photo which I've posted and I'd like any volunteers to help me out with this project I have. The thing is, I'm not much of a Photoshop expert and that's why I would like you guys to try and recreate this picture as realistically as possible. It should look as if I took the picture irl, so that there are no doubts. You can do it in any way you like, just so it looks like the same thing. I'd like the picture to be something between "plagiarism" and "inspired by", although it should definitely look like a photograph.

Thanks in advance! If you're done just post the picture down below, and thanks!
6 posts and 3 images submitted.
>>
File: keen observer.jpg (12KB, 417x144px) Image search: [Google]
keen observer.jpg
12KB, 417x144px
>>298991
>To the left you can see a photo which I've posted
>>
>>298991
do your own shitty over involved project
>>
wasnt this a board for normies?

File: blue_hair.jpg (117KB, 1280x720px) Image search: [Google]
blue_hair.jpg
117KB, 1280x720px
What anime and is it worth watching?
6 posts and 1 images submitted.
>>
>>298932

That's Sasamiya Saya from Asterisk War. You could've easily gotten this information from Google, Saucenao, or Whatanime.ga. Use those in the future, they're all very useful.


On to whether it's worth watching, most people seem to shit on it (haven't seen it myself), but watching an anime for one cute character or some other shallow reason is what it means to be human. So go for it, anon.
>>
>>298940
I uses reverse image search and got 0 results.
But thanks anyways
>>
>>298932
It's shit.

File: 1488573919822.jpg (369KB, 1237x1019px) Image search: [Google]
1488573919822.jpg
369KB, 1237x1019px
more crying/sad cats like this?
5 posts and 5 images submitted.
>>
File: 1490356720274.png (466KB, 655x675px) Image search: [Google]
1490356720274.png
466KB, 655x675px
2/?
>>
File: 1490469319171.jpg (60KB, 1014x1024px) Image search: [Google]
1490469319171.jpg
60KB, 1014x1024px
3/5
>>
File: 1491038800865.jpg (34KB, 370x699px) Image search: [Google]
1491038800865.jpg
34KB, 370x699px
4/5

File: 1492443489673.jpg (38KB, 540x540px) Image search: [Google]
1492443489673.jpg
38KB, 540x540px
Can somebody make, or if one already exists post it, a "triggering intensifies" gif from this image?
7 posts and 5 images submitted.
>>
File: 1492444136313.gif (325KB, 540x540px) Image search: [Google]
1492444136313.gif
325KB, 540x540px
>>298870
i need more input for what you need
>>
File: 1488421984927.gif (430KB, 500x538px) Image search: [Google]
1488421984927.gif
430KB, 500x538px
>>298877
Something like this
>>
>>298881
Text in brackets, [triggering intensifies], similar font and effect.

Really need some help with homework I have for college, regarding Java programming.
Won't waste time with a long explanation but in short I am retarded and after near 100 hours of studying the course material, going on sites like Stackoverflow and Youtube and even Udemy etc I am still stuck and have a blank paper. It's due in a week from now. Pretty sure I am autistic or just severely low IQ at this point, it isn't due to a lack of trying.

ANY help would be appreciated.

In short the first set of questions are asking:
- Class X exists as blank class. Make "private instance variable" called "abc" (within class X) which is able to reference a map where the key are string and the values are from Class Y.
My answer for this so far is below, is this correct?:
public class X
{
private String abc;

Map<String, Y> y = new HashMap<>();
}

... because question 2 then says....
- Create a constructor so "abc" has an empty map object when new instance of X is created.
Now I have no idea what this means as I think I just declared it up there? But my shot at it is:
public X()
{
Map<String, Y> abc = new HashMap<>();
}

... But I am sure it can't have 2 of the same lines of code can it?

I'm too confused. Please help. I will probably add more questions but right now just stuck on the first.....
8 posts and 1 images submitted.
>>
>>298745
Today I learned that you can initialise fields outside of the constructor in Java and the compiler will quietly hoist the initialisation into it.

OP, what you're doing is valid Java, but it's not idiomatic and that's why the question is confusing you.

What the question is expecting you to do is

class blah{
Object foo;
public blah() {foo = new Object();}
}

The specific problem you're getting in your second part is called "shadowing". Your declaration is getting hoisted into the constructor, but then because you're declaring the variable in the constructor instead of referencing it, you get a local variable with the same name and that name has priority, effectively "overwriting" it; if you write

class blah{
Object foo = new foo();
public blah() {/**/Object foo = new Object();/**/}}

You actually get

class blah{
Object foo;
public blah() {
self.foo = new foo(); // hoisted from declaration
Object foo = new foo(); // local variable, not the same as self.foo, will get GCed when leaving constructor's scope
}}

And you don't get an error about foo not being initialised because it is being initialised just not by the bit you think is doing it.

If you don't want shadowing (and you almost certainly don't), you need to use "foo = new foo();" in the constructor, not "Object foo=new foo();". Removing "Object" means you're not creating a new name in the namespace, so the compiler won't find foo in the local namespace, and the next place it will look is self.foo, which is what you want.
>>
>>298768
Thank you for your reply, I understand what you're saying

Do you know anything about HashMaps? The next issue is I don't understand about implementing or having the key and values in HashMaps being able to be called on if there's more than one value within the value

For example now you have the list:
1. Apple, banana
2. Carrot, dill
3. Egg, frog

But the values are under a class called "alphabet" and the key are the integers? If alphabet is made up for 2 variables called "pairOne" and "pairTwo"?

If you specify within the HashMap to have the key as value integer but then the value as the class alphabet then.. how does this magic occur that pairOne and pairTwo are able to be within the HashMap?

Does that make sense...
>>
>>298869
>how does this magic occur that pairOne and pairTwo are able to be within the HashMap?
The only way to access objects* in Java is through a pointer. So the actual objects are somewhere in the heap, and the only thing that's in the Map is pointers to them.

* everything in java that's not a boolean, char, byte/short/int/long or float/double is an object. This includes arrays.

>Does that make sense...
Not really. Could you post the assignment?

I smoke too much, so I've decided to get an e-cigarette or vape kit or whatever they're called to wean myself off tobacco. Thing is, I don't want to buy one only to find it's a shoddy Chinese-made death-trap that'll explode in my face. Anyone know a good brand to check out? I like the look of the chunky square ones...
6 posts and 4 images submitted.
>>
File: image.jpg (48KB, 800x800px) Image search: [Google]
image.jpg
48KB, 800x800px
>>298731
Dude, just get one of the dollar-store ones that are one-use versions of the reusable ones.

If it turns out that that's the thing for you, the batteries, chargers, coils, etc. etc. are all interchangeable. Plus the "disposable" batteries are actually rechargable, you just need hold the button down with something and put it in a charger.
>>
>>298731
The "chunky square ones" are $100-$200; they're not really intended for someone who's going to use it for a short time as a cessation aid.
>>
>>298733
Ah yeah, but no, see - the cheap Chinese explody thing? I'm thinking to splash out or not bother.

>>298734
Point taken, but I've been smoking more than a pack a day for some 15 years: I don't think I'll be using it as a cessation aid for a short time only. Plus I got cash saved up, I'm willing to go for a fancy one.

File: Pls help.jpg (355KB, 1848x1200px) Image search: [Google]
Pls help.jpg
355KB, 1848x1200px
Okay /wsr/ I need help, I'm completely inept when it comes to editing pictures so I need R63 Pinochet and just her only put onto the right side of the flag. If anyone could do this it'd be greatly appreciated, honestly I didn't know whether to ask on /r/ or here so I'm just going to take a shot in the dark with this one, thanks guys.
9 posts and 6 images submitted.
>>
bump for op lol

https://www.youtube.com/watch?v=f_5FkCs6n_A
>>
>>298640
Can you post a picture of just the flag?
>>
File: Chile Helicopter Flag.jpg (12KB, 960x640px) Image search: [Google]
Chile Helicopter Flag.jpg
12KB, 960x640px
>>298676
Sorry for the delay, my computer was being retarded then the captcha was doing some endless loading bullshit

File: 1390128084512.jpg (73KB, 818x523px) Image search: [Google]
1390128084512.jpg
73KB, 818x523px
I just recently built a pc for myself by myself, since I want to use my own computer instead of using someone else's. Only problem is, it won't post, boot, beep, etc. and I've googled every possible solution but I just can't find it.
I've read the manual and everything, I tried to jump it but it still won't post.

Specs:
2TB HDD WD Green
AMD A-10 Kaveri APU Quad Core
8GB Ballistix DDR3 RAM (2x4GB)
Gigabyte F2A88X-D3HP MOBO

I can't give a picture since I have no camera right now, but I really need help with this.
Please help
6 posts and 1 images submitted.
>>
any help is appreciated
>>
self bump because of incompetence
>>
>>298623
You really need to get a picture, otherwise all we can give you is the usual

"is the CPU power connector in?"
and
"you didn't forget the motherboard standoffs did you?"
and
"have you tried booting just the motherboard, CPU and RAM?"

questions that everyone gets.

File: statik2.jpg (53KB, 1040x780px) Image search: [Google]
statik2.jpg
53KB, 1040x780px
hello r/,

i am in need of brilliant civil, mechanical or mechatronics engineers. My class did really bad at mid terms. Our professor wrote this question on the board and told whoever solves this question will get 10 points in final exam but i can't solve this question. Can someone help me?
7 posts and 3 images submitted.
>>
File: pathetic.jpg (62KB, 1002x719px) Image search: [Google]
pathetic.jpg
62KB, 1002x719px
>>298487
>brilliant
kek. Pathetic.
I'll help you in the hope that someday you screw up in a magnific way, appear on the news because of your fuck up, and give me some entertainment.
I'm counting on you.
>>
>>298508
anon but the upper right joint has 2,5 kN force. You wrote 0,35 there.

and i will most likely do screw up. If i do please contact me and i will show you how to be a hero in skype.
>>
File: picture.png (175KB, 1694x800px) Image search: [Google]
picture.png
175KB, 1694x800px
>>298487

File: header-spock-death.jpg (197KB, 1100x800px) Image search: [Google]
header-spock-death.jpg
197KB, 1100x800px
Hello,
I am looking for a HD version of this photo that I can use as a backdrop for a friend who has passed away. He was a huge Star Trek fan and I want to use this same design and put his photo in it. Along with the right Stardate.

Thank you
5 posts and 2 images submitted.
>>
Can anyone help me?
>>
>>298398
I'm working on one right now for you.
Should be done soon.
>>
File: Template.png (316KB, 1000x1000px) Image search: [Google]
Template.png
316KB, 1000x1000px
>>298398
Here you go.
I couldn't salvage the original picture, so I tried to remake it.
I hope this helps, sorry to hear what happened.

File: gimps.jpg (41KB, 960x540px) Image search: [Google]
gimps.jpg
41KB, 960x540px
Alright 4chan time for the wizards to help me out. I have been checking mine, my friend#'s and my girlfriends laptops out, turns out each of them are running a newer version of windows such as 8.1 and I believe 10 (?). Upon checking the task manager though it seems that each laptop has a 100% disk usage and no matter what I have done (aye i've googled it and so on) nothing changes for the usage, it's frying my brain.

Any help?
6 posts and 1 images submitted.
>>
>>298393
Leave it on a couple of hours. There's all kinds of search-indexing, update-checking, .NET manifest-building, and miscellaneous shit Vista-and-later needs to do, and if the computer is never on, none of it ever gets finished, so it just starts again every time you turn the computer on.

Failing that, there's the startup tab of task manager, which has a "startup impact" column (it's usually Dropbox's fault), and there's also Performance Monitor if you're a bit more technically-inclined.
>>
>>298396
Sorry I should have said the laptops aren't like new, I think I have managed to fix the current one I am using my updating the page size, but when I tried this for hers it didn't work. Its frustrating me that it can't seem to fix it.
>>
search indexer and/or windows update are probably the culprits
stop each of those services
>net stop wsearch
>net stop wuauserv
respectively, and see how disk utilization changes. if that bother you that much (at least the search indexer should not impact performance since it should only "do-its-thing" once the machine is idle for a while) you can disable them on
>services.msc
(windows + r)

gl

File: unnamed.png (19KB, 300x300px) Image search: [Google]
unnamed.png
19KB, 300x300px
Hi there! Was hoping for a little help with C. I'm simply trying to return managerTotal, hourlyTotal, commissionTotal and pieceworkerTotal to the totalOutput function. I need to keep the same function structure (you'll notice the functions that hold the floats are called through choiceInput which is called from choosePayroll etc etc). Any ideas?
Here is the code:
#include<stdio.h>
#include<conio.h>

void totalOutput(float *managerTotal, float *hourlyTotal, float
*commissionTotal, float *pieceworkerTotal) {
printf("Manager total is: $%.2f", managerTotal);
printf("Hourly total is: $%.2f", hourlyTotal);
printf("Commission total is: $%.2f", commissionTotal);
printf("Pieceworker total is: $%.2f", pieceworkerTotal);
}

float managerIntro() {
float managerTotal = 1; // trying to pass this through to the totaloutput function
return managerTotal;
}

float hourlyIntro() {
float hourlyTotal = 2; // trying to pass this through to the totaloutput function
return hourlyTotal;
}

float commissionIntro() { // trying to pass this through to the totaloutput function
float commissionTotal = 3;
return commissionTotal;
}

float pieceworkerIntro() { // trying to pass this through to the totaloutput function
float pieceworkerTotal = 4;
return pieceworkerTotal;
}

float choiceInput() {
float a = managerIntro();
float b = hourlyIntro();
float c = commissionIntro();
float d = pieceworkerIntro();
totalOutput(float a,float b,float c,float d);
}

void choosePayroll(){
choiceInput();
}

int main() {
choosePayroll();
getchar();
return 0;
}
9 posts and 1 images submitted.
>>
(float *managerTotal, float *hourlyTotal, float
*commissionTotal, float *pieceworkerTotal)

Are pointers , so:
totalOutput(&a,&b,&c,&d);

or remove * from totalOutput function declaration
>>
>>298299
That absolutely worked on the stripped down code, thank you for that. Any ideas why it's not working here?

Long code:
https://pastebin.com/iKCDLDd1
>>
>>298302
>https://pastebin.com/iKCDLDd1
Add float choiceInput(); below the includes,
The function was not defined in your case because it was below the function that used it so the compiler did not find its definition in the context of the code that was currently processed

File: Screenshot_2016-12-25-15-17-05.png (522KB, 720x1280px) Image search: [Google]
Screenshot_2016-12-25-15-17-05.png
522KB, 720x1280px
Im planning on making a gaming computer. I only have a i7 core processor. Anyone whos good with computers reccomend me parts?
10 posts and 1 images submitted.
>>
>>298280
For graphics cards, look up performance/price ratio charts and buy something in your price range. Make sure it's compatible with your processor.
For motherboards, make sure it works with your processor. Outside of that it should be chill.
For RAM, get 8GB (or 16GB if you wanna have more shit open at once). Motherboards come with two slots for ram by default, so get 2x4GB or 2x8GB based on your choice.
For a PSU, calculate the combined wattage requirements of all these parts (there's tools online or something), then buy a PSU that provides at least that much power, if not more for security.
>>
>>298282
and read product reviews, then you're good.
>>
>a i7 core processor
which model? because its important to chose the proper socket. also, just because it says i7 in the name does not mean its a good one

File: tx_6HDYtOJgpd7pdEteI2ff.gif (3KB, 48x48px) Image search: [Google]
tx_6HDYtOJgpd7pdEteI2ff.gif
3KB, 48x48px
I'm a newbie translator + typesetter and where the heck do I upload the manga I scanlated?
6 posts and 1 images submitted.
>>
>>298250
Probably best to ask over at >>>/a/155900239
>>
>>298250
Make a thread on /a/ and dump your chapters. Someone will collect them and post them in the appropriate places.

Or up then to mega
>>
>>298250
Make a blog famdawg!

Pages: [First page] [Previous page] [626] [627] [628] [629] [630] [631] [632] [633] [634] [635] [636] [637] [638] [639] [640] [641] [642] [643] [644] [645] [646] [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.