I'll be talking about all things Rails, Python, Ruby and Java among other topics in this blog. I also enjoy a bit of system programming, so my fun with WebOS, Win32 and Solaris may show up here too.
Interesting technology
Get link
Facebook
X
Pinterest
Email
Other Apps
Found an interesting project called vertx.x I might end up trying to port it to the CLR using the technology that the folks over at the mono-project used for porting android's java layer to C#
Just a note. Azure App services do not directly support 64bit dotnet core applications. https://blogs.msdn.microsoft.com/webdev/2018/01/09/64-bit-asp-net-core-on-azure-app-service/
After trying to find an answer, i found one at http://weblog.rubyonrails.org/2007/12/7/rails-2-0-it-s-done from blog comment #83. Apparently there is a need to seed the session key in the session, with a 30+ character string. In your config/enviornment.rb within the Rails::Initializer.run do |config| / end block add the following: config.action_controller.session = { :session_key => "_myapp_session", :secret => "Any 30+ character string will do here, so choose whatever"} Hope this helps. Enjoy Rails 2.0+
Parsing for fun and profit I remember creating parsers to be a bit harder. I tried using Antlr when doing the JavaFX DLR project and failed at it miserably. It felt messy. I couldnt get a feel for how to structure the document, etc. I was drawn to the Irony parser framework because declaring the grammar in C# somehow felt (at the time) cleaner and it seemed to allow for more expressive statements and character logic. I am not sure if it was my previous experience with parsing and Antlr (or Irony), or how clean and expressive the GOLD parser framework is, but I've been able to create a working parser in just a few days of coding. And by working, I mean it parses and understands valid LLVM IR straight from the project's documentation: I actually implemented a a lot more operations and keywords needed to parse the example. It was just easier that way. I am going to now start building an AST. I've decided to be a bit aggressive because I think the AST will drive ...
Comments