[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 - 1244. 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: nationalist and socialist europe.png (159KB, 1280x1080px) Image search: [Google]
nationalist and socialist europe.png
159KB, 1280x1080px
Please replace Spain's flag with the one I'll display next
6 posts and 5 images submitted.
>>
File: Traditio Spain.png (866KB, 1600x1131px) Image search: [Google]
Traditio Spain.png
866KB, 1600x1131px
>>
File: FegFlags.jpg (592KB, 1280x1080px) Image search: [Google]
FegFlags.jpg
592KB, 1280x1080px
Here mate
>>
File: ses pacha.png (43KB, 769x594px) Image search: [Google]
ses pacha.png
43KB, 769x594px
>>148061
What program did you use anyway?

File: Music_Search-512[1].png (28KB, 512x512px) Image search: [Google]
Music_Search-512[1].png
28KB, 512x512px
Hello /wsr/ I'm looking for the track name in this video: https://www.youtube.com/watch?v=hjG5FD9NnkU

Help me, I'm desperate to know the song name.
11 posts and 1 images submitted.
>>
>>148050
bump
>>
I clicked the link, assuming you're talking about the musical piece at the very beginning. Listened to it for a couple seconds and can't even begin to figure how to track down what it is. Might even be from a video game.
>>
>>148054
fug... It must be real. I've been looking for it for AGES now.

File: BT.png (91KB, 1366x704px) Image search: [Google]
BT.png
91KB, 1366x704px
I can't resize the lower window and I can't see what I'm downloading. Any tips?
7 posts and 2 images submitted.
>>
You restart your computer lately? restart the program?

Does your cursor ever show up inside t hat window?
>>
>can't resize the lower window
you can't do it that way

>can't see what I'm downloading
that prog is screwed up in that you need to scroll to the right to see the up/down scroller.
>>
>>148031
>you can't do it that way
That's how I enlarged it, but now I can't see the icon for that anymore.
Scrolling to the right does not work, see pic related

File: 1410017429350.jpg (93KB, 630x566px) Image search: [Google]
1410017429350.jpg
93KB, 630x566px
Bros, I am in desperate time. I need help with OpenGL project (Mini Solar system) Visual Studio under Windows. I have the whole file and it works (renders Sun, Earth and Moon), but it should generate all planets with colors. Can some bro validate the code and tell what to do or change?
Would be really grateful!
9 posts and 1 images submitted.
>>
#define GLUT_DISABLE_ATEXIT_HACK
#include <cstdlib>
#include <iostream>
#include <GL/glut.h>
#include <GL/gl.h>
#include <GL/glu.h>
#include <time.h>
#include <windows.h>
#include <vector>
#include <algorithm>
#include <GL/glxew.h>
#include <GL/wglew.h>


GLPFrame frameCamera;

enum
{

PERSP,
EXIT
};

GLint rzut = PERSP;
GLfloat alfa1 = 0.0f;
GLfloat alfa2 = 0.0f;
GLfloat alfa3 = 0.0f;
GLfloat alfa4 = 0.0f;
GLfloat alfa5 = 0.0f;
GLfloat alfa6 = 0.0f;
GLfloat alfa7 = 0.0f;
GLfloat alfa8 = 0.0f;
float angle1 = 0.0f;
float angle2 = 0.0f;
float angle3 = 0.0f;
float angle4 = 0.0f;
float angle5 = 0.0f;
float angle6 = 0.0f;
float angle7 = 0.0f;
float angle8 = 0.0f;
GLfloat xx = 0.0f;
GLfloat yy = 0.0f;
GLfloat zz = 0.0f;
GLdouble fory = 90;
int iCull = 0;
int iOutline = 0;
int iDepth = 0;
void Ustawienia()
{
glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
glShadeModel(GL_SMOOTH);
glFrontFace(GL_CW);
glpInitFrame(&frameCamera);
glpMoveFrameForward(&frameCamera, -80);
glpMoveFrameUp(&frameCamera, 5);
}
void Wyjscie()
{
}
void Podloga()
{
GLfloat Rozmiar = 100.0f;
GLfloat KW_x;
GLfloat KW_z;
GLfloat Rozm_kwad = 2.0f;
bool flaga = 0;
for (KW_x = -Rozmiar; KW_x <= Rozmiar; KW_x += Rozm_kwad)
{
/**/
for (KW_z = -Rozmiar; KW_z <= Rozmiar; KW_z += Rozm_kwad)
{
if (flaga == 0)
{
glColor3f(0.8f, 0.1f, 0.1f);
flaga = 1;
}
else
{
glColor3f(0.1f, 0.1f, 0.8f);
flaga = 0;
}
glBegin(GL_QUADS);
glNormal3f(0.0f, 1.0f, 0.0f);
glVertex3f(KW_x, 0.0f, KW_z);
glVertex3f(KW_x, 0.0f, KW_z + Rozm_kwad);
glVertex3f(KW_x + Rozm_kwad, 0.0f, KW_z + Rozm_kwad);
glVertex3f(KW_x + Rozm_kwad, 0.0f, KW_z);
glEnd();
}
}
}
>>
void Rys_aktorow(GLint czy_cien)
{
float x1 = 0;
float y1 = 0;
float z1 = 0;
float x2 = 0;
float y2 = 0;
float z2 = 0;
float x3 = 0;
float y3 = 0;
float z3 = 0;
float x4 = 0;
float y4 = 0;
float z4 = 0;
float z5 = 0;
float z6 = 0;


alfa1 += 1.0;
alfa2 += 1.0;
alfa3 += 1.0;
alfa4 += 1.0;
alfa5 += 1.0;
alfa6 += 1.0;
alfa7 += 1.0;
alfa8 += 1.0;

//ziemia
angle1 += 0.02f;

//mars
angle3 += 0.03f;

//Jowisz
angle4 += 0.04f;
//księżyc

//Neptun
angle5 += 0.05f;

//Saturn
angle6 += 0.06f;

//Uran
angle6 += 0.06f;

//Pluton
angle6 += 0.06f;

//księżyc
angle2 += 0.1f;
if (angle2 >= (2.0f*3.14159f)*1.0f)
angle2 = 0.0f;

/*glColor3f(1.0,0.0,0.0);
glPushMatrix();
glRotatef(alfa1,1.0f,0.0f,0.0f);
glRotatef(alfa2,0.0f,1.0f,0.0f);
glutSolidCube(15.0f);
glPopMatrix();

glPushMatrix();
glTranslatef(xx,yy,zz);
glColor3f(0.0f,0.0f,1.0f);
glutSolidSphere(10.0f,20,20);
glPopMatrix();*/
>>
//glPushMatrix();
//słońce
glPushMatrix();
glRotatef(alfa1, 1.0f, 0.0f, 0.0f);
//kolor kuli
glColor3f(1.0f, 1.0f, 0.0f);
glutWireSphere(20.0f, 20, 20);
glPopMatrix();

glPushMatrix();
//orbita ziemi
glRotatef(-30, 0, 1, 1);
glPushMatrix();
glColor3f(0, 0, 1);
for (float angle = 0.0f; angle <= (2.0f*3.14159f)*1.0f; angle += 0.001f)
{
glBegin(GL_POINTS);
x1 = 50.0f*sin(angle);
z1 = 50.0f*cos(angle);
glVertex3f(x1, y1, z1);
glEnd();
}
glPopMatrix();

//ziemia
glPushMatrix();
x1 = 50.0f*sin(angle1);
z1 = 50.0f*cos(angle1);
glTranslatef(x1, y1, z1);
glRotatef(alfa2, x1, y1, z1);
glutWireSphere(3.0f, 20, 20);
glPopMatrix();
//glPopMatrix();
//księżyc
glColor3f(1.0f, 1.0f, 1.0f);
glPushMatrix();
glTranslatef(x1, y1, z1);
y2 = 5.0f*sin(angle2);
z2 = 5.0f*cos(angle2);
glTranslatef(x2, y2, z2);
glutWireSphere(0.4f, 20, 20);
glPopMatrix();
glPopMatrix();

glPushMatrix();
//orbita marsa
glRotatef(-50, 0, 1, 2);
glPushMatrix();
glColor3f(0, 0, 1);
for (float angle = 0.0f; angle <= (2.0f*3.14159f)*1.0f; angle += 0.001f)
{
glBegin(GL_POINTS);
x1 = 50.0f*sin(angle);
z1 = 50.0f*cos(angle);
glVertex3f(x1, y1, z1);
glEnd();
}
glPopMatrix();

//mars
glColor3f(1.0f, 0.0f, 0.0f);
glPushMatrix();
x1 = 50.0f*sin(angle3);
z1 = 50.0f*cos(angle3);
glTranslatef(x1, y1, z1);
glRotatef(alfa3, x1, y1, z1);
glutWireSphere(5.0f, 20, 20);
glPopMatrix();
glPopMatrix();

glPushMatrix();
//orbita Jowisz
glRotatef(70, 0, 1, 4);
glPushMatrix();
glColor3f(0, 0, 1);
for (float angle = 0.0f; angle <= (2.0f*3.14159f)*1.0f; angle += 0.001f)
{
glBegin(GL_POINTS);
x1 = 50.0f*sin(angle);
z1 = 50.0f*cos(angle);
glVertex3f(x1, y1, z1);
glEnd();
}
glPopMatrix();

File: msi gtx960.png (244KB, 600x480px) Image search: [Google]
msi gtx960.png
244KB, 600x480px
Hello everyone.
Today the MSI GTX 960 4GB I ordered came in. However, it has a 8 pin 'port' (I apologize if the term is incorrect), and my PSU doesn't have an 8 pin cable, it has instead two 6 pin cables.
The card comes with a 6 pin to 8 pin adapter, and the manual says to 'connect 6/8-pin power connectors' which I found a bit confusing.
Is it safe to connect one of the 6-pin connectors of my PSU to the adapter in order to power the GPU ?
Here is an album with pictures of the connector and port: http://imgur.com/a/Xuebr
7 posts and 1 images submitted.
>>
Is it overclocked?. According to this http://www.tomshardware.com/answers/id-2499016/pin-connector-evga-nvidia-gtx-960-pin-slot.html thread people say you will need a new PSU because it might not provide enough power.
>>
>>148013
I see.
Then I don't understand why they'd include a 6 to 8 pin adapter with the gpu though
>>
>>148027

Well, I suppose there is in certain instances that adapter would work perfectly fine, like depending on what wattage PSU you have and how much stuff you are running on your computer drawing power.

What PSu do you have? specs?

File: Social Justice Warrior.jpg (57KB, 400x261px) Image search: [Google]
Social Justice Warrior.jpg
57KB, 400x261px
Would someone with photoshop skills please edit this Gibbering Mouther to make it a Feminist Gibbering Mouther?
7 posts and 5 images submitted.
>>
So...you're looking for what to be done to it? Seems like an accurate representation already.
>>
File: 1467106823490_1.jpg (347KB, 965x949px) Image search: [Google]
1467106823490_1.jpg
347KB, 965x949px
>>
File: 1467108507807.jpg (46KB, 774x229px) Image search: [Google]
1467108507807.jpg
46KB, 774x229px

Could someone, please, write in a somewhat golden elvish way "The Lord of the Thesis" on the inside (or the outside if it is better) of the ring?
6 posts and 6 images submitted.
>>
File: 1467135017972_patched.jpg (245KB, 1280x853px) Image search: [Google]
1467135017972_patched.jpg
245KB, 1280x853px
>>147988
You probably did not mean something like this?
It would not be that much problem to paint it in golden, but it is a big problem to unpaint the existing letters while keeping reflection of the game-board...
Would you have another image of the ring without pre-existing letters?
Or unpainting the inner side would be easier, the reflection is not much sharp...

(Also I forgot the 2nd "the"... it is a mid-version anyway)
>>
File: gn n.jpg (446KB, 1280x853px) Image search: [Google]
gn n.jpg
446KB, 1280x853px
>>148002
That, I already did. I just don't understand how to curve the letters
>>
File: asdad.jpg (496KB, 1280x853px) Image search: [Google]
asdad.jpg
496KB, 1280x853px
>>148005
OP here, I figured something out and am calling it a day.

File: gerald.jpg (20KB, 409x352px) Image search: [Google]
gerald.jpg
20KB, 409x352px
Can someone please make a memeified version of this picture of Gerald
4 posts and 2 images submitted.
>>
cmon yall
>>
File: 1467132092731.jpg (24KB, 409x352px) Image search: [Google]
1467132092731.jpg
24KB, 409x352px
There you go. No need to thank me. :)
>>
>>148187
8/8

File: 1458139795689.gif (2MB, 600x335px) Image search: [Google]
1458139795689.gif
2MB, 600x335px
Can anyone recommend anime where bullying is a prominent theme? Like WIXOSS or Black Rock Shooter.
8 posts and 2 images submitted.
>>
Kotoura-san
>>
>>147973
prison school, great teacher onizuka, haruhi and ranbow.
>>
Kumamiko

File: image.png (140KB, 420x420px) Image search: [Google]
image.png
140KB, 420x420px
I remember seeing this horror movie some number of years ago. It took place in this house in the middle of a snowstorm, and there were evil ghosts that lurked in the darkness. I remember that the climax of the move was when one of the characters fought through the blizzard to access the circuit breaker on the outside of the building so he could restore power, and therefore, the lights.

Any horror fans have a clue what this was? Has to have come out at least 3-4 years ago, if not more.

Pic unrelated.
7 posts and 3 images submitted.
>>
>>147951
Hi there!

You seem to have made a bit of a mistake in your post. Luckily, the users of 4chan are always willing to help you clear this problem right up! You appear to have used a tripcode when posting, but your identity has nothing at all to do with the conversation! Whoops! You should always remember to stop using your tripcode when the thread it was used for is gone, unless another one is started! Posting with a tripcode when it isn't necessary is poor form. You should always try to post anonymously, unless your identity is absolutely vital to the post that you're making!

Now, there's no need to thank me - I'm just doing my bit to help you get used to the anonymous image-board culture!
>>
File: image.jpg (287KB, 940x914px) Image search: [Google]
image.jpg
287KB, 940x914px
>>147965
>Now, there's no need to thank me - I'm just doing my bit to help you get used to the anonymous image-board culture!
HAHAHAHAH, no seriously, fuck off.
>>
>>147965
>Posting copypasta that was only relevant back in 2009-2011/maybe 2012
Once you've been here for a few years you stop noticing whatever is written in the name field.

File: 1466546472357.jpg (14KB, 320x240px) Image search: [Google]
1466546472357.jpg
14KB, 320x240px
Hey, /wsr/. I've been trying to build a Gaming/School PC and I was wondering if my build is any good or not. Not exactly the most experienced on PC's and what not.

http://pcpartpicker.com/list/KRbyf8

Feel free to tell me how shit it is or not.
7 posts and 2 images submitted.
>>
Looks really good all around.
>>
>>147914
Do you really need I7 6700k?

Get better GPU, mouse & keyboard.
>>
>>147916
Hmm. Any suggestions?

File: 1456573522091.png (889KB, 756x715px) Image search: [Google]
1456573522091.png
889KB, 756x715px
Where can I download anime English subtitles (by themselves)?

I want to attach them to anime dubs of another language I'm learning. I can't find them by their own...
6 posts and 1 images submitted.
>>
>>147902
1) Just download the whole thing and mkvextract the subtitles
2) The subtitles you get will be a translation of the Japanese original, not the whateverese dub
3) if you think 2) won't be a problem, you clearly haven't learned a language yet
>>
http://kitsunekko.net/dirlist.php?dir=subtitles%2Fjapanese%2F

Doesn't have all series, but it has a lot. Enjoy.

>>147911

What are you trying to communicate?
>>
>>147932
He's saying that the Japanese => English and Japanese => whatever other language he's learning won't be a viable method for learning English => other language.

File: rory.png (632KB, 1600x1819px) Image search: [Google]
rory.png
632KB, 1600x1819px
Trying to increase the size of the picture rather drastically. I want to know if theres a program where I can do it rather cleanly. I want it large as possible Im going to print the image onto a tapestry the size of 200cmx150cm so id want to stretch it to like 185 cm tall. Can i do it without destroying quality or am i out of luck
6 posts and 1 images submitted.
>>
>>147888
Waifu2x.
>>
Best way to do it is to transform to scalable vector, then you can upsacle it almost as much as you want.
>>
>>147900
Pretty noob, but im looking it up because i havnt heard of vector before. Im finding xml/svg, do you recommend a certain program to create svg images? Or can I just simply turn this image into svg format I found this website http://image.online-convert.com/convert-to-svg claiming it can do that, does that work? If it does i can just open it with a svg compatible program and upscale it to the large image im looking for?

File: june7.png (1002KB, 986x844px) Image search: [Google]
june7.png
1002KB, 986x844px
Go wild and photoshop me in wild/strange/epic situations.

Put me dancing in a jewish wedding, fighting bears or whatever you find suitable.
Just keep it work safe.
5 posts and 5 images submitted.
>>
File: tmp_29115-1771825394.jpg (78KB, 640x318px) Image search: [Google]
tmp_29115-1771825394.jpg
78KB, 640x318px
>>147885
>>
File: tmp_28019--807831240.jpg (1MB, 1200x800px) Image search: [Google]
tmp_28019--807831240.jpg
1MB, 1200x800px
>>
File: superhappyfuntime.png (1MB, 986x844px) Image search: [Google]
superhappyfuntime.png
1MB, 986x844px
>>147885

File: .1.jpg (169KB, 457x381px) Image search: [Google]
.1.jpg
169KB, 457x381px
Now that most LNs are getting licensed how do you pirate your chinese books?
Everything gets taken down from baka Tsuki, most blogs say shit like "Support the official translations!" and delete all their shit.

I just want to read chinese books, man.

I already checked nyaa and bakabt. Hell even TPB.
4 posts and 1 images submitted.
>>
>>147862
http://www.rightstufanime.com/Re-ZERO-Novel-Volume-1
Pre-Order, Not Yet Shipping
Release Date: 7/19/2016

Anon please try to look at basic stuff so you don't come off seeming like the complete idiot that you are.
>>
>>147862

Saw your thread on /a/, tried to reply but it got deleted.

About Re:zero, aside from the first chapters of the first volume, that's
https://kagurojp.wordpress.com/
what we got so far. The guy has been pretty fast, though.
Anyway, just ignore the usual indefatigable retards, they are just searching for an irrational excuse for shiposting.
>>
>>147876
Thank you man. You are a fucking legend.
Yeah, I know about How bad /a/ got. I spend 10 years of my life there.

Pages: [First page] [Previous page] [1234] [1235] [1236] [1237] [1238] [1239] [1240] [1241] [1242] [1243] [1244] [1245] [1246] [1247] [1248] [1249] [1250] [1251] [1252] [1253] [1254] [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.