• Different Transitions for in and out
    30 September, 2019 CSS WebDev
    What I'm Talking About Without Smooth Transition In & Out. With Smooth Transition In & Out aka BILL You see how the one called Bill is smooth going in and out? That’s what we want and luckily there is an easy trick. The Code <style> .wbBtn { border: 2px solid black; background-color: black; color: white; font-weight: bold; transition: all 500ms ease-in-out; /* Just put the transition here instead */ } .
  • Steam Library Update Beta
    18 September, 2019 Steam
    Enabling Library Update To enable the new library update you can just, go to Steam > Account > Change (on Beta Participation) > Steam Beta Update: How It Feels I definitley think that this is a step up from the previous UI, which is super outdated, but there are a few things missing and I hope that they aren’t forgotten about when this is fully released.
  • Reoccurring Events in MySQL
    12 September, 2019 SQL
    What are Events in MySQL? Events in MySQL are something that can happen every x amount of time. If you have something that you want to reoccur ever now and then, you should consider using events. Example CREATE EVENT IF NOT EXISTS `remove_login_attempts` # Create & Name Event ON SCHEDULE EVERY 1 MINUTE # When to redo task ON COMPLETION PRESERVE ENABLE DO DELETE FROM login_attempts WHERE time < (NOW() - INTERVAL 15 MINUTE); # The code to run What Is The Code Doing Create event and name it.
  • Keyframe Animations
    27 August, 2019 CSS WebDev
    Intro Keyframes in CSS are very diverse, you can use them for many things… just get creative! The Basics This is going to be the truly barebones version of what you can do with keyframes, but this is just an example which you should build on, on your own. First you can ‘include’ the animations name in the class of your choosing as such:
  • Make User Settings & Edit Them C#
    18 July, 2019 CSharp
    Create Settings Right-click on your project and head down to Properties and then on the left-click on the settings button. Enter the Name, type, scope & value of each setting you want to add. Note: The Application Scope is not editable during runtime and will always stay the default value you set right now.
  • Change Subdomains Document Root In Apache Server
    18 July, 2019 Apache
    Step 1 - Create Subdomain If you don’t have a subdomain on your apache server, you can follow this tutorial first and then come back. Change Document Root In ‘httpd-vhosts.conf’ change the ‘Document Root’ for the correct subdomain. Mine, after editing, looks like this: <VirtualHost *:80> ServerName cd.sbond.co DocumentRoot "C:\Path\To\Custom\Dir" <Directory /> Options FollowSymLinks AllowOverride All </Directory> </VirtualHost> Step 3 - Allow Access To Dir & Make Alias Go to your ‘httpd.
  • How To Show Info On Hover With ToolTip C#
    29 June, 2019 CSharp
    Step 1 - Add The Control In the toolbox search for “ToolTip” and plop it onto your form. It isn’t something you put directly on your form, but instead it will just sit at the bottom in a little box. You can click on it and edit it’s properties. Step 2 - Add Info Click on the control you want to display info about, and find “ToolTip on < ToolTip Name >”.
  • Rounding The Edges Of Your Form C#
    29 June, 2019 CSharp
    Step 1 - The Importing using System.Runtime.InteropServices; using System.Drawing; Put this one inside of your class: [DllImport("Gdi32.dll", EntryPoint = "CreateRoundRectRgn")] private static extern IntPtr CreateRoundRectRgn ( int nLeftRect, // x-coordinate of upper-left corner int nTopRect, // y-coordinate of upper-left corner int nRightRect, // x-coordinate of lower-right corner int nBottomRect, // y-coordinate of lower-right corner int nWidthEllipse, // height of ellipse int nHeightEllipse // width of ellipse ); Step 2 - Rounding I would put this in the initialisation of your form.
  • Search a Table in SQL
    29 June, 2019 SQL
    The Code SELECT * FROM info WHERE Name LIKE 'Keyword'; This way, you would get a ‘sort of search’, because you would have to type the name of the item 100% correctly, otherwise no results would show up. I guess this is sort of a ‘strict’ search, if something is slightly wrong, nothing would be returned.
  • Making A Draggable, Borderless Form C#
    27 June, 2019 CSharp
    Step 1 - Adding Event Go into the events of either the whole form or on a control/panel and add the MouseDown event. Step 2 - Variables & Importing Namespace Import the namespace: using System.Runtime.InteropServices; Define the following: public const int WM_NCLBUTTONDOWN = 0xA1; public const int HT_CAPTION = 0x2; [DllImportAttribute("user32.dll")] public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam); [DllImportAttribute("user32.