๐Ÿš€ OharaLumina

All Posts

Thumbnail for Posts

How to disable GCC warnings for a few lines of code

๐Ÿ“‚ Categories: Programming

In Visual C its possible to use pragma warning disable Also I found that in GCC you can override per file compiler flags How can I do this for next line or

Thumbnail for Posts

How to find server name of SQL Server Management Studio

๐Ÿ“‚ Categories: Programming

I installed Microsoft SQL Server 2008 When I start SQL Server Management Studio SSMS I get the Connect to Server login window with a blank textbox for Server

Thumbnail for Posts

How to generate a random number in C

๐Ÿ“‚ Categories: C++
๐Ÿท๏ธ Tags: Random

Im trying to make a game with dice and I need to have random numbers in it to simulate the sides of the die I know how to make it between 1 and 6 Using include

Thumbnail for Posts

How to get the connection String from a database

๐Ÿ“‚ Categories: C#
๐Ÿท๏ธ Tags: Sql-Server Visual-Studio

I have created a database with SQL Server Management Studio I would like to now use it in my C application I need the connection string Where can I find the

Thumbnail for Posts

How to implement an STL-style iterator and avoid common pitfalls

๐Ÿ“‚ Categories: C++
๐Ÿท๏ธ Tags: Iterator Const-Iterator

I made a collection for which I want to provide an STLstyle randomaccess iterator I was searching around for an example implementation of an iterator but I

Thumbnail for Posts

How to JSON serialize sets duplicate

๐Ÿ“‚ Categories: Python
๐Ÿท๏ธ Tags: Json Serialization Set

This question already has answers here How to make a class JSON serializable 46 answers Closed 1 year ago I have a Python set that contains objects with hash

Thumbnail for Posts

How to loop over grouped Pandas dataframe

๐Ÿ“‚ Categories: Python

DataFrame cosfamilyss cosmajoris lcustomeridi 0 Windows 7 90418 1 Windows 7 90418 2 Windows 7 90418 Code for name group in dfgroupbylcustomeridiagglambda x

Thumbnail for Posts

How to search for file names in Visual Studio

๐Ÿ“‚ Categories: Programming

In Eclipse you can search for a file in the project by pressing CTRLSHIFTR Is there a way to do this in Visual

Thumbnail for Posts

How to serialize an Object into a list of URL query parameters

๐Ÿ“‚ Categories: Javascript
๐Ÿท๏ธ Tags: Javascript

Without knowing the keys of a JavaScript Object how can I turn something like var obj param1 something param2 somethingelse param3 another objparam4 yetanother