Basic White Bitch- (noun) Bae-sick Why-eat Beach / (1) Caucasian female who loves Chipotle & Panera more than oxygen. (2) Often says "BÆ" aggressively (3) Starbuck is life (4) owns an iPhone
She's a basic white bitch, but I gotta love her 😊 💝
God she's such a basic white bitch it's annoying
I'm a basic white bitch and I love it
God she's such a basic white bitch it's annoying
I'm a basic white bitch and I love it
by flamin_joy September 22, 2016
Get the Basic White Bitch mug.Basilmarket is a website in which you can ask questions and bid for auctions and talk to others about MapleStory. However, most of basilmarket is a crude, insane place where idoits and 10 year olds roam for a living. Most people on BasilMarket are Attention Hors who cannot live life, and have a extremely low IQ. BasilMarket should only be used for literate people and for auctions, not for idoits. The owner "Mr.Basil" and mods should definitely conclude to stricter rules and more permenant bans.
AznSeal: omg guys look at me im so cool
SnuffliePuff: i hate my life boohoo
Random Person: u phail, its over 9000, i herd u liek mudkipz, im so 1337 guyz
Random Person2: BasilMarket rockzzzz, i flame u all, haha nibz
paulpker121: paulpker121 is not amused.
Ang3licSword: You guys need a life. -_-
SnuffliePuff: i hate my life boohoo
Random Person: u phail, its over 9000, i herd u liek mudkipz, im so 1337 guyz
Random Person2: BasilMarket rockzzzz, i flame u all, haha nibz
paulpker121: paulpker121 is not amused.
Ang3licSword: You guys need a life. -_-
by Sarah Ramirez February 24, 2008
Get the BasilMarket mug.Related Words
Basix
• Basic
• Basic Bitch
• basic white girl
• basil
• basically
• Basic White Bitch
• basian
• basic white boy
• Basim
-rich brat
-dad is a stockbroker and mom is an anesthesiologist
-wears $50 Vineyard Vines polo shirts with that retarded ass whale, Chubbies shorts, and Sperrys
-part of a country club and yacht club
-has a Rolex watch
-all of his friends conform to all of the stereotypes listed above
-dad is a stockbroker and mom is an anesthesiologist
-wears $50 Vineyard Vines polo shirts with that retarded ass whale, Chubbies shorts, and Sperrys
-part of a country club and yacht club
-has a Rolex watch
-all of his friends conform to all of the stereotypes listed above
It doesn't matter how hideous or ridiculous-looking an item of clothing is; if it's expensive, a basic white boy is gonna hoard that shit.
by HPTrash November 12, 2017
Get the Basic White Boy mug.A programming language for morons, and people that are too stupid to learn real programming languages.
It is commonly taught in schools and colleges, so retards can understand it and become "leet".
It is commonly taught in schools and colleges, so retards can understand it and become "leet".
by I need no introduction. October 3, 2005
Get the Visual Basic mug.Usually goes by the name of Jennifer and denies being a basic person. Enjoys basic dice games and is very competitive.
by Vortre July 24, 2018
Get the Basic white bitch mug.A powerful RAD (rapid application development) progamming language that allows for easy creation of windows programs. Its main flaw is the fact that micro$hit made it, and therefore under their monopoly, it only runs on windows. Another complaint is about the way many new users use the language. They just paste a couple of objects on a form, user a few undeclared variables (variants, which are slow), and run the program. A real program creates objects at runtime and user delared variables at all times (forced by Option Explicit.) Other than that, it is a good language. It is easy enough to learn for beginners (unlike other languages such as java/C++) and powerful enough to perform complicated calculations and make windows-based programs and games with readable code.
'This is a sample VB program
'It finds the prime factors of any number the user specifies
'Declare Objects
Dim WithEvents txtNumber As TextBox
Dim WithEvents lblPrime As Label
Dim WithEvents cmdFactor As CommandButton
Private Sub cmdFactor_Click()
Dim counter&, answer$, number&
'Check to make sure user entered a valid number
If Not IsNumeric(txtNumber) Then Exit Sub
If Len(txtNumber) = 0 Or txtNumber > 2000000000 Or Sgn(txtNumber) = -1 Then Exit Sub
'Create variable = to what user entered.
number = txtNumber
'factor out 2's
Do While number Mod 2 = 0
number = number / 2
answer = answer & " * 2"
Loop
'factor out other numbers
For counter = 3 To number Step 2
Do While number Mod counter = 0
'exit when primes are exhausted
If number = 1 Then Exit Do
number = number / counter
answer = answer & " * " & counter
Loop
Next counter
'results
MsgBox Right$(answer, Len(answer) - 3), 15, "The Prime Factors of " & txtNumber & " are..."
'gives the textbox focus
txtNumber.SetFocus
End Sub
Private Sub Form_KeyDown(KeyCode%, Shift%)
'pressing escape exits the program
If KeyCode = 27 Then Unload Me
End Sub
Private Sub Form_Load()
'set up form
With Me
.KeyPreview = True
.Move (Screen.Width - .Width) \ 2, (Screen.Height - .Width) \ 2
End With
Set txtNumber = Controls.Add("VB.TextBox", "txtNumber")
With txtNumber
.Move (Me.Width - .Width) \ 2, (Me.Height - .Width) \ 2
.Visible = True
End With
Set lblPrime = Controls.Add("VB.Label", "lblPrime")
With lblPrime
.Caption = "Find Prime Factors Of What Number?"
.Move txtNumber.Left, txtNumber.Top - 800, .Width, .Height + 400
.Visible = True
End With
Set cmdFactor = Controls.Add("VB.CommandButton", "cmdFactor")
With cmdFactor
.Caption = "Factor"
.Default = True
.Move txtNumber.Left, txtNumber.Top + 800
.Visible = True
End With
End Sub
Private Sub Form_Terminate()
'clean up
Dim clrObject As Object
For Each clrObject In Me
clrObject = ""
Next clrObject
End
End Sub
'It finds the prime factors of any number the user specifies
'Declare Objects
Dim WithEvents txtNumber As TextBox
Dim WithEvents lblPrime As Label
Dim WithEvents cmdFactor As CommandButton
Private Sub cmdFactor_Click()
Dim counter&, answer$, number&
'Check to make sure user entered a valid number
If Not IsNumeric(txtNumber) Then Exit Sub
If Len(txtNumber) = 0 Or txtNumber > 2000000000 Or Sgn(txtNumber) = -1 Then Exit Sub
'Create variable = to what user entered.
number = txtNumber
'factor out 2's
Do While number Mod 2 = 0
number = number / 2
answer = answer & " * 2"
Loop
'factor out other numbers
For counter = 3 To number Step 2
Do While number Mod counter = 0
'exit when primes are exhausted
If number = 1 Then Exit Do
number = number / counter
answer = answer & " * " & counter
Loop
Next counter
'results
MsgBox Right$(answer, Len(answer) - 3), 15, "The Prime Factors of " & txtNumber & " are..."
'gives the textbox focus
txtNumber.SetFocus
End Sub
Private Sub Form_KeyDown(KeyCode%, Shift%)
'pressing escape exits the program
If KeyCode = 27 Then Unload Me
End Sub
Private Sub Form_Load()
'set up form
With Me
.KeyPreview = True
.Move (Screen.Width - .Width) \ 2, (Screen.Height - .Width) \ 2
End With
Set txtNumber = Controls.Add("VB.TextBox", "txtNumber")
With txtNumber
.Move (Me.Width - .Width) \ 2, (Me.Height - .Width) \ 2
.Visible = True
End With
Set lblPrime = Controls.Add("VB.Label", "lblPrime")
With lblPrime
.Caption = "Find Prime Factors Of What Number?"
.Move txtNumber.Left, txtNumber.Top - 800, .Width, .Height + 400
.Visible = True
End With
Set cmdFactor = Controls.Add("VB.CommandButton", "cmdFactor")
With cmdFactor
.Caption = "Factor"
.Default = True
.Move txtNumber.Left, txtNumber.Top + 800
.Visible = True
End With
End Sub
Private Sub Form_Terminate()
'clean up
Dim clrObject As Object
For Each clrObject In Me
clrObject = ""
Next clrObject
End
End Sub
by too good for a name December 5, 2004
Get the Visual Basic mug.Noun referring to "basic bitches." Basic's are the typical girl that thinks they are cool because they're artsy, can make a duck face, carry around coffee cups, and where designer brands. You'll know a basic when you see one.
1: "dude checkout those girls, they're all wearing the same designer outit and they're walking around with empty coffee cups and taking selfie.
2: yeah they're basic's
1: werd.
2: yeah they're basic's
1: werd.
by BasicsTheseDays September 4, 2013
Get the Basic's mug.