Millenials (people born after 1980 and before 2000) are defined as : lazy entitled unattached not motivated by money want more holidays more horseshit The point of this post is to share a truth more and more commonly agreed upon: Millenials are not real. “Millennials” as a concept is mainly a huge pile of crap. And I just stumbled upon wonderful talk by Adam Conover, and I think he made the point pretty brilliantly so please what the talk..
|
|
Despite his nickname, SerHack is not an hacker. SerHack (SeərHæck) is a security researcher, developer, and writer. He started his career with development of payment gateways for a popular cryptocurrency. Since then he has reported several bugs and security issues, many of them CVE. He is widely known for reporting the MEGA incident and conducts different malware analyses. Additionally, SerHack contributes to the Monero project – a cryptocu..
|
|
This page is for people who like my work and would like to boost my projects. At the moment, I’m writing the second edition of “Mastering Monero” and a new resource named “Breaking Cryptocurrencies”. I have several ideas in my mind that needs funding, so please don’t hesitate to contact me for more information. Thanks to your support, I’ve been able to realize this blog and the books I’ve mentioned earlier. -Continue to read the article on ..
|
|
Painting in Progress - from imagination As I return to the painting on my easel, reworking both the major figures and probably everything else as well, I am put to mind of a lesson by a former teacher, Carol Pylant . She told me to be paint over the edges of my foreground figures when working on backgrounds, so the backgrounds don’t get too “stiff.” Of course, this applies not just to edges. “If you painted it once, you can paint it ....
|
|
There used to be a bash thread, now there's not. Lets change that. Here's a thing for expanding aliases in zsh #------------------------------- # ealias #------------------------------- typeset -a ealiases ealiases=() function ealias () { alias $1 ealiases+=( ${1%%\=*} ) } function expand- ealias () { if [[ $LBUFFER =~ "(^|[;|&])\s*( ${(j:|:)ealiases} )\$" ]]; then zle _expand_alias ..
|
justAnExample is a series where I share some interesting UX / UI and smart copy for your inspiration (and my archive of references). Here today we have a newsletter done by Derek Powazek– veteran startup guy now growing vegetables in a farm. Why this is good : Transparency Empathy Humor Transparency Sharing his lack of clarity, being very honest from the beginning is a good way to get your people to trust you.
|
justAnExample is a series where I share some interesting UX / UI and smart copy for your inspiration (and my archive of references). Here today we have a newsletter done by Derek Powazek– veteran startup guy now growing vegetables in a farm. Why this is good : Transparency Empathy Humor Transparency Sharing his lack of clarity, being very honest from the beginning is a good way to get your people to trust you.
|
|
Lots of software projects struggle when they try to implement search-related features. I was reminded of this by @trek's reaction to this Algolia marketing tweet: Development teams often delay building search due to lack of confidence in getting it right & fear that it will take longer than
|
|
Python Workload now officially supported in Visual Studio 2017
-
nicolaiarocci.com
-
9 years ago
-
eng
Visual Studio 2017 just received an update ( version 15.2 ). Among other nice things, this update brings full support for Python back into the official release of VS2017. As you might recall (see my old whiny post ), previously Python was only available with Visual Studio 2017 Preview (a separate install). I just upgraded my copy of Visual Studio, added the Python Development Workload to it via the VS Installer, and finally (and very hap..
|
|
Influencing the Young, Spanish-speaking Female Generation
-
engineering.cerner.com
-
9 years ago
-
eng
Outside of work, married couple Denisse Osorio de Large, a Cerner Director in Population Health Development, and Steven Large, a Cerner Senior Director in IP Development, are passionate about creating a younger generation that is passionate about technology and introducing them to the vast world of opportunities in software development. In addition to volunteering in the STEM community, helping organize Cerner’s development conference (DevC..
|
|
Influyendo en una generación de jovencitas de habla hispana
-
engineering.cerner.com
-
9 years ago
-
eng
Cuando no están trabajando, Denisse Osorio de Large, Directora de Cerner en Desarrollo de Salud Poblacional y Steven Large, Director sénior de Desarrollo de IP, quienes están casados, tienen como pasión crear una generación joven motivada por la tecnología y mostrarle a la misma el amplio mundo de oportunidades existentes en el desarrollo de software. Además de dar su tiempo como voluntarios en la comunidad promotora del área de ciencias, t..
|
|
There are abundant resources online trying to scare programmers away from using shell scripts. Most of them, if anything, succeed in convincing the reader to blindly put something that resembles
|
|
There are abundant resources online trying to scare programmers away from using shell scripts. Most of them, if anything, succeed in convincing the reader to blindly put something that resembles
|
|
I’m using omxplayer on the Raspberry Pi for video playback because it utilizes the Raspberry Pi’s hardware video decoding. Because the front-end is a separate application, I just need to remote control OMX Player to start and stop the video and figure out how far the video has played back already.
|
|
We’re getting ready to release a new version of the Nextcloud snap with a few new features, including: Supporting changing ports from the default 80/443. Supporting Samba shares. We’d love this new version (particularly these new features) to get some exercise before we release it. Feel like helping? We’ve put together some smoke tests to get you started. Please test all you can, but if you only have time to focus on the smoke tests cover..
|
|
Geoeditor is a simple online app for collaborative creating and editing of basic geographical data - just draw points, polygons and lines on top of the maps directly in a web browser.
|
|
I've recently started using a VPN all the time (at least as much as possible). My more tinfoily nerd friends all recommended PIA so I signed up for that. There are some issues and frustrations I wasn't expecting so here's what I've seen so far. Extra-annoying captchas from ReCaptcha. It seems being on a VPN exit IP automatically classifies you for the most-frustrating setting of ReCaptcha. I've seen this even on PIA's own tech support f....
|
|
I have been upgrading a few projects from their original PCL profiles (now deemed obsolete) to the Net Standard platform specification. It turned out to be a relatively straightforward process, but it does have its small hurdles, especially so if in the meantime you also want to transition to the new, streamlined, .csproj format as the migration will leave you with a now obsolete project.json project. In this article, I will cover upgradi..
|
|
The OWASP Top 10 is a well known index of web app security vulnerabilities which is used every day by security professionals, but it doesn’t currently take into account how often those vulnerabilities are used by hackers. We dug through security breach records to see which vulnerabilities are exploited most frequently.
|
|
Prelude This post is part of a series designed to make you think about your own design philosophy on different topics. If you haven’t read the following post yet, please do so first: Develop Your Design Philosophy Introduction Systems cannot be developed assuming that human beings will be able to write millions of lines of code without making mistakes, and debugging alone is not an efficient way to develop reliable systems. - Al Aho..
|
|
Our new GeoEditor mobile app brings comfortable drawing tools, importing own maps into mobile devices, various base maps, standardized data formats, and much more!
|
Converting a Javascript Dictionary To GET URL Parameters I've had serveral instances in the recent past where I needed to take a javascript dictionary and convert it into a set of GET parameters to be used in a URI. Usually this happens when I'm building an AJAX request. Anyway, since I've used this function over and over I thought I'd post it incase it helps any of you Googling for something similar. Here's the function... Javascript to co..
|
|
This is just a quick pie chart illustrating the time spent when ever I am working on either my car or friend and family’s car.
|
Recently everyone seems to be really excited about functional programming and its concepts. However, many people don't talk about recursion and, especially, about proper tail calls, which is really...
|
Recently everyone seems to be really excited about functional programming and its concepts. However, many people don't talk about recursion and, especially, about proper tail calls, which is really...
|
|
How to identify software licenses using Python, Vector Space Search and Ngram Keywords
-
boyter.org
-
9 years ago
-
eng
EDIT – I have since taken the ideas below improved them and released a command line application you can use to build software license reports https://github.com/boyter/lc/ The below is mostly a log of my thought process while building out some functionality that I wanted to add into searchcode server . I kept a record of progress and thoughts while doing this in the hopes that I get some sort of useful blog post out of it. It has been..
|
|
Software engineering and coding are two very different concepts. As a software engineer, I write code on a daily basis, but the value that a good software engineer provides to a business is so much more. This is emphasised by The Entelect Way. What is The Entelect Way? I’m a software engineer at Entelect , a software engineering and solutions company based in South Africa. The Entelect Way is a set of guiding principles for software deli....
|
A practical guide to native CSS custom properties covering syntax, scoping, nesting and how they compare to SASS variables
|
A practical guide to native CSS custom properties covering syntax, scoping, nesting and how they compare to SASS variables
|
A practical guide to native CSS custom properties covering syntax, scoping, nesting and how they compare to SASS variables
|
|
Recently, while operating two different remote-controlled appliances, I realized that it was high time for a discussion about declarative and imperative paradigms. Let’s start by looking at the two remotes: Two different "remotes". The one on the left operates a television, and the one on the right controls a central heating and cooling system. At first glance you will notice that one of these remotes is dark, and the other is light. Yo..
|
|
Recently, while operating two different remote-controlled appliances, I realized that it was high time for a discussion about declarative and imperative paradigms. Let’s start by looking at the two remotes: Two different "remotes". The one on the left operates a television, and the one on the right controls a central heating and cooling system. At first glance you will notice that one of these remotes is dark, and the other is light. Yo..
|
|
There is a popular trend among some Javascript developers to argue that humans should stop writing CSS and HTML (and HTML-based templates). They argue everything should instead be written as Javascript, to reduce complexity and present a more unified developer experience. And certainly many people who try this approach like
|
|
What language should be taught as the first language on a university computer science degree course?
-
www.databasesandlife.com
-
9 years ago
-
eng
A friend of mine asked me for my opinions on what programming language should be taught in the introductory class of computer science at university. I remember this debate when I was at university 20 years ago, this debate has no doubt been raging for centuries. (This may not be literally true, or rather, it is just not yet literally true at the time of writing…) This is what I reckon. What do you reckon?
|
|
ROS production: create an Ubuntu Core image with our snap preinstalled [5/5]
-
kyrofa.com
-
9 years ago
-
eng
UPDATE: I’m leaving this series up for historical purposes, but please note that I no longer recommend Ubuntu Core or snaps for use in robotics. This is the fifth (and final) blog post in this series about ROS production. In the previous post we created a gadget snap to allow confined access to the Turtlebot. In this post, we’re going to put all the pieces from this series together and create an Ubuntu Core image with our ROS snap preinstal..
|
|
Many people have expressed an interest in contributing to Cardstack and have been clamoring for some docs to help them get started. This is the first of three posts I intend to ship in the near term to unlock some of that potential energy: Cardstack Architecture Notes. This post. A
|
Daphne Koller: What we’re learning from online education The lady from Courseratells you how it is done and what they have learned. Salman Khan: Let’s use video to reinvent education The guy who founded the Khan Academytalks to you about what online video can do for schooling and education.
|