Skip to main content

How to impress my girlfriend who loves Python programming language?

 How to impress my girlfriend who loves Python programming language?

Here...How to impress my girlfriend who loves Python programming language to

             help you make the new concepts, you are learning programming 

             Languages are really very important.



1.Some ideas:

 ->Be a good listener. Ask good questions about what they're talking about.

 ->Tell interesting, funny stories. Express yourself well.

 ->Know about (and take the person) to a really good restaurant that's not common knowledge. Show respect and courtesy to the staff there.

->Have fun!!! Make the date easy and comfortable, for both of you.

->If the situation allows, bust out some killer dance moves.

->In short, impress a computer programmer in the same way you'd impress anyone else. 

     Don't try to learn some computer jargon to show that you understand computers...that will only work on people who don't know anything about computers so you'd be using computer jargon on one of the few people who are all but guaranteed to see through it to the ignorance within.

2.Dress your best, because a good programmer always pays attention to details.

 ->He will be probably very clever, so you can ask some interesting logical puzzle.

 ->You can easily discuss video games with him (Counter-Strike, Dota, etc)


   ->A great sense of humor every programmer has, so be as much fun as you can.


   ->Do not talk about Hindi TV serials, he might end up leaving the table, even without paying the bills.


   ->Never ever ask stupid questions like can you fix any electrical appliance.


   ->Knowledge and positive attitude is what a programmer likes the 

      most in another person, have most of it.


  ->Any discussion related to Games of Thrones, Breaking Bad, Friends, Prison 

     Break, or Christopher Nolan movies, they are gonna love it.


  ->He may be shy in nature at first, so never hesitate to start the conversation, but 

     once you started I promise, he will be the one who will always end it.


  ->Because of his Geeky nature, there is a high chance that you are probably his first date, so 

      I believe he will feel ecstatic even if you don't cancel it, and reached there on time :)

3..This obviously varies, but I definitely prefer it when someone doesn't try to 

  impress me with technical programming tidbits if they themselves aren’t technical. 

  I can tell if they know what they’re talking about or not, so forced references or knowledge dropping is usually cringe-worthy because they will often miss nuances or are very surface-level. Also, as a female, I deal with a lot of mansplaining so please don't accidentally fall into that!


  Keep in mind programming is such a broad and varied field. It's probably a good 

  idea to learn exactly what that person does which can help you pinpoint what to 

  read up on to get a better understanding of their work 

  so you don't accidentally hurt their pride. :)

=>What I do get impressed by:


  ->Discussing my favorite people in the industry I operate in - for me it 

     could be Elon Musk or Nikola Tesla, and if you have a fair bit 

     of knowledge about these people, that'll impress me.

->Asking what programming projects I’m working on, whether from work 

     or personal. What drives most us programmers is the sheer joy of 

     creating cool things, so we’d love to tell you what we’re making.


  ->Ultimately, talk about normal first date stuff. Your interests, hobbies, or favorite 

     books. Most of us are multidimensional people and sometimes 

     after work, programming can be the last thing I want to talk about.




Conclusion-In this tutorial you will have learn,How to impress my girlfriend who loves Python programming language 

                Explain step by step So hope you liked this tutorials.If you have any questions or suggestions 

                related to any programming Language,please comment below and let us know.

                Finally,if you find this post informative,then share it with

                your friends on Facebook,Twitter,Instagram. 


 Thank you...


Comments

Post a Comment

Popular posts from this blog

Generate Documentation for Spring Boot API with swagger and Open API 3

 ðŸ˜‚ How to Generate Documentation for Spring Boot API project Make sure your Project having a swagger or open API 3 Dependency then only you get proper Documentation for your Service. ---------------------------------------------------------------------------- Every method or API above you have to Write Like that then only you get proper Documentation If you do everything in your Application and Run your Application and go to browse and search. . http://localhost:8080/v3/api-docs/ if you want to learn more go with this one.  Open API-3   1. For Return List of Object then you have to use this API operation  @Operation(summary = "This will fetch List of Patient Detailas base on Hospital Name") @ApiResponses(value = { @ApiResponse(responseCode = "200", description = "Successfully fetch All Patient Details from Database ", content = {  @Content(mediaType = "application/json" ,array = @ArraySchema(schema =@Schema(implementation =PatientDe...

#FibonacciNumberSeries Write a program of Fibonacci Number Series|| Fib...

Fibonacci Number Series ============================================ 0 1 1 2 3 5 8 13............. a=0; b=1; i=2; printf(a,b); while(i<=n){ c=a+b; printf(c); a=b; b=c; i++; } =========================================================================== import java.util.Scanner; class Fibonacci { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int n=sc.nextInt(); int a=0,b=1,c; System.out.print(a+" "+b); for(int i=2;i

In a new programming language how can store multiple types of data in a single variable OR is it possible how can store multiple types of data in a single variable in programming langauge

In a new programming language how can store multiple types of data in a single variable  OR is it possible how can store multiple types of data in a single variable in a programming language Here In a new programming language how can store multiple types of  data in a single variable   help you make the new  concepts, you are learning a programming  Languages really very important: Ideally Yes. If you create an Array of objects. Then it's possible to store any data type with it as an object is the base class. ArrayList can hold multiple types of data, but array doesn't. Variables Variables can be thought of as ‘containers’ for data. Each variable has to  have a unique name, so that you can refer back to it in the program. By using variables, we can refer to values that have not yet been defined.  For example, we can refer to the speed of the ball in different parts of the  game code, but calculate the ball speed later based on different input...