Pathikrit Bhowmick

Results 72 issues of Pathikrit Bhowmick

e.g: setExecutable() unsetExecutable() setGroupReadable() unsetUserWritable() See also: http://docs.oracle.com/javase/8/docs/api/java/nio/file/AccessMode.html

feature

[build.sbt](https://github.com/pathikrit/better-files/blob/800d63d31582b4119074e0593d257992c1b3cbee/build.sbt) ``` > sbt +release [info] Loading settings for project global-plugins from idea.sbt,metals.sbt ... [info] Loading global plugins from /Users/pbhowmick/.sbt/1.0/plugins [info] Loading settings for project better-files-build from plugins.sbt ... [info]...

I followed the instructions [from here](https://stackoverflow.com/questions/45963559/how-to-release-a-scala-library-to-maven-central-using-sbt/45963560#45963560) to try and release http://github.com/pathikrit/better-files: I ran `gpg --gen-key` and then published it: ```shell gpg --keyserver hkp://keyserver.ubuntu.com --send-keys B7A1CFF9DE8A59DDBEFD757EE5A22FE38BE4B973 gpg: sending key E5A22FE38BE4B973 to...

e.g. http://forecast.io/ and http://earth.nullschool.net/

enhancement

Example: https://github.com/davegurnell/bulletin

* [ ] Go between Java SQL APIs to JSR-310 APIs: ``` java.sql.Date java.time.LocalDate java.sql.Time java.time.LocalTime java.sql.Timestamp java.time.Instant ``` * [ ] Go between legacy Java date APIs to JSR-310...

See: http://zafar.cc/2017/7/19/hungarian-algorithm/ and http://www.math.harvard.edu/archive/20_spring_05/handouts/assignment_overheads.pdf

```java int maxFlow(int[][] cap, int source, int sink) { for (int flow = 0; ; ++flow) if (!augmentPath(cap, new boolean[cap.length], source, sink)) return flow; } boolean augmentPath(int[][] cap, boolean[] vis,...

```scala class ModularArithmetic(val mod: Long) { class Mod(val value: Long) { override val toString = value.toString } implicit def fromMod(mod: Mod): Long = mod.value implicit def toMod(x: Long): Mod =...