Tortoise CVS overlay icon is not visible in Windows 10 x64 > solution : delete OneDrive with a simple commands

Managing overlay icons for Dropbox and TortoiseSVN and TortoiseGit https://www.garethjmsaunders.co.uk/2015/03/22/managing-overlay-icons-for-dropbox-and-tortoisesvn-and-tortoisegit/

****

2018.01.07 update:

navigate to: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ShellIconOverlayIdentifiers

delete skydrive(onedrive) folders: https://superuser.com/questions/236292/tortoise-cvs-icons-not-visible-in-win-7-x64

**************************
Tortoise CVS, GIT, SVN icons not visible in Win 10 x64

I bought a new laptop with Windows 10.
I installed Tortoise CVS client (1.12.5) I didn’t see overlay icon on the file or folder.

I found several solution (Regedit, Reinstall, Windows XP version).
At the end I found the elegant, simple, useful, working solution in this comment: “removing OneDrive helps me”

On the Lifehacker page contains few coomands how You can delete OneDrive.

http://lifehacker.com/how-to-completely-uninstall-onedrive-in-windows-10-1725363532

#########################################

Open Command Prompt in Administrator mode:
Right-click on the Windows icon in the taskbar and select Command Prompt (Admin).

Type in
taskkill /f /im OneDrive.exe
to terminate any OneDrive processes and hit Enter.

Then type in either
%SystemRoot%\System32\OneDriveSetup.exe /uninstall
if you’re using 32-bit Windows 10
or %SystemRoot%\SysWOW64\OneDriveSetup.exe /uninstall
if you’re using 64-bit Windows 10 and hit Enter.

#########################################

OneDrive reinstall: Download Windows Essentials 2012 : https://support.microsoft.com/hu-hu/help/14220/windows-movie-maker-download

****************************

Searching History:

File Icons are not displayed in Windows 10 : https://gitlab.com/tortoisegit/tortoisegit/issues/2548

> removing OneDrive helps me. thanks

Tortoise CVS icons not visible in Win 7 x64 : http://superuser.com/questions/236292/tortoise-cvs-icons-not-visible-in-win-7-x64

TortoiseGit icons not showing correctly : https://gitlab.com/tortoisegit/tortoisegit/issues/692

Exchange szerverhez kapcsolódó Microsoft Outlook (Business) helyett ingyenes megoldás eM Client

A Home Office csomagban található Outlook-ban nincs Exchange szerverhez kapcsolódás, az MS business Office drága.

Az eM Client jó megoldás: http://www.emclient.com/?lang=en

Tapasztalat: Kapcsolódáskor a teljes hálózati nevet kellett megadnom RES\hálózati nevem.
Kapcsolódáskor automatikusan beállítódott az Exchange webszervíz, Címlista.

További alternatívák: http://www.itsmdaily.com/outlook-alternative-with-exchange-support/

Laravel : Raw Queries,

Raw Queries in Laravel : http://fideloper.com/laravel-raw-queries

A key concern when writing our own queries is protecting our application from SQL injection attacks. Normally, the query builder does this for us. However, when we write our own SQL, we need to make sure we don’t inadvertently remove this protection.

Here’s what we want to avoid:

$someVariable = Input::get(“some_variable”);

$results = DB::select( DB::raw(“SELECT * FROM some_table WHERE some_col = ‘$someVariable'”) );

In the above query, we’re directly adding user input into the query without sanitizing it. This leaves us open to attack!

DB::raw() is used to make arbitrary SQL commands which aren’t parsed any further by the query builder. They therefore can create a vector for attack via SQL injection.

How to execute raw queries with Laravel 5 : http://stackoverflow.com/questions/33049511/how-to-execute-raw-queries-with-laravel-5-1