The Introduction
For this post I will walk you through a project with a Field Programmable Gate Array (FPGA), which was interfaced with a hand constructed clock circuit (an astable multivibrator).
For this post I will walk you through a project with a Field Programmable Gate Array (FPGA), which was interfaced with a hand constructed clock circuit (an astable multivibrator).
I should introduce myself before jumping in with my first post here in the XRDS blog. I am a long time Free Software enthusiast and developer, and that might be the single item that has most influenced my professional life. I am 41 years old, and have been a systems and network administrator for over half of my life.
As a consequence of my job, I have always been interested in information security. Particularly I’ve interested in the question “how the end user perceives security?” This fragments into more detailed questions such as: How can I implement services securely without it being a major inconvenience for my users? How can I help my users adopt reasonable practices security-wise? How can we as computing professionals influence our societies so that their expectations on security, privacy and reliability are met?
That prompted me into starting a Masters degree on Information Security at ESIME Culhuacán, Instituto Politécnico Nacional. And, in turn, being a graduate student led me to XRDS. So it’s all connected in the end.
Having said that, lets get this blog started!
I have recently arrived back home after attending DebConf17 — The Debian Conference, which was held this year in Montreal, Canada. For many of the regulars to DebConf, this is the high point of the year, the two weeks of high bandwidth communications with our online colleagues we eagerly look forward to, and its nearness is easily felt in the different communication channels the project uses for its day-to-day development.
Traceroute is a wonderful computer networking diagnostic tool. This article will attempt a traceroute script written in Python, including a customization that can identify just the routers within your private network (from the host up to and including the public/internet gateway). Continue reading
In 2017, General Electric (GE), one of the largest American companies that specializes in oil and gas, healthcare, aviation and software development, and Eurelectric, the union of the electric industry in Europe, partnered to create an Ecomagination Challenge hackathon. Ecomagination refers to “GE’s growth strategy to enhance resource productivity and reduce environmental impact at a global scale through commercial solutions for our customers and through our own operations”. The focus was on building digital solutions to help decarbonize energy and transportation in Europe, and the hackathon was held in Berlin between June 12-13, where over 100 participants from around the world came together to compete on solving the two challenges presented: Electrification and Advanced Manufacturing. Continue reading
In this post, I am going to talk about the relations in WordNet (https://wordnet.princeton.edu) and how you can use these in a Python project. WordNet is a database of English words with different relations between the words.
Take a look at the next four sentences.
In Natural Language Processing, we try to use computer programs to find the meaning of sentences. In the above four sentences, with the help of WordNet, a computer program will be able to identify the following –
Let’s get started with using WordNet in Python. It is included as a part of the NLTK (http://www.nltk.org/) corpus. To use it, we need to import it first.
>>> from nltk.corpus import wordnet as wn