I use Ubuntu’s Uncomplicated firewall because it is available on Ubuntu and it's very simple.
if ufw is not installed by default be sure to install it first.
| /* Exercise: Loops and Functions #43 */ | |
| package main | |
| import ( | |
| "fmt" | |
| "math" | |
| ) | |
| func Sqrt(x float64) float64 { | |
| z := float64(2.) |
Branch A has commits (X,Y) that also need to be in Branch B. The cherry-pick operations should be done in the same chronological order that the commits appear in Branch A.
cherry-pick does support a range of commits, but if you have merge commits in that range, it gets really complicated
git checkout branch-B
git cherry-pick X
git cherry-pick Y
| #EXTM3U | |
| #EXTINF:0,France Culture - direct | |
| http://direct.franceculture.fr/live/franceculture-midfi.mp3 | |
| #EXTINF:0,France Inter | |
| http://icecast.radiofrance.fr/franceinter-hifi.aac?id=radiofrance | |
| #EXTINF:0,France Musique | |
| http://direct.francemusique.fr/live/francemusique-midfi.mp3 | |
| #EXTINF:0,France Info | |
| https://stream.radiofrance.fr/franceinfo/franceinfo_hifi.m3u8 | |
| #EXTINF:0,France Culture - alternative link |
| <!-- Working code --> | |
| <?xml version="1.0" encoding="utf-8" ?> | |
| <ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui" | |
| xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | |
| x:Class="XClaim.Mobile.Views.Segment" | |
| x:Name="this"> | |
| <Border Padding="3" StrokeThickness="0" BackgroundColor="{DynamicResource Tertiary}"> | |
| <Border.StrokeShape> | |
| <RoundRectangle> | |
| <RoundRectangle.CornerRadius> |