Interesting project on github: [Wayback/Archive] mustafaakin/cast-localvideo.
Via: Mustafa Akın – Google+ – If anyone is interested, I made a local video player on….
–jeroen
Posted by jpluimers on 2014/03/09
Interesting project on github: [Wayback/Archive] mustafaakin/cast-localvideo.
Via: Mustafa Akın – Google+ – If anyone is interested, I made a local video player on….
–jeroen
Posted in Chromecast, Development, ffmpeg, Google, Media, Power User, Software Development | Leave a Comment »
Posted by jpluimers on 2014/03/09
Ilya Grigorik – Google+ (from Google) shared a link to tldrlegal.com/: TLDRLegal – Software Licenses Explained in Plain English.
Very convenient to have all these licenses in one central places, bot for developers and consumers of software.
He also found why on certain devices (for instance Android Nexus 4) you get a security warning when viewing that site:
the www is missing from the certificate, so http://www.tldrlegal.com is not included in it: Qualys SSL Labs – Projects / SSL Server Test / tldrlegal.com.
For those devices apparently, https://tldrlegal.com redirects to https://www.tldrlegal.com giving the security warning.
On most desktop browsers, you see https://tldrlegal.com perfectly fine.
–jeroen
via:
(I tagged this post with .NET and Delphi because that’s what I used most for Software Development, of course it applies to any kind of software development).
Posted in .NET, Delphi, Development, Software Development | Leave a Comment »
Posted by jpluimers on 2014/03/08
Even though 3 years old, this is still relevant. Thanks Ilya Grigorik for pointing me at it.
Make sure your HTML HEAD tag has the elements in the below order:
Why? Read Best Practice: Get your HEAD in order – IEInternals – Site Home – MSDN Blogs.
So the document element starts like this: Read the rest of this entry »
Posted in Development, HTML, HTML5, Software Development, Web Development | Tagged: HTML HEAD tag | Leave a Comment »
Posted by jpluimers on 2014/03/07
Nice video when using either of the RemObjects Elements (Oxygene or Hydrogene): for creating a UI UINavigationController – remobjects.
–jeroen
Posted in .NET, C#, C# 1.0, C# 2.0, C# 3.0, C# 4.0, C# 5.0, Development, Oxygene, Pascal, RemObjects C#, Software Development | Leave a Comment »
Posted by jpluimers on 2014/03/07
Funny charts at andrewvos.com – Amount of profanity in git commit messages per programming language.
The source is online too: AndrewVos/github-statistics.
And it led me to this really nice way of choosing your chart type.
Click to enlarge… Read the rest of this entry »
Posted in .NET, C#, C++, Development, Java, JavaScript/ECMAScript, Perl, PHP, Ruby, Scripting, Software Development, Web Development | 2 Comments »
Posted by jpluimers on 2014/03/07
lesspipe is a great tool:
lesspipe.sh is an input filter for the pager less as described in less‘s man page. The script allows you to view files with binary content, compressed files, archives and files contained in archives.
… however getting it to run on OpenSUSE was a bit of a journey as it is not part of the standard OpenSUSE 12.x repository. You can only get ‘unstable’ lesspipe packages, of which the Show home:adra / lesspipe – openSUSE Build Service seems to be maintained most frequently.
This is how to install it from there: Read the rest of this entry »
Posted in *nix, bash, Development, Linux, openSuSE, Power User, Scripting, Software Development, SuSE Linux | 2 Comments »
Posted by jpluimers on 2014/03/07
From Alexandre GOUAILLARD:
I see a lot of questions on the mailing list, in my course, and during the meetups about the different states and flow of a peer connection. I thought I should share a slide that shows an overview of what you should expect, as it proved helpful for some as a reference.
Posted in Communications Development, Development, Internet protocol suite, TCP, WebRTC | Tagged: Alexandre GOUAILLARD | Leave a Comment »
Posted by jpluimers on 2014/03/06
Like When DelphiSpeedup cannot register itself in Delphi on Windows Vista/7/8, GExperts also had problems installing on Windows Vista and up when Delphi runs in a non-elevated account.
It said it installed fine, but it didn’t get included when Delphi was started. The reason was that it got installed in the wrong root key.
What happened is that GExperts installed itself into the HKLM root:
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Borland\BDS\5.0\Experts]
GExperts=C:\Program Files (x86)\GExperts for Delphi 2007\GExpertsDelphi2007.dll
But it should have installed itself in the HKCU root: Read the rest of this entry »
Posted in Batch-Files, Delphi, Delphi 2007, Development, Scripting, Software Development | Leave a Comment »
Posted by jpluimers on 2014/03/06
When using the Windows FIND console application, it will insert a dashed line
C:\Users\Developer>echo Foo > %temp%\foo.txt
C:\Users\Developer>find "Foo" %temp%\foo.txt
---------- C:\USERS\DEVELOPER\APPDATA\LOCAL\TEMP\FOO.TXT
Foo
This is really annoying when using FIND to parse files, and redirect the output fur further processing.
But there is a way around it, as find will not emit the dashed line when it the input is not a file, but stdin: Read the rest of this entry »
Posted in Batch-Files, Development, Scripting, Software Development | 1 Comment »