-
Google’s Go Language
01 – The Go Programming Language – https://golang.org/doc/effective_go.html 02 – The Go Programming Language Specification – https://golang.org/ref/spec 03 – Go Cheat Sheet – https://github.com/a8m/go-lang-cheat-sheet 04 – Go at Google: Language Design in the Service of Software Engineering – http://talks.golang.org/2012/splash.article 05 – External Links – http://www.geektime.co.il/golang-101/
-
Saas – Free online photo-shop alternatives
Pixlr – A free online image editor. Enables to fix, adjust, and filter images in a browser Befunky – Produce stunning photographs and captivating designs with fun, easy-to-use editing tools. Canva – makes design simple for everyone. Create designs for Web or print: blog graphics, presentations, Facebook covers, flyers, posters, invitations and so. Photopea– Great…
-
Epic Pen – draw write highlight directly over software video webpages games
Description Epic Pen lets you draw, write or highlight directly over software, video, webpages or games. Unlike many other annotation tools we don’t just screenshot your desktop, we let you edit it live. Our easy to use software is great for business, academics and creatives alike. Make notes, give feedback, improve video tutorials & presentations…
-
80+ e-books on popular technologies for free
All the essential content in about 100 pages: http://www.syncfusion.com/resources/techportal/ebooks
-
Themes WordPress – JQuery for Mobile
Top 16 Best Looking jQuery Mobile Themes http://www.gajotres.net/top-10-best-looking-free-jquery-mobile-themes/. Convert CSS to RTL The simplest way is to add the following to each class of CSS: direction: rtl; /* Align text to right */ float: right; /* the text will flow from right */ text-align: right; /* the text will be aligned from right */ WordPress themes http://www.wordpress-themes.co.il/free-templates/
-
VOD – Israel Channel 1
http://www.iba.org.il/vod/
-
150.co.il – Remote connection and great webpage for support
Click on the following link to start support: http://www.150.co.il/
-
How to Build Open-Elec Kodi Media Center based on Raspberry Pi
The following guide is a very suggested configuration for Open-Elec based on Raspberry pi Media Center: Buy the following item: Wifi Adapter: Tenda W311MI Tenda W311M Realtek SD Card (Use maximum 16GB) USB Power Adapter Case 1 Case 2 Raspberry Pi Board (Quad Code 1GB ram) 1 Raspberry Pi Board (Quad Code 1GB ram) 2 Read The following Guide about…
-
XMind – mind mapping and brainstorming
XMind is a mind mapping and brainstorming software, developed by XMind Ltd. In addition to the management elements, the software can capture ideas, clarify thinking, manage complex information, and promote team collaboration for higher productivity. As of April 2013, XMind was selected as the most popular mind mapping software on Lifehacker (From wikipedia). Click…
-
Travelling to Prague
Diary Day 1 – 24/11/2015 Tuesday Astronomy Clock tower, Market, Sex museum. Day 2 – 25/11/2015 Wednesday Visit to old city, Vitus Cathedral. Brock Museum Concert – Vivaldi – four seasons. Day 3 – 26/11/2015 – Thursday Fashion-Arena mall. Mid Ages Restaurant. Day 4 – 27/11/2015 Friday Local Market, old city, Paladium Mall. Day 5…
-
All Black November shopping events
Amazon: http://www.amazon.com/b?ie=UTF8&node=384082011 ChinaBuy: http://www.chinabuygroup.com/english/ Aliexpress: http://www.aliexpress.com/?spm=2114.11030108.1000001.5.vBB62x Ebay: http://www.ebay.com/rpp/sales-events-en/geo-11-11-singles-day-row/?_trkparms=clkid%3D946975753875146132
-
pi-topCEED, the first $99 Raspberry Pi desktop!
pi-topCEED is the world’s most affordable way to use and learn with the Raspberry Pi. It comes ready to plug and play and includes a Raspberry Pi 2 so you can dive in to STEM (Science, Technology, Engineering, and Math) right away, all for just $99! pi-topCEED is a modular desktop. This means, just like…
-
Raspberry Verified Peripherals
SDCard Use maximum 16GB of SDCard cause raspberry PI doesn’t support above it. WIFI Wifi Adapters – http://elinux.org/RPi_USB_Wi-Fi_Adapters Top 5 wifi adapters for Raspberry – http://www.htpcbeginner.com/raspberry-pi-wifi-adapters-xbmc-kodi/ https://thepihut.com/collections/raspberry-pi-wifi Hardware Verified Peripherals: http://elinux.org/RPi_VerifiedPeripherals Remote Control CEC – Consumer Electronics Control: http://kodi.wiki/view/CEC http://bit.ly/20WGl3l
-
OpenBCI – Brain Computer interface
OpenBCI is an open source brain-computer interface. The OpenBCI was developed by Joel Murphy and Conor Russomanno, and crowd-funded by a successful Kickstarter campaign. The OpenBCI can be used to measure and record electrical activity produced in the brain (EEG), muscles (EMG), and heart (EKG), and is compatible with standard EEG electrodes. The OpenBCI can…
-
How to Add a Game to Your Xbox 360: Step-by-Step Guide
Learn how to add games to your XBox 360 with this step-by-step guide. Download the necessary software and follow the instructions for a seamless experience.
-
Measure Ms Sql Execution time in resolution of milliseconds
DECLARE @t1 DATETIME; DECLARE @t2 DATETIME; SET @t1 = GETDATE(); /* Put here the query to measure */; SET @t2 = GETDATE(); SELECT DATEDIFF(millisecond,@t1,@t2) AS elapsed_ms;
-
My first WordPress Plugin – using shortcodes – in 6 steps
In general you can browse to wordpress developer resources. 1. Create a directory under your wordpress root\wp-content\plugins\ShortcodeDemo. 2. Create file called ShortcodeDemo.php. 3. Paste to ShortcodeDemo.php the following content: <?php /* Plugin Name: Shortcode demo Plugin URI: Description: Shortcode Demo Version: 1.0 Author: Gabriel Magen Author URI: http://www.flash-jet.com License: GPLv2 */ add_shortcode( ‘fj’, ‘ch2ts_twitter_feed_shortcode’ ); function ch2ts_twitter_feed_shortcode( $atts )…
-
Adobe illustrator alternative with Paint.net
How to Open Adobe Illustrator .ai File in Paint.NET: Download Ghostscript software and install it on your system. Download zip file Illustrator Encapsulated PostScript plugin for Paint.NET and extract it. Go to the location where you have installed Paint.NET on your system and open folder named FileTypes. Copy and paste all the extracted files (step 2) to the location…
-
Remote Support tools – Ammyy Admin ShowMyPC TeamViewer AnyDesk tightvnc LogMeIn123 AeroAdmin
Ammyy Admin 01 – Zero-Config Remote Desktop Software Ammyy Admin. The easiest way to establish remote desktop connection. ShowMyPC 02 – ShowMyPC is a company with a mission to provide free and integrated collaboration tools for all users. ShowMyPC relies on many open technologies and provides its services free to everyone. In addition, ShowMyPC offers Premium services…
-
Temporary tables and Table variables – MsSQL
Temporary Tables The simple answer is yes you can. Let look at a simple CREATE TABLE statement: CREATE TABLE #Yaks ( YakID int, YakName char(30) ) Temporary tables are created in tempdb. If you run this query: CREATE TABLE #Yaks ( YakID int, YakName char(30) ) select name from tempdb..sysobjects where name like ‘#yak%’ drop…
-
Video Editor – VSDC
What is VSCD? The video editor enables you to edit files and create videos of any complexity. You can apply video and audio effects to edited objects, transform them, apply filtration and image correction. All popular video and audio formats are supported (both reading and saving). Download http://www.videosoftdev.com Note: At version 5.12.567 I faced a…
-
SQL SERVER – ENABLE QUERIES THAT REQUIRE TABLE RECREATION
At Sql Server Management studio sometime We run queries that changes table properties or structure. At this point We get an error message that says something like: “Please drop and recreate table…”. The solution for it is here:
-
Free Audio CD to MP3 Converter
Free Audio CD to MP3 Converter. Copy audio CDs into digital music. It is just beautiful in its simplicity. The outputs are saved using several quality presets as MP3, AAC, OGG, WMA or WAV (lossless audio) files into your computer, and they retain the name, artist and album of the source audio tracks. Free Audio…
-
PAZERA – AUDIO & VIDEO CONVERTERS, SYSTEM UTILITIES AND FREE SOFTWARE
On this page you will find programs to convert video and audio files, to analyze and compress Windows executable files (EXE), and several others. All applications published on this page are freeware and they can be freely distributed in any form (including web pages, CD/DVDs) as long as they are not sold for profit. http://www.pazera-software.com/
-
Ranking Functions
This article refers to AdventureWorks2014 of Microsoft. You can download AdventureWorks2014 DB here. At the following picture there are 4 ranking functions at MS SQL: 1. Row_number – Numbering each row. 2. Rank – According to example below when postal code change then the function displays the value of row_number at that position. 3. Dense_Rank –…
-
TV2Go – Online Live TV and Youtube channels
Watch online TV (Israel channels) and a lot of Youtube channels at TV2GO: http://www.tv2go.co.il/
-
#1 Drag & Drop Page Builder Plugin for WordPress 500,000+ People Can Not Be Wrong…
Visual Composer page builder plugin for WordPress – take full control over your site. Build any layout you can imagine with intuitive drag and drop editor – no programming knowledge required. http://vc.wpbakery.com/ http://codecanyon.net/item/visual-composer-page-builder-for-wordpress/242431 WHY VISUAL COMPOSER IS THE BEST PAGE BUILDER FOR WORDPRESS? Visual Composer features huge set of amazing premium plugin options like drag…
-
The best stylus for iPad
Comparison Post: http://www.theverge.com/2012/4/10/2925937/best-stylus-ipad-review A Pen: http://www.ebay.com/itm/Wacom-Bamboo-Stylus-Pen-Solo-2-GREEN-for-iPad-Air-Mini-1-2-Tablets-BRAND-NEW-/381347973721?hash=item58ca1c4a59 A Pen: http://www.ebay.com/itm/331677207908?_trksid=p2060353.m2749.l2649&ssPageName=STRK%3AMEBIDX%3AIT
-
HOW MUCH TO MAKE AN APP? Website? what is right for me?
Easily calculate the cost of a mobile application http://howmuchtomakeanapp.com/ Easily calculate the cost of a website http://howmuchdoesawebsiteco.st/ Which is right for my project? http://appvswebsite.com/