This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# i3status configuration file. | |
# see "man i3status" for documentation. | |
# It is important that this file is edited as UTF-8. | |
# The following line should contain a sharp s: | |
# ß | |
# If the above line is not correctly displayed, fix your editor first! | |
general { | |
colors = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file has been auto-generated by i3-config-wizard(1). | |
# It will not be overwritten, so edit it as you like. | |
# | |
# Should you change your keyboard layout some time, delete | |
# this file and re-run i3-config-wizard(1). | |
# | |
# eerst de packages installeren : https://itsfoss.com/i3-customization/ | |
# i3 config file (v4) | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Good morning <name of recruiter>, | |
Thank you for your personal message! | |
I always appreciate that from the people of <company>, the personal note in a message. | |
I can still remember that I just left school and was overloaded by recruiters with the most fantastic dream jobs I could wish for. | |
That feeling that you are unique, I liked that! Heartwarming just. | |
But later it turned out that the recruiters randomly searched for keywords (such as .NET and C # and SQL, but also Angular, React, Knockout, Fullstack, MongoDb, Backend and blockchain) in a search engine and that my name with many thousands from that search engine at the same time. came. | |
Or also beating: that my email address apparently in a large list of carelessly selected companions stood and there is a very untactic email sent to it later showed that the person in question had no idea who I was and just what did ... | |
Or even worse, that I found out that no message was personal, but only 1 out of 1 from a job site was taken, in a so-called template was cas |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Goedemorgen <naam recruiter>, | |
Bedankt voor je persoonlijke bericht! En wat fijn dat we tutoyeren! En wat fijn dat je mijn naam goed hebt gespeld! | |
Dat waardeer ik altijd zo van de mensen van <bedrijf>, de persoonlijke notitie in een bericht. | |
Ik kan me nog goed herinneren dat ik net van school kwam en werd overladen door recruiters met de meest fantastische droombanen die ik maar kon wensen. | |
Dat gevoel dat je uniek bent, dat vond ik leuk! Hartverwarmend gewoon. | |
Maar later bleek dat de recruiters willekeurig naar trefwoorden zochten (zoals .NET en C # en SQL, maar ook Angular, React, Knockout, Fullstack, MongoDb, Backend en blockchain) in een zoekmachine en dat mijn naam met vele duizenden tegelijk uit die zoekmachine kwam. | |
Of ook tenenkrommend : dat mijn emailadres blijkbaar in een grote lijst onzorgvuldig geselecteerde lotgenoten stond en daar een zeer ontactische email naar gestuurd wordt waaruit later bleek dat de persoon in kwestie geen idee had wie ik was en gewoon maar wat deed… | |
Of nog erger, dat ik e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Disable-MicrosoftUpdate | |
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar | |
Set-TaskbarOptions -Lock -Dock Bottom | |
cinst notepadplusplus | |
cinst 7zip | |
cinst GoogleChrome | |
cinst Firefox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Disable-MicrosoftUpdate | |
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar | |
Set-TaskbarOptions -Lock -Dock Bottom | |
cinst notepadplusplus | |
cinst 7zip | |
cinst GoogleChrome | |
cinst Firefox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Deze query zorgt voor een verzameling van alle _LOG_ tabellen en doet een group by op aantal foutmeldingen op aflopende volgorde | |
*/ | |
declare @allthesqlwithunions nvarchar(max) = '' | |
declare @selectsql nvarchar(max) | |
declare @sqlstatement nvarchar(max) | |
set @sqlstatement = ' | |
declare log_cursor cursor for |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--works only for small databases with ~ < 200 tables... | |
declare @dropsql varchar(max) = '' | |
declare @tablename varchar(100) | |
declare tablecursor cursor for | |
select | |
t.name | |
from sys.dm_db_partition_stats s | |
inner join sys.tables t on t.object_id = s.object_id |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare @naam nvarchar(200) = 'Testnaam, J.M.S. van de' | |
select | |
fullname = @naam | |
,initials = substring(SUBSTRING(@naam, patindex('%, %', @naam)+1, len(@naam)), 0,patindex('%. %', SUBSTRING(@naam, patindex('%, %', @naam), len(@naam)))) | |
,middlename = ltrim(substring(SUBSTRING(@naam, patindex('%, %', @naam)+1, len(@naam)), patindex('%. %', SUBSTRING(@naam, patindex('%, %', @naam), len(@naam))), len(SUBSTRING(@naam, patindex('%, %', @naam)+1, len(@naam))))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Disable-UAC | |
Disable-MicrosoftUpdate | |
Disable-BingSearch | |
Disable-GameBarTips | |
Set-TaskbarOptions -Size Small -Lock -Dock Bottom -Combine Always -AlwaysShowIconsOff | |
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar | |
cinst notepadplusplus |