In the next session of Network Automation Use Cases webinar (on Thursday, February 16th) I’ll describe how you could implement automatic deployment of network services, and what you could do to minimize the impact of unintended consequences.
If you attended one of the previous sessions of this webinar, you’re already registered for this one, if not, visit this page and register.
Community established networks are emerging and evolving in Africa as a sustainable solution to address the existing connectivity gaps. 37 community networks initiatives have so far been identified in 12 African countries, of which 25 are considered active trying to set up or improve their own telecommunications infrastructure to connect the unconnected.
One of the goals of the Internet Society is to help expand connectivity and promote increased collaboration between community network operators in the region as well as provide an opportunity for them to engage with other stakeholders.
I was an happy user of rxvt-unicode until I got a laptop with an HiDPI display. Switching from a LoDPI to a HiDPI screen and back was a pain: I had to manually adjust the font size on all terminals or restart them.
VTE is a library to build a terminal emulator using the GTK+ toolkit, which handles DPI changes. It is used by many terminal emulators, like GNOME Terminal, evilvte, sakura, termit and ROXTerm. The library is quite straightforward and writing a terminal doesn’t take much time if you don’t need many features.
Let’s see how to write a simple one.
Let’s start small with a terminal with the default settings. We’ll write that in C. Another supported option is Vala.
#include <vte/vte.h> int main(int argc, char *argv[]) { GtkWidget *window, *terminal; /* Initialise GTK, the window and the terminal */ gtk_init(&argc, &argv); terminal = vte_terminal_new(); window = gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_window_set_title(GTK_WINDOW(window), "myterm"); /* Start a new shell */ gchar **envp = g_get_environ(); gchar **command = (gchar * Continue reading
About 275 employees will be impacted by the cuts.
Biggest announcement ever! (In terms of volume.)
Google has paused its Fiber initiative.
The post Worth Reading: Addressing in 2016 appeared first on 'net work.