๐Ÿš€ OharaLumina

All Posts

Thumbnail for Posts

What are the pros and cons of the Apache Parquet format compared to other formats

๐Ÿ“‚ Categories: Programming

Some characteristics of Apache Parquet are Selfdescribing Columnar format Languageindependent In comparison to Apache Avro Sequence Files RC File etc I want an

Thumbnail for Posts

What does function jQuery mean

๐Ÿ“‚ Categories: Javascript
๐Ÿท๏ธ Tags: Jquery Iife

I am just starting out with writing jQuery plugins I wrote three small plugins but I have been simply copying the line into all my plugins without actually

Thumbnail for Posts

what does the file variable meando

๐Ÿ“‚ Categories: Python
๐Ÿท๏ธ Tags: Self-Reference

import os A ospathjoinospathdirnamefile B ospathdirnameospathrealpathfile C ospathabspathospathdirnamefile I usually just hardwire these with the actual path

Thumbnail for Posts

What does view do in PyTorch

๐Ÿ“‚ Categories: Python

What does view do to the tensor x What do negative values mean x xview1 16 5

Thumbnail for Posts

What is the best practice for dealing with passwords in git repositories

๐Ÿ“‚ Categories: Bash

Ive got a little Bash script that I use to access twitter and pop up a Growl notification in certain situations Whats the best way to handle storing my

Thumbnail for Posts

What is the difference between Strategy design pattern and State design pattern

๐Ÿ“‚ Categories: Programming

What are the differences between the Strategy design pattern and the State design pattern I was going through quite a few articles on the web but could not

Thumbnail for Posts

What is the difference between var var and var in the Bash shell

๐Ÿ“‚ Categories: Bash
๐Ÿท๏ธ Tags: Shell Variables Syntax

What the title says what does it mean to encapsulate a variable in or I havent been able to find any explanations online about this I havent been able to refer

Thumbnail for Posts

What is the point of LookupTKey TElement

๐Ÿ“‚ Categories: C#
๐Ÿท๏ธ Tags: .Net Linq Lookup

The MSDN explains Lookup like this A LookupltTKey TElementgt resembles a DictionaryltTKey TValuegt The difference is that a DictionaryltTKey TValuegt maps keys

Thumbnail for Posts

When is finally run if you throw an exception from the catch block

๐Ÿ“‚ Categories: C#
๐Ÿท๏ธ Tags: C#

try Do stuff catch Exception e throw finally Clean up In the above block when is the finally block called Before the throwing of e or is finally called and