What do you want to save?
Add Code snippet
New code examples in category Assembly
-
Phoenix Logan 2022-03-22 20:55:01
printf format specifiers c
/* printf example */ #include <stdio.h> int main() { printf ("Characters: %c %c \n", 'a', 65); printf ("Decimals: %d %ld\n", 1977, 650000L); printf ("Preceding with blanks: %10d \n", 1977); printf ("Pr... Add solution -
Awgiedawgie 2022-03-20 06:00:11
how to listen for changes on an ObservableMap
import java.util.HashMap; import java.util.Map; /*from www . j a v a 2 s . co m*/ import javafx.collections.FXCollections; import javafx.collections.MapChangeListener; import javafx.collections.ObservableMap; public class Main { public static ... Add solution -
Awgiedawgie 2022-03-13 06:05:01
Error CS0012 The type "'FontFamily'" is defined in an assembly that is not referenced. You must add a reference to assembly 'PresentationCore
You are using a version of PDFsharp that relies on GDI+ and your project may have to reference System.Drawing e.g. when you need fonts, pens, brushes, and such. To avoid references to GDI+, you can use the WPF build of PDFsharp: https://www.nuget.org/pack... Add solution -
-
-
Awgiedawgie 2022-02-16 02:15:03
vim shortcuts keyboard code
// Vim in Linux Shortcuts and Keyboard operations // For More Detailed and Advanced Operations Visit the site here // https://gist.github.com/awidegreen/3854277 // Cut and paste: 1. Position the cursor where you want to begin cutting. 2. Press v to sele... Add solution -
Phoenix Logan 2022-02-02 18:11:11
cout boolalpha
// modify boolalpha flag #include <iostream> // std::cout, std::boolalpha, std::noboolalpha int main () { bool b = true; std::cout << std::boolalpha << b << '\n'; std::cout << std::noboolalpha << b << '... Add solution
Best helpers
Ranking is empty