Yahoo Clever wird am 4. Mai 2021 (Eastern Time, Zeitzone US-Ostküste) eingestellt. Ab dem 20. April 2021 (Eastern Time) ist die Website von Yahoo Clever nur noch im reinen Lesemodus verfügbar. Andere Yahoo Produkte oder Dienste oder Ihr Yahoo Account sind von diesen Änderungen nicht betroffen. Auf dieser Hilfeseite finden Sie weitere Informationen zur Einstellung von Yahoo Clever und dazu, wie Sie Ihre Daten herunterladen.

Ryan
Just a simple man.
Free domain name/website hosting?
I'm looking to make a website for gaming. It doesn't matter if they won't ads off to the side, but I want a website I can customize. Planning to fill it with tutorials, how-to videos, forums and all sorts of different and useful things.
More or less, I can program in HTML and that stuff if need be, but I'd rather find a hosting website as there isn't going to be money involved.
2 AntwortenProgramming & Designvor 6 JahrenI'm only a software engineer and don't know much on networking, can someone help my nephew with a few questions? Haven't done these in years?
The first 3 bytes of an Ethernet MAC address identify the manufacturer of the NIC. What is the abbreviation (in upper case) that is used for identifier?
There are possible meanings for the type/length field in an Ethernet header. The value is a length if the number in the field is less than ______. Enter your answer in hexadecimal with the leading 0x.
Ethernet frames are proceeded by a preamble. This preamble is 7 bytes (14 hex digits) long followed by an SFD. Researching on the Internet what is the preamble and SFD string in hexadecimal? Include the leading 0x in your answer
1 AntwortComputer Networkingvor 7 JahrenCan I play Age Of Empire 3 without the disc?
Title says it all, it has been out a while so I assume, like what they did with the other Age Of Empire games, you can download something from them so you don't need a disc, but where?
1 AntwortPCvor 8 JahrenJimmy Page overrated?
People say he is overrated, and I just don't get it, he invented hard rock/metal sound of guitar, people say the studio makes him sound better, that is not what almost everyone that has seen him live has said. People even say he is a fake, back then you could tell if they were using synthesizers, so why do people think he is fake? He hung out with Eric Clapton for god sakes, he doesn't hang out with people who lack talent, be it live, I don't think Clapton really cared for what you sound like in the studio. So please someone answer this: Why is Jimmy Page overrated? I have heard them live, he is just fine, I don't get it.
9 AntwortenRock and Popvor 8 JahrenDid you hear that? Apparently most don't.?
Why can nobody hear auto-tune any more? I notice it being used by SOO many pop artist, everyone who listens to that stuff doesn't notice, are people tone deaf? Really what is it? They are fake, you can hear it. Ex. Nicki Minaj, Justin Bieber etc.
5 AntwortenOther - Musicvor 8 JahrenNeed to know where the best place is to buy.?
Where is the best place to buy Seymour Duncan APH-1 pickups? I can't seem to find them at local guitar stores, and I am not sure as where to look online for them.
1 AntwortOther - Musicvor 8 JahrenWhat were those guitar pick-ups.?
Which pick-ups did Slash use in Sweet Child O' Mine? Also which ones through his Guns N' Roses career.
4 AntwortenRock and Popvor 8 JahrenWhat is with my guitar?
Every time I play Smoke On The Water my 5th string get all funny, sounds like its not tuned despite me, and my cousin knowing its tuned, we have tuned it a thousand time, I use his guitar, no problem with the 5th string. Any ideas? We know it doesn't need to be replaced, its literally a brand-new guitar. The band, and I can't practice until its fixed, and my cousin uses his guitar with his band, I have a George Washburn Limited (Liked the look, so far standard pick-ups because the amp we have is GREAT) and my cousin has a LTD (can't remember model) Please help me figure out what wrong with the 5th string, a lot of rock/metal as we play requires it.
2 AntwortenRock and Popvor 8 JahrenYahoo people are something?
Some people on yahoo are getting me mistaken for someone else, and keep spamming my questions with answers that aren't helping. One of them was this Arthus guy. I was asking for help with song lyrics, like what you want lyrics to be about, we want to make music that people can enjoy. Then he throws around saying no matter what I make will suck because I don't respect people (He used much different spelling, many error, so not actual quote) I just want to know why some people are SO hateful on yahoo, that is the fourth time someone has just been annoying, and not helped at all with my question. So what I really want to know:
How many people just make hate comments on the question you ask?
3 AntwortenYahoo Answersvor 8 JahrenNew youtube series coming your way?
Poll: What YouTube series would you prefer?
My friends and I are starting up a YouTube series, which do you prefer?
Commentary (mainly opinions on small things/unnoticed things)
Parodies(video games, music, movies, anything)
Funny skits
Tutorials/How To
New music (We will make new songs etc.)
We are also taking in any recommendations.
Please reply with best thoughts in mind. Good ideas get points and mention in the series.
Also none of that "Just here for yahoo points stuff" I can and will make you loose points.
1 AntwortYouTubevor 8 JahrenDoes he need a tetanus shot?
My friend my get pinched in the leg by scissors while cutting some hair under his private area. At first I don't know why he came to me, I told him ask his Mom, but he was just dying for an answer so I need one. Should he get another tetanus shot? He had one a couple years ago, and its not deep, just little bleeding he says, and just enough to puncture the skin to cause a little bleeding.
1 AntwortInfectious Diseasesvor 9 JahrenWhat is wrong with my Pygame?
Here is the code, I have the right pygame, my pics are jpg and png, pics are with the code, indents are right, just can work;
a="back.jpg"
b="ball.png"
import pygame, sys
from pygame.locals import *
pygame.init()
screen=pygame.display.set_mode((640,360),0,32)
background=pygame.image.load(a).convert()
mouse_c=pygame.image.load(b).convert_alpha()
while True:
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit()
sys.exit()
screen.blit(background, (0,0))
x,y = pygame.mouse.get_pos()
x -= mouse_c.get_width()/2
y -= mouse_c.get_height()/2
screen.blit(mouse_c,(x,y))
pygame.display.update()
Now here is what it says;
Traceback (most recent call last):
File "D:\Python27\Work\pygame1.py", line 10, in <module>
background=pygame.image.load(a).convert()
error: Couldn't open back.jpg
1 AntwortProgramming & Designvor 9 JahrenWhy won't my pygame work?!?
Here is the code then error message, I made sure the png and jpg are right, also I did the indents, yahoo won't;
a="back.jpg"
b="ball.png"
import pygame, sys
from pygame.locals import *
pygame.init()
screen=pygame.display.set_mode((640,360),0,32)
background=pygame.image.load(a).convert()
mouse_c=pygame.image.load(b).convert_alpha()
while True:
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit()
sys.exit()
screen.blit(background, (0,0))
x,y = pygame.mouse.get_pos()
x -= mouse_c.get_width()/2
y -= mouse_c.get_height()/2
screen.blit(mouse_c,(x,y))
pygame.display.update()
error message
Traceback (most recent call last):
File "D:/Python27/Work/pygame1.py", line 10, in <module>
background=pygame.image.load(a).convert()
error: Couldn't open back.jpg
1 AntwortProgramming & Designvor 9 JahrenWeird bump on wrist.....?
It is a little skin coloured bump on my wrist, it doesn't hurt, doesn't grow, actually shrunk and its a very hard bump. Any idea what it is?
1 AntwortSkin Conditionsvor 9 JahrenNeed Small basic code help fix with NO GOTO statments ASAP remember no GOTO?
Here is the code.
GameStart:
paddle = Shapes.AddRectangle(120, 12)
ball = Shapes.AddEllipse(16,16)
bricksLeft = 48
brickStartY = 35
hitCount = 0
GraphicsWindow.FontSize = 14
GraphicsWindow.MouseMove = OnMouseMove
GraphicsWindow.Title = "Brick Wall"
For idx = 0 To 15
Array.SetValue("GreenBricks", idx, 1)
Array.SetValue("YellowBricks", idx, 1)
Array.SetValue("RedBricks", idx, 1)
Endfor
DrawBricks()
score = 0
PrintScore()
gw = GraphicsWindow.Width
gh = GraphicsWindow.Height
y = gh - 28
Shapes.Move(ball,x,y)
deltaX = 1
deltaY = -2
Sub RunLoop
x = x + deltaX
y = y + deltaY
gw = GraphicsWindow.Width
gh = GraphicsWindow.Height
If (x >= gw - 16 Or x <= 0) Then
deltaX = -deltaX
EndIf
If (y <= 0) Then
deltaY = -deltaY
EndIf
padX = Shapes.GetLeft(paddle)
If ((y >= gh - 28 + 2) And x >= padX And x <= padX + 120) Then
y = gh - 28 + 2
hitCount = hitCount + 1
If Math.Remainder(hitCount, 3) = 0 Then 'Move bricks downwards
For idx = 0 To 15
RemoveGreenBrick()
RemoveYellowBrick()
RemoveRedBrick()
Endfor
brickStartY = brickStartY + 20
DrawBricks()
EndIf
TestRed:
For idx = 0 To 15
If Array.GetValue("RedBricks", idx) = 1 Then
If brickStartY > gh - 160 Then
EndGame()
EndIf
EndIf
EndFor
TestYellow:
For idx = 0 To 15
If Array.GetValue("YellowBricks", idx) = 1 Then
If brickStartY > gh - 100 Then
EndGame()
EndIf
EndIf
EndFor
TestGreen:
For idx = 0 To 15
If Array.GetValue("GreenBricks", idx) = 1 Then
If brickStartY > gh - 40 Then
EndGame()
EndIf
EndIf
EndFor
EndTest:
deltaX = deltaX - 2 + (x - padX) / 30
If score = oldScore Then
score = score - 1
EndIf
oldScore = score
PrintScore()
deltaY = -deltaY 'Change the ball direction
EndIf
Shapes.Move(ball,x,y)
Program.Delay(5)
' Green Bricks
If y > brickStartY - 16 And y < brickStartY + 20 Then
idx = (x+8) / 40
idx = Math.Floor(idx)
If Array.GetValue("GreenBricks", idx) = 1 Then
Array.SetValue("GreenBricks", idx, 0)
RemoveGreenBrick()
Sound.PlayChime()
bricksLeft = bricksLeft - 1
deltaY = -deltaY
score = score + 15
PrintScore()
CheckEnd()
EndIf
EndIf
' Yellow Bricks
If y > brickStartY + 44 And y < brickStartY + 80 Then
idx = (x+8) / 40
idx = Math.Floor(idx)
If Array.GetValue("YellowBricks", idx) = 1 Then
Array.SetValue("YellowBricks", idx, 0)
RemoveYellowBrick()
Sound.PlayChime()
bricksLeft = bricksLeft - 1
deltaY = -deltaY
score = score + 10
PrintScore()
CheckEnd()
EndIf
EndIf
' Red Bricks
If y > brickStartY + 104 And y < brickStartY + 140 Then
idx = (x+8) / 40
idx = Math.Floor(idx)
If Array.GetValue("RedBricks", idx) = 1 Then
Array.SetValue("RedBricks", idx, 0)
RemoveRedBrick()
Sound.PlayChime()
bricksLeft = bricksLeft - 1
deltaY = -deltaY 'Change ball direction
score = score + 5
PrintScore()
CheckEnd()
EndIf
EndIf
If (y < gh) Then 'Ball not reached bottom of window
RunLoop()
EndIf
EndSub
Sub EndGame
GraphicsWindow.ShowMessage("Your score is: " + score, "BrickWall")
Program.End()
EndSub
Sub OnMouseMove
paddleX = GraphicsWindow.MouseX
Shapes.Move(paddle, paddleX - 60, GraphicsWindow.Height - 12)
EndSub
Sub PrintScore
GraphicsWindow.BrushColor = "White"
GraphicsWindow.FillRectangle(10, 10, 200, 20)
GraphicsWindow.BrushColor = "Black"
GraphicsWindow.DrawText(10, 10, "Score: " + score)
EndSub
Sub DrawBricks
For idx = 0 To 15 ' Draw bricks
If Array.GetValue("GreenBricks", idx) = 1 Then
GraphicsWindow.PenColor = "Black"
GraphicsWindow.BrushColor = "Green"
Else
GraphicsWindow.PenColor = "White"
GraphicsWindow.BrushColor = "White"
EndIf
GraphicsWindow.FillRectangle(idx * 40, brickStartY, 40, 20)
GraphicsWindow.DrawRectangle(idx * 40, brickStartY, 40, 20)
GraphicsWindow.BrushColor = "Yellow"
If Array.GetValue("YellowBricks", idx) = 1 Then
GraphicsWindow.PenColor = "Black"
GraphicsWindow.BrushColor = "Yellow"
Else
GraphicsWindow.PenColor = "White"
GraphicsWindow.BrushColor = "White"
EndIf
GraphicsWindow.FillRectangle(idx * 40, brickStart
1 AntwortProgramming & Designvor 9 JahrenHelp for the future!?
Me and my friends will be going to Calgary or Edmonton for university and jobs but there are some problems one of my friends is going to the a university in Calgary, Edmonton or Saskatchewan for Veterinary school to get his Ph.D, I will be either joining in a branch of the army or be going to a Alberta university for computer science and/or computer engineering. Where as my other friends will be joining the police colleges of Alberta or California but he is Canadian do you think he could be a cop in America? Also he has done drugs about 2x nothing major just weed but I am afraid he will continue because his older brother is doing it with him and if so the fields me and my friend will be working in we can't have a guy with drugs in the same apartment as us so is there anything someone can do to help please. Maybe someone with a similar experience?
1 AntwortHigher Education (University +)vor 10 Jahren