- It's very hard to see what application are open/closed. Perhaps this is my colour scheme (dark grey) but the small dark bar at the bottom of the task bar is hard to see.
- Left clicking on an icon in the task bar frequently results in the popup menu appearing (as if I'd right clicked). This is seriously annoying.
- The notifications pane is now missing the 'clear all' button. I have to clear the notifications out by their grouping.
- The buttons at the bottom of the notification are a confusing. There are too many. The 'tablet mode' button looks activated, but it isn't.
- The start menu has failed to disappear, requiring a restart.
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
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
using System.Drawing; | |
using SixLabors.ImageSharp; | |
using SixLabors.ImageSharp.Processing; | |
using SixLabors.ImageSharp.PixelFormats; |
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
declare @Result varchar(max) | |
declare @TableName varchar(256) | |
DECLARE table_cursor CURSOR | |
FOR Select name from sysobjects where xtype = 'U' -- or 'V' | |
OPEN table_cursor | |
FETCH NEXT FROM table_cursor | |
INTO @TableName |
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
#requires -Module @{ModuleName="PSGit"; ModuleVersion="2.0.4"}, @{ModuleName="PowerLine"; ModuleVersion="2.0.0"} | |
using module PowerLine | |
using namespace PowerLine | |
$PowerLinePrompt = 1, | |
( | |
$null, # No left-aligned content on this line | |
@( | |
@{ text = { New-PowerLineBlock (Get-Elapsed) -ErrorBackgroundColor DarkRed -ErrorForegroundColor White -ForegroundColor Black -BackgroundColor DarkGray } } | |
@{ bg = "Gray"; fg = "Black"; text = { Get-Date -f "T" } } |
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
### Keybase proof | |
I hereby claim: | |
* I am richorama on github. | |
* I am richorama (https://keybase.io/richorama) on keybase. | |
* I have a public key whose fingerprint is 3F9F 7D8D BD9A 3F05 D15D 3ECA E2BE 296E 5F49 7418 | |
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
Show hidden characters
{ | |
"auto_match_enabled": false, | |
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", | |
"font_options": | |
[ | |
], | |
"font_size": 15, | |
"gutter": false, | |
"ignored_packages": | |
[ |
My comment on http://www.nomorejavascript.com/ was deleted. So much for a fair and balanced discussion.
I think the idea is noble, but the people behind the idea are clearly inept.
One big reason JavaScript will be hard to replace is that it's been through years of battle testing and it's security holes have mostly been patched. You would have to start this process from scratch with a new language, which in itself is a good reason not to bother.
Here are my comments in reponse to their arguments for a new language:
- Camel casing is not a language feature. You can use underscores in your variable names if you want.
- node.js is not a library, it's a JavaScript runtime.
NewerOlder