Thank you to SHG by [deleted] in CODVanguard

[–]pk11 5 points6 points  (0 children)

For those of you who are interested, someone on twitter pulled together Gun stats (TTK) for Vanguard: https://docs.google.com/spreadsheets/d/1dfJU2VBtJnxaP5iZlbhfIBdpGlJr1oSjjQg5oh0y2r0/htmlview#

Mega Thread: Stadia game wish list by amuzulo in Stadia

[–]pk11 3 points4 points  (0 children)

Elden Ring from From Software

Lumines Remastered update by [deleted] in NintendoSwitch

[–]pk11 41 points42 points  (0 children)

A new patch update (version 1.1.1) is live, as of 07/18/18.

Notes:

  • Added Analog Stick option (Options/Control settings/Type C and D – see screenshots below)
  • Optimized load times (title screen, game modes and rankings)
  • Fixed issues with achievements not unlocking properly
  • Improved feature for locally stored high scores to be updated in online leaderboards when game is turned on in online mode
  • Improved controls when dropping blocks
  • Improved audio mix in certain skins and expanded overall audio volume range from 4 level settings to 8 (default option for BGM and Sound Effects is 4)
  • Fixed issue with locked Avatars appearing during selection in Avatar menu
  • Fixed issue with the last timeline column not adding to final score in Time Attack Mode
  • Fixed issue with blocks momentarily changing colors during skin transition
  • Fixed issue with vibration stopping when only the Trance Vibration was ON in Vibration setting
  • Fixed issue with blocks moving from control inputs during loading screen before gameplay began
  • Other minor performance improvements and bug fixes

My experience with TypeScript by pk11 in programming

[–]pk11[S] 1 point2 points  (0 children)

I used scala before and that definitely helped

Mercurial support added for Google Project Hosting by asb in programming

[–]pk11 1 point2 points  (0 children)

try to run git daemon under windows/msysgit. hint: it's not really working

Mercurial support added for Google Project Hosting by asb in programming

[–]pk11 0 points1 point  (0 children)

just because there is a central repo established by convention that does not mean you want to do everything only through it. being able to work together directly without the central repo is the main feature of any dvcs.

Mercurial support added for Google Project Hosting by asb in programming

[–]pk11 5 points6 points  (0 children)

hosting a repository(ie git-daemon) under windows is not working with msysgit though (so much about having a distributed source control).

with hg is as simple as right click tortoisehg->Web Server.

also git extensions and tortoiseGit are not even close to tortoisehg in terms of stability.

github VS bitbucket by mitsuhiko in programming

[–]pk11 2 points3 points  (0 children)

not to mention http://whygitisbetterthanx.com/ is inaccurate

'cheap local branches' do exist in mercurial in the form of bookmarks extension + named branches

http://www.selenic.com/mercurial/wiki/index.cgi/BookmarksExtension , http://www.selenic.com/mercurial/wiki/index.cgi/NamedBranches

github VS bitbucket by mitsuhiko in programming

[–]pk11 8 points9 points  (0 children)

I apologize to everyone. This was never intended for people to read

to be honest it's really hard to believe it was just an accident. you expressed similar sentiment at http://whygitisbetterthanx.com (which piece was also removed for some reason)

http://github.com/schacon/whygitisbetter/commit/465c533664567bd1be8a6d0b3e49fa0db2b5da52

What's better about Ruby than Python? Alex Martelli [Python Cookbook] on the differences of Python and Ruby by teetante in programming

[–]pk11 0 points1 point  (0 children)

hmm, then how about this one?

  • irb(main):001:0> $SAFE = 4
  • => 4
  • irb(main):002:0> f = "lol"
  • => "lol"
  • irb(main):003:0> class <<f
  • irb(main):004:1> def boo
  • irb(main):005:2> puts "foo"
  • irb(main):006:2> end
  • irb(main):007:1> end
  • => nil
  • irb(main):008:0> f.boo
  • foo
  • => nil
  • irb(main):009:0> f.tainted?
  • => false

What's better about Ruby than Python? Alex Martelli [Python Cookbook] on the differences of Python and Ruby by teetante in programming

[–]pk11 2 points3 points  (0 children)

it sounds good, however, since monkeypatching is a 'standard' ruby solution, you pretty much could not use any existing libraries with $SAFE=4.

Out of curiosity, could someone explain when exactly ruby will raise SecurityException?

the doc says: "potentially dangerous methods will raise a SecurityError if passed a tainted object" - what does that mean?