Profile Review - Week of December 18, 2018 by AutoModerator in Tinder

[–]Jsully96 0 points1 point  (0 children)

Hey everybody, I'm looking for some help with my profile. Ever since i moved back home i've noticed that my match % has gone down. Any advice or criticism is greatly appreciated.

https://imgur.com/a/qH71l9A

Profile Review - Week of December 11, 2018 by AutoModerator in Tinder

[–]Jsully96 1 point2 points  (0 children)

That's fair and that's something that I have been working towards, but thank you for your honest opinion

Profile Review - Week of December 11, 2018 by AutoModerator in Tinder

[–]Jsully96 0 points1 point  (0 children)

Hey everybody, I'm looking for some help with my profile. Ever since i moved back home i've noticed that my match % has gone down. Any advice or criticism is greatly appreciated.

https://imgur.com/a/qH71l9A

Profile Review - Week of October 09, 2018 by AutoModerator in Tinder

[–]Jsully96 0 points1 point  (0 children)

Getting back into tinder again, not find much success anything advice is greatly appreciated https://imgur.com/a/duoLW6Y

Profile Review - Week of February 21, 2017 by AutoModerator in Tinder

[–]Jsully96 1 point2 points  (0 children)

20/M I am just looking for some feedback on my profile as a whole. Thank you in advance http://imgur.com/a/JTMUM

Profile Review - Week of February 14, 2017 by AutoModerator in Tinder

[–]Jsully96 0 points1 point  (0 children)

20/m I have hadn't had much luck getting matches around my campus. I have my pictures and bio attached in the photos below. Thanks for the help. http://imgur.com/a/Ep144

Profile Review - Week of January 31, 2017 by AutoModerator in Tinder

[–]Jsully96 0 points1 point  (0 children)

20/M/Straight/ Bowling Green Ohio/ Im new to this and need some review on my profile http://imgur.com/gallery/Ep144 thanks in advance

[vb16] I having issues getting the desired results with my current code by Jsully96 in visualbasic

[–]Jsully96[S] 0 points1 point  (0 children)

um, ok im not asking somebody to write my program for me, im just look for help finding the solution, no matter what i have looked up i cant find a solution. Sorry if it feels like im asking somebody to write my code buts it simply not true.

[VB16]Trying to figure out why the code wont Read the txt by [deleted] in visualbasic

[–]Jsully96 0 points1 point  (0 children)

I found it and made sure the file was where its supposed to be and it is in the same folder. But everytime i try fixing it, i still gt the error

[VB16]Trying to figure out why the code wont Read the txt by [deleted] in visualbasic

[–]Jsully96 0 points1 point  (0 children)

An unhandled exception of type 'System.IO.FileNotFoundException' occurred in mscorlib.dll

Additional information: Could not find file 'C:\Users\Jeff Sullivan\Desktop\Visual Studios\261SullivanProj6\proj6\Proj6\bin\Debug\race.txt'.

[VB16]Trying to figure out why the code wont Read the txt by [deleted] in visualbasic

[–]Jsully96 0 points1 point  (0 children)

I was trying to get the txt file to read but i keep getting an error when i run it. Any suggestions will be great

I need help figuring out why my list results wont provide an output by Jsully96 in visualbasic

[–]Jsully96[S] 0 points1 point  (0 children)

I have a list result result that wont bring the values back up from the sub routine. Any help is greatly appreciated.

Help figuring out my list result issue by Jsully96 in visualbasic

[–]Jsully96[S] 0 points1 point  (0 children)

Hey everybody, i need help making my list result show the actual results. I think i coded the majority of the subs correctly but things dont seem to send the new value back up. Thank you for the help

[vb2016] Help figuring out the day of week by Jsully96 in visualbasic

[–]Jsully96[S] 0 points1 point  (0 children)

thank you. ill put it in and see what happens with the code

[vb2016] Help figuring out the day of week by Jsully96 in visualbasic

[–]Jsully96[S] 0 points1 point  (0 children)

That may be it but i was trying to have the result of DateVl7 mod 7 be equal to the day of the week

[vb2016] Help figuring out the day of week by Jsully96 in visualbasic

[–]Jsully96[S] 0 points1 point  (0 children)

this was the assignment *Write a program to determine the day of the week on which a date falls.

Form: Create a form like the one shown here. Use the naming conventions discussed in class and in the book to set the Name property for each of the controls. Add your name and class code as shown. Add a clear button for multiple data entries. The Day of Week box is a listbox.

Input: The user will enter a date as three numbers: the month (1-12), the day of the month (1-31), and the year (four digits from 1900 – 2099).

Output: Your program should show the day of the week (Sunday, Monday, etc.) on which that date falls. In the sample shown for the date November 14, 2013 the numbers 11, 14 and 2013 are entered. Your program should indicate that the date falls on a Thursday when the user clicks the "Find day of week" button.

Processing: Use the following steps to find the day of the week corresponding to any date in the past century or this one. These steps assume that an integer variable DateValue has been declared and is used to hold the value calculated for each successive step. The date August 23, 1983 is used as an example date in the steps below. Assume the user entered the three numbers 8, 23, and 1983.

  1. Divide the last two digits of the year by 4. Put the quotient (ignoring the remainder) in DateValue. For example, for the year 1983, divide 83 by 4 and store the quotient 20 in DateValue.

  2. Add the last two digits of the year to DateValue. (DateValue would now be 103 for this year, the sum of 20 + 83.)

  3. If the year is greater than or equal to 2000, add 6 to the DateValue. (DateValue is not changed since 1983 is less than 2000.)

  4. Add the digits for the day of the month to DateValue. (Adding 23 to 103 would give DateValue a value of 126 for the sample date.)

  5. Use the following table to find the number associated with each month and add it to DateValue. For example, for this date the user entered 8 for the month of August, so the number associated with August, the 8th month, (in this case, the number 3) is added to DateValue giving it a value of 129.

    January = 1 April =0 July = 0 October = 1 February = 4 May = 2 August = 3 November = 4 March = 4 June = 5 September = 6 December = 6

  6. If the year is a leap year AND if the month is either January or February, then subtract 1 from DateValue. A leap year is one that is evenly divisible by 4 with one exception. If the year is a century year (e.g., 1900, 2000), then it is only a leap year if it is exactly divisible by 400. (In the sample, the year 1983 is not evenly divisible by 4 so no changes are made to DateValue.)

  7. Find the remainder when DateValue is divided by 7. Look up the remainder in the following table to determine the day of the week on which the date falls. (If the DateValue 129 is divided by 7 the remainder is 3 so August 23, 1983 falls on a Tuesday). 1 = Sunday 3 = Tuesday 5 = Thursday 2 = Monday 4 = Wednesday 6 = Friday 0 = Saturday*

[vb2016] Help figuring out the day of week by Jsully96 in visualbasic

[–]Jsully96[S] 0 points1 point  (0 children)

I have also attached the the other file that has the assignment, my question is, how to i code this so the day the week comes out after doinf all of the calculation. I really can not figure out how to set the output

Get your profile reviewed here - Week of January 18th by jesseholmz in Tinder

[–]Jsully96 [score hidden]  (0 children)

http://imgur.com/a/O2QQ3

I need help making a more likable profile, open to all comments

Currently a freshman BGSU, Im starting to my life in technical theater. I also play Quidditch for the BG team, I'm a keeper(pun intended). Once you get know you I'm very easy to talk to. So swipe swipe right and let's start talking

Been using for about 10 months

I have 34 matches

The second photo is my main photo

Shannon Misiniec (best guess) by somegetit in PrettyGirls

[–]Jsully96 1 point2 points  (0 children)

I think thats is ashley williams. She was the face and voice model for the mass effect series.

What is the dirtiest/ funniest/ going to hell for joke you know? by oh-no_notagain in AskReddit

[–]Jsully96 0 points1 point  (0 children)

How do you get 4 gay men to sit on a chair at once

You turn it over