| ![]() | ![]() | ![]() | |||||
Powershell: CSV – How to select distinct unique values... Jared's Global Microbrand Want to quickly display unique values from a column in a CSV file but also want to skip over the first few header rows? Powershell code: Get-Content C:UsersjaredDocumentsfile.csv | select -skip 6 | ConvertFrom-Csv -Header ‘COL1’, ‘COL2’, ‘COL3’ | select … Continue reading → Mon, May 04 2020 Installing nginx on Windows subsystem for Linux Jared's Global Microbrand Install nginix sudo apt-get install nginx Add the below line (in bold) to /etc/nginx/nginx.conf user www-data; master_process off; worker_processes 4; Comment out this line in /etc/nginx/sites-available/default # listen [::]:80 default_server ipv6only=on; $ sudo service nginx start Test it out from the command … Continue reading → Mon, May 04 2020 Installing nginx on Windows subsystem for Linux Jared's Global Microbrand Install nginix sudo apt-get install nginx Add the below line (in bold) to /etc/nginx/nginx.conf user www-data; master_process off; worker_processes 4; Comment out this line in /etc/nginx/sites-available/default # listen [::]:80 default_server ipv6only=on; $ sudo service nginx start Test it out from the command … Continue reading → Thu, Oct 13 2016 Setting up Juniper junos command aliases Jared's Global Microbrand At command prompt, create the file: root@lab-SRX% vi /var/db/scripts/op/sit.slax version 1.0; ns junos = " [link] ns xnm = " [link] ns jcs = " [link] import "../import/junos.xsl"; match / { { var $cmd = 'show interfaces terse'; var $out = jcs:invoke($cmd); copy-of … Continue reading → Tue, Aug 16 2016 You know you’re a geek when you use xpath to... Jared's Global Microbrand My dog loves to go for a walk on the beach, especially when it’s during low tide.  Being too lazy to pull up and manually check daily when the tide will be low at my local beach, I developed a script … Continue reading → Tue, Mar 22 2016 Let’s Encrypt! Checking your HTTPS certificate... Jared's Global Microbrand Let’s Encrypt offers free HTTPS certificate for your website.  The catch is that they are valid for only 90 days so the certificate has to be renewed four times a year. The instructions here have made it painless to automatically renew the certificates via … Continue reading → Tue, Mar 22 2016 Windows – Registering Putty for SSHS:// custom URI... Jared's Global Microbrand One of things that I do to simplify my job is to maintain a local webpage listing servers that I can SSH into.  With Windows, I can register the sshs:// URI scheme to putty.exe Windows executable.  Any links starting with sshs:// will be … Continue reading → Wed, Oct 21 2015 Quickly get a Flask/Python app running quickly alongside... Jared's Global Microbrand Quick guide to setting up a Flask/Python web app at default root URL alongside phpMyAdmin running off \phpmyadmin sudo apt-get install nginx sudo apt-get install mysql-server Be sure to install mysql server before installing phpmyadmin. sudo apt-get install phpmyadmin sudo … Continue reading → Mon, Jul 27 2015 Ultimate NGINX reverse proxy to WordPress / PHP / Python /... Jared's Global Microbrand For years, I’ve relied on Apache web server on my personal machine to continually hone my web programming chops and it doesn’t hurt to readily have a working server configuration for quick reference. While Apache has performed brilliantly, it was time to switch and … Continue reading → Wed, Jul 22 2015 Mobaxterm – setting up Git with CA certificate bundle Jared's Global Microbrand On my Windows machine, I use Mobaxterm, which is a great environment based on Cygwin and gives me an UNIX-like alternative to Windows command window. Git can be set up but needs some configuration first before it’ll work flawlessly. [link] … Continue reading → Thu, Jul 16 2015 GNS3: Offloading DHCP service to another router acting as... Jared's Global Microbrand Most tutorial examples (for reasons of simplicity) will include DHCP server configuration on the same router that’s connected to the multiple VLANs so that IP addresses can be provided to devices on the network. For a more clean (and realistic) … Continue reading → Thu, Jul 16 2015 lightweight HTTP sink using socat Jared's Global Microbrand Quick n’ dirty way to run a HTTP sink (on a server that isn’t supposed to have a HTTP server running) to catch bots scanning all machines across your network. socat -T 1 -d -d --- system:â€echo -e \â€\\\â€HTTP/1.0 200 … Continue reading → Thu, Jul 16 2015 Mobaxterm – setting up Git with CA certificate bundle Jared's Global Microbrand On my Windows machine, I use Mobaxterm, which is a great environment based on Cygwin and gives me an UNIX-like alternative to Windows command window. Git can be set up but needs some configuration first before it’ll work flawlessly. [link] … Continue reading → Mon, Jun 29 2015 GNS3: Offloading DHCP service to another router acting as... Jared's Global Microbrand Most tutorial examples (for reasons of simplicity) will include DHCP server configuration on the same router that’s connected to the multiple VLANs so that IP addresses can be provided to devices on the network. For a more clean (and realistic) … Continue reading → Mon, Jun 08 2015 lightweight HTTP sink using socat Jared's Global Microbrand Quick n’ dirty way to run a HTTP sink (on a server that isn’t supposed to have a HTTP server running) to catch bots scanning all machines across your network. socat -T 1 -d -d --- system:â€echo -e \â€\\\â€HTTP/1.0 200 … Continue reading → Mon, Mar 30 2015 Watching in real-time IPv4 network interface changes Jared's Global Microbrand Note: I ignore local loopback and virtual networks.  Your setup may be different. watch -n 1 'ip addr | grep inet | grep -v inet6 | grep -v "127.0.0.1" | grep -v  192\.168\.76 | grep -v 172\.16\.  | awk '\''{print … Continue reading → Mon, Apr 07 2014 Boogie Board Sync and how to merge multiple PDFs into one... Jared's Global Microbrand My wife surprised me with a cool gadget called Boogie Board Sync, which allows me to write down notes in a natural way and digitally save them to PDFs. It pretty much works as advertised. You write down a single … Continue reading → Wed, Mar 26 2014 Removing default “Samsung Mobile†bookmark... Jared's Global Microbrand One of the annoyances about Samsung Android devices such as the Galaxy Tab 3 and Galaxy S3 or S4 is that when you open Chrome app, there is a bookmark folder called “Samsung Mobile†which opens by default. This folder … Continue reading → Wed, Oct 09 2013 Reverse order sort du -h human-readable output Jared's Global Microbrand du -d 1 -h | perl -e'%h=map{/.\s/;99**(ord$&&7)-$`,$_}`du -d 1 -h`;die@h{reverse sort%h}' MacBook-Pro.-=[jnevans] /var/log # sudo ~jnevans/sortd.sh 192K ./cups 728K ./krb5kdc 2.1M ./DiagnosticMessages 11M ./asl 22M . Hat tip to [link] Want it in your .bashrc? alias dsize='du -d 1 -h | … Continue reading → Mon, Feb 25 2013 Useful: how to move a running process into a screen terminal Jared's Global Microbrand One of the useful things about using screen (a terminal multiplexer) console is that you are able to detach from the screen terminal while keeping your running session alive.  At a later time (such as when you arrive home from … Continue reading → Mon, Feb 25 2013 Better Late than Never: following up on Google HTTPS using... Jared's Global Microbrand [Above image is the famous Caesar Cipher] One of the things that irked me about how Google handled the security of their HTTPS traffic was the lack of DHE ciphers.  I banged out a post “Google and Amazon do not … Continue reading → Mon, Feb 25 2013 Useful: how to suspend a running process then resume it... Jared's Global Microbrand Most of the time, when I start a long-running process, I do it from within a screen terminal for one major reason. When I’m ready to go home, I can simply detach from screen terminal and leave the process running. … Continue reading → Fri, Feb 08 2013 Better Late than Never: following up on Google HTTPS using... Jared's Global Microbrand [Above image is the famous Caesar Cipher] One of the things that irked me about how Google handled the security of their HTTPS traffic was the lack of DHE ciphers.  I banged out a post “Google and Amazon do not offer ciphers using Diffie-Hellman Ephemeral mode.“, way back in Oct 2010. Tonight, out of the [...] Wed, Jan 16 2013 Reverse order sort du -h human-readable output Jared's Global Microbrand du -d 1 -h | perl -e’%h=map{/.\s/;99**(ord$&&7)-$`,$_}`du -d 1 -h`;die@h{reverse sort%h}’ MacBook-Pro.-=[jnevans] /var/log # sudo ~jnevans/sortd.sh 192K ./cups 728K ./krb5kdc 2.1M ./DiagnosticMessages 11M ./asl 22M . Hat tip to [link] Fri, Dec 07 2012 Ubuntu: How to select and install (or pin) a package from a... Jared's Global Microbrand This is a follow-up to “Redis and php-resque on Ubuntu 12.04.†Why pinning a package may be desirable In the previous post, when adding the dotdeb.org repository to an Ubuntu system, then performing an system-wide upgrade,  mysql-server and php (if already installed) will be also upgraded to the latest versions available from the dotdeb repository. [...] Wed, Aug 29 2012 Redis and php-resque on Ubuntu 12.04 Jared's Global Microbrand During my free time, I help to administer a machine hosting several websites which generate copious amount of traffic and at times, there can be a significant load on the server. These websites require many tasks running on the back end to keep content fresh for incoming visitors.  These tasks include sending out emails, polling [...] Sat, Aug 18 2012 Today, a new advancement in VRS calling Jared's Global Microbrand It's days like this that make me proud that I'm part of the engineering team at ZVRS. This morning, at the NAD conference, ZVRS worked with Google on a demo of our prototype ZVRS app for Google+ Hangouts. The ZVRS app for Hangouts extends the functionality of a Google+ Hangout to allow a deaf person [...] Fri, Jul 06 2012 Tropical storms: How the deaf can monitor tornado warnings Jared's Global Microbrand [caution to the reader: this post has extreme snarkiness] Unwelcome visitor: TS Debby Yesterday was an eye-opening experience for me. Central Florida got slammed by tropical storm Debby which wrecked havoc in certain areas.  Debby unleashed 13 inches of rain in Pinellas county in 96 hours and caused flooding in the Tampa Bay area. [Water [...] Tue, Jun 26 2012 mishkazena liked this Until next time, my friend Jared's Global Microbrand For a long time, I've been dreading writing this blog post about one of the most amazing persons I've ever had the privilege of knowing, Daniel Stephen Foster.  For years, he had been suffering from a host of health issues and it all caught up with him early Sunday morning, June 10, 2012. To paraphrase William Shakespeare's [...] Fri, Jun 15 2012 Joining ZVRS Jared's Global Microbrand I'm thrilled to announce that I will be joining ZVRS, a company providing video relay services. I'm looking forward to working at a company that aims to improve the quality of life for deaf people by enabling them to make calls 24/7/365. My primary duties will include maintaining and expanding the network infrastructure as well [...] Thu, Sep 29 2011 How to call video relay service (VRS) with Linux / Ubuntu Jared's Global Microbrand How to call VRS from inside Linux-based OS such as Ubuntu Background information for people not familiar with VRS: Video Relay Service is one of the most useful service provided to deaf Americans. This service enables deaf people to initiate a phone call to hearing people by using a video application to connect with a [...] Wed, May 18 2011 Great educational video about ASL for families with a deaf... Jared's Global Microbrand This is a fantastic video documentary on the importance of teaching American Sign Language to deaf children, especially in this age of deaf babies growing up with cochlear implants. Too often, ASL is disregarded when believing the myth that learning sign language will stun the child's potential. ASL is one of the critical components, along [...] Tue, Feb 08 2011 A world-class iPhone app for the deaf: Captionfish Jared's Global Microbrand Have you tried to find captioned movies near your home? If so, you've probably visited a fantastic website called Captionfish ( [link] which is the brainchild of a deaf developer and designer: Chris Sano (software engineer at Microsoft) and Brendan Gramer (user experience designer at Amazon). It has always been a hassle for deaf people when trying to [...] Fri, Aug 27 2010 Topics of the network security class I’ll be teaching... Jared's Global Microbrand This fall, I'll be teaching a network security class for the IT program at Gallaudet University: Here's an overview of the topics in order. At this time, I'm open to further suggestions and feedback. Goals and attitude of the network security professional: “Prevention eventually fails.” Federal Laws covering computer hacking, fraud, abuse, intrusions... Thu, Aug 05 2010 Following up on Kokonut Pundit’s iPhone video calling... Jared's Global Microbrand Kokonut Pundit's post brings up valid concerns regarding using video relay service (VRS) over iPhone 4's new video calling app called FaceTime. When you have a cellphone that is capable of making video calls such as iPhone 4 or the Sprint EVO, the service comes with a monthly bandwidth cap, beyond which the phone company [...] Mon, Jul 19 2010 Watch Marlee Matlin at the FCC hearing on Broadband Access... Jared's Global Microbrand Marlee Matlin shows up at around 26:20 into the video. Sat, Nov 07 2009 lucyko liked this A passage to Gallaudet University Jared's Global Microbrand The i's have been dotted and the t's have been crossed. It's now official that I will be joining the Information Technology team at Gallaudet University this October. Gallaudet University has always been on the list of places where I would like to work. After several meetings with Jon Mitchiner and [...] Sun, Sep 13 2009 Kudos to David Curlee for including the ASL terp in panel... Jared's Global Microbrand Wordpress is a popular CMS usually reserved for blogging but can be adapted for many different purposes. Every year, there are Wordpress camps in different cities where web developers can go and take part in workshops to learn more about this CMS. Thanks to Grant Laird who was persist and pushed for ASL interpreters at [...] Fri, Aug 07 2009 My powerpoint presentation at DCARA vlog symposium Jared's Global Microbrand I've uploaded the presentation I gave at DCARA vlog symposium and you can view it by downloading it here. It covers the evolving world of social media, including the changing role of blogs with new players on the scene: Facebook and Twitter. Enjoy! Tue, Jul 21 2009 LaRonda liked this Twitter Mosaic Jared's Global Microbrand My Twitter Mosaic of people I follow: Wed, Jul 08 2009 Dianrez liked this A step closer to online captions! The bill is introduced in... Jared's Global Microbrand Last Friday on June 26th, Congressman Edward Markey introduced the 21st Century Communications & Video Accessibility Act of 2009 to the Congress. This is a significant step forward in a push for online captions on the Internet. This bill represents the effort of many people in to improve accessibility on the Internet. If you support this bill [...] Mon, Jun 29 2009 jnevans, ecnarb, aslperformingarts, DeafPundit, tayler liked this Presenting at DCARA vblog symposium this Saturday Jared's Global Microbrand DCARA will be hosting a very special day this Saturday: Vblog Symposium during the day and a Wine & Cheese fund-raising event at night. There will be a dizzying array of exciting presentations by experienced Deaf vbloggers which can be seen on the second page of this PDF. I'm looking forward to bumping into them again and [...] Thu, Jun 25 2009 Netflix CEO really doesn’t care about subtitles/captioning Jared's Global Microbrand I'm sickened at Netflix CEO, Reed Hastings' attitude towards subtitles and captioning for their portfolio of online movies that can be instantly watched. He claims that it's too difficult and the technology isn't here which is the furthest thing from the truth. I've been faithful Netflix customer for years and have submitted numerous r... Fri, May 29 2009 Amy Cohen Efron and Barbara DiGiovanni, you both have my... Jared's Global Microbrand I typed up a comment which I felt deserved it's own post. This is in reference to the furor that has developed over Deaf Pundit's objection to a vlog by Bard DiGiovanni as well as Aidan's response to Deaf Pundit. —- I think everyone needs to remember all the great things that both Amy and Barbara [...] Tue, May 26 2009 Jackie Chan and Deaflympics Taipei 2009 Jared's Global Microbrand Great seeing the world-famous Jackie Chan sign in this video for Deaflympics at Taipei 2009! Mon, Feb 23 2009 Will be videoblogging remotely at the inauguration Jared's Global Microbrand BB -> blog & FB VID 00031.3GP I'm going to the Obama Inauguration and while there, will be using my blackberry to capture some video and uploading instantly to my blog and Facebook. Sent from my BlackBerry Mon, Jan 19 2009 Watching the Inauguration online Jared's Global Microbrand While I'll be braving the frigid weather at the Washington Mall for Obama's presidential inauguration ceremony, many of you will be watching it in a warm room on the TV. But.... what if you aren't near a TV at the time? Here's a good list of websites to watch the inauguration live online: [link] As for subtitles or [...] Sat, Jan 17 2009 SubPLY offering free captioning of YouTube video clips Jared's Global Microbrand Thanks to Bionic Ear, I found out about PLYmedia, which offers professional subtitling/captioning tools and services for online web clips. They recently launched SubPLY which offers a plugin for your video player so you can simply send the url of the video clip to SubPLY human translators who will take care of the subtitling work. [...] Tue, Dec 30 2008 A movie with many parallels to the Deaf community Jared's Global Microbrand I watched the movie “Fearless” (or “Huo Yuan Jia”) and couldn't help but see many parallels between the film and the history of the signing Deaf community in midst of a hearing society. The movie is loosely based upon a man called Huo Yuanjia who actually existed in late 1800s China. During his time in China, [...] Sun, Dec 14 2008 Three deaf guys and NAD kick some ADA booty in Washington...
Jared's Global Microbrand NAD along with three Redskins fans Shane Feldman, Brian Kelly, and Paul Singleton have successfully sued the FedEx Field where Redskins games are hosted. Because of them, the stadium will be more accessible to the deaf. The judgment in this lawsuit was long in coming (ongoing since 2006) but they ultimately prevailed! Hopefully, this will [...] Thu, Oct 02 2008 |
»Top Ten Posts 1045. Just another normal theater experience – Alexandria...1046. Governor Office Briefing 1-15-2021 Part 21047. Mr. Boris Decker, French Comedian1048. Governor’s Office Briefing 1-15-20211049. Abdullah Al-Omari1050. C.O.V.I.D. Tips for Families with DHH Children1051. Major1052. Kisii School of the Deaf |
DeafRead ServicesSyndicationView New Videos by the Signing Community © 2021 DeafRead and TaylerInfomedia DeafRead does not endorse any of the blogs by the mere act of publishing. | ||||||
| ![]() | ![]() | ![]() | |||||