- Understanding the Syntax Barrier for Novices (http://doi.acm.org/10.1145/1999747.1999807)
- Usability Analysis of Visual Programming Environments (http://doi.acm.org/10.1006/jvlc.1996.0009)
- An investigation of factors related to self-efficacy for java programming among engineering students (http://www.tojet.net/articles/v8i1/813.pdf)
- The State of the Art in End-user Software Engineering (http://doi.acm.org/10.1145/1922649.1922658)
- How Do API Documentation and Static Typing Affect API Usability? (http://doi.acm.org/10.1145/2568225.2568299)
- The Programming Language Wars: Questions and Responsibilities for the Programming Language Community (http://doi.acm.org/10.1145/2661136.2661156)
- An Empirical Investigation into Programming Language Syntax (http://dl.acm.org/citation.cfm?doid=2534973)
- An empirical comparison of the accuracy rates of novices using the quorum, perl, and randomo programming languages (http://dl.acm.org/citation.cfm?doid=2089155.2089159)
- All Syntax Errors Are Not Equal (
This file contains hidden or 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
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions | |
Enable-RemoteDesktop | |
cinst adobereader | |
cinst googlechrome | |
cinst 7zip |
I hereby claim:
- I am FDeitelhoff on github.
- I am fdeitelhoff (https://keybase.io/fdeitelhoff) on keybase.
- I have a public key whose fingerprint is 59FD C5AF 8816 CF1B D13B 3CE5 A544 FCB6 6CBC 94CC
To claim this, I am signing this object:
This file contains hidden or 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
private void ProcessReceive(SocketAsyncEventArgs e) | |
{ | |
if (e.BytesTransferred > 0 && e.SocketError == SocketError.Success) | |
{ | |
var token = (AsyncUserToken)e.UserToken; | |
//echo the data received back to the client | |
var data = System.Text.Encoding.UTF8.GetString(e.Buffer, e.Offset, e.BytesTransferred); | |
data = string.Format("{0}: {1}", DateTime.Now, data.ToUpper()); |
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8" ?> | |
<configuration> | |
<configSections> | |
<sectionGroup name="featureSwitcher" type="FeatureSwitcher.Configuration.SectionGroup, FeatureSwitcher.Configuration"> | |
<section name="default" type="FeatureSwitcher.Configuration.DefaultSection, FeatureSwitcher.Configuration"/> | |
<section name="features" type="FeatureSwitcher.Configuration.FeaturesSection, FeatureSwitcher.Configuration"/> | |
</sectionGroup> | |
</configSections> | |
<featureSwitcher> | |
<default featuresEnabled="true"/> |
This file contains hidden or 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
#For PowerShell v3 | |
Function gitignore { | |
Param( | |
[Parameter(Mandatory=$true)] | |
[string[]]$list | |
) | |
$params = $list -join "," | |
invoke-WebRequest -Uri "http://gitignore.io/api/$params" | select -expandproperty content | out-file -FilePath $(join-path -path $pwd -ChildPath ".gitignore") -Encoding ascii | |
} |
This file contains hidden or 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
[diff] | |
tool = wdiff | |
[difftool "wdiff"] | |
cmd="wscript.exe \"c:\\Program Files\\TortoiseGit\\Diff-Scripts\\diff-doc.js\" \"$LOCAL\" \"`pwd`/$REMOTE\"" |
This file contains hidden or 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
private void MarkKinderkarden(int fromYear, int toYear) | |
{ | |
MarkRange(fromYear, toYear, Color.SteelBlue); | |
} | |
private void MarkRange(int fromYear, int toYear, Color color) | |
{ | |
var dayStart = fromYear*365; | |
var dayEnd = toYear*365; |
This file contains hidden or 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
private void CalculateBirthdays(int rows, int columns) | |
{ | |
var days = 1; | |
var years = 1; | |
for (var row = 1; row <= rows; row++) | |
{ | |
for (var column = 1; column <= columns; column++) | |
{ | |
var cell = Cells[row, column] as Range; |
This file contains hidden or 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
private void ApplyFormatting(int rows, int columns) | |
{ | |
// Complete surrounding borders of the gray box. | |
Range[Cells[1, 1], Cells[rows, columns]].Interior.Color = Color.LightGray; | |
Range[Cells[1, 1], Cells[rows, columns]].Borders[XlBordersIndex.xlEdgeTop].LineStyle = XlLineStyle.xlContinuous; | |
Range[Cells[1, 1], Cells[rows, columns]].Borders[XlBordersIndex.xlEdgeLeft].LineStyle = XlLineStyle.xlContinuous; | |
Range[Cells[1, 1], Cells[rows, columns]].Borders[XlBordersIndex.xlEdgeBottom].LineStyle = XlLineStyle.xlContinuous; | |
Range[Cells[1, 1], Cells[rows, columns]].Borders[XlBordersIndex.xlEdgeRight].LineStyle = XlLineStyle.xlContinuous; | |
// Set all column width to 2.14. That's a nice looking width. |
NewerOlder