GOOGLE
https://gemini.google.com/app
FACEBOOK
https://www.meta.ai/
TWITTER
https://x.com/i/grok
GOOGLE
https://gemini.google.com/app
FACEBOOK
https://www.meta.ai/
TWITTER
https://x.com/i/grok
| # Node.js dependencies | |
| /node_modules/ | |
| /ui/node_modules/ | |
| /ui/client/node_modules/ | |
| # Build outputs | |
| /dist/ | |
| /ui/client/build/ | |
| /ui/client/.next/ | |
| /out/ |
| @echo off | |
| setlocal enabledelayedexpansion | |
| for /d %%F in (*.*) do ( | |
| set "folder=%%F" | |
| set "newfolder=!folder:.= !" | |
| ren "%%F" "!newfolder!" | |
| ) |
| //using state management | |
| import { useState } from 'react'; | |
| const Wizard = () => { | |
| const [step, setStep] = useState(1); | |
| const nextStep = () => setStep(prev => prev + 1); | |
| const prevStep = () => setStep(prev => prev - 1); | |
| return ( |
| # Add a packet size on both server (ffmpeg) and client (vlc) sides; | |
| # in ffmpeg: | |
| ffmpeg -re -i "path/to/my/video.mp4" -vcodec libx264 -f mpegts udp://127.0.0.1:1234?pkt_size=1316 | |
| # in vlc: | |
| udp://127.0.0.1:1234?pkt_size=1316 |
| When you initialize a new Git repository with `git init`, Git creates a single branch named `master` by default. This is the branch where your initial commit will go when you make it. | |
| However, starting from Git 2.28, you can customize this behavior using the `init.defaultBranch` configuration option. For example, if you want your default branch to be named `main`, you can set this option globally with the following command: | |
| ```bash | |
| git config --global init.defaultBranch main | |
| ``` | |
| After running this command, new repositories you create with `git init` will have a single branch named `main` by default. |
| catch (Exception ex) | |
| { | |
| tbOutput.Text = GetExceptionMessages(ex); | |
| } | |
| ... | |
| private string GetExceptionMessages(Exception ex) | |
| { | |
| var message = ex.Message; |
| private void Button_Click(object sender, RoutedEventArgs e) | |
| { | |
| // Change the cursor to an hourglass | |
| Mouse.OverrideCursor = Cursors.Wait; | |
| try | |
| { | |
| // Perform the long-running operation here | |
| // ... |
| <Window x:Class="WpfApp.MainWindow" | |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
| Title="MainWindow" Height="350" Width="525"> | |
| <StackPanel> | |
| <Expander Header="Expander 1"> | |
| <UniformGrid Rows="2" Columns="2"> | |
| <Button Content="Button 1"/> | |
| <Button Content="Button 2"/> | |
| <Button Content="Button 3"/> |
| # change to the folder where you want to create newBranchName | |
| git clone --single-branch --branch features/upgrade ^ | |
| C:\Projects\DevOps\MyRepoName newBranchName | |
| # C:\Projects\DevOps\MyRepoName is the repo where the branch you want to clone resides in; | |
| # newBranchName is relative to current folder; |