๐Ÿš€ OharaLumina

All Posts

Thumbnail for Posts

Git merge error commit is not possible because you have unmerged files

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Git Git-Merge

I forgot to git pull my code before editing it when I committed the new code and tried to push I got the error push is not possible At that point I did a git

Thumbnail for Posts

git shallow clone clone --depth misses remote branches

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Git Branch Shallow-Clone

After cloning a remote repository it does not show any remote branch by a option What could be the problem How to debug it In this snippet two of the remote

Thumbnail for Posts

Hide header in stack navigator React navigation

๐Ÿ“‚ Categories: Javascript

Im trying to switch screens using both stack and tab navigator const MainNavigation StackNavigator otp screen OTPlogin otpverify screen OTPverification

Thumbnail for Posts

How can I access static class variables within methods

๐Ÿ“‚ Categories: Python

If I have the following code class Fooobject bar 1 def bahself printbar f Foo fbah It complains NameError global name bar is not defined How can I access

Thumbnail for Posts

How can I change a files encoding with vim

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Vim Unicode

Im used to using vim to modify a files line endings file file file ASCII text with CRLF line terminators vim file set ffmac wq file file file ASCII text with

Thumbnail for Posts

How can I echo or print an array in PHP

๐Ÿ“‚ Categories: Php
๐Ÿท๏ธ Tags: Arrays

I have this array Array data gt Array 0 gt Array pageid gt 204725966262837 type gt WEBSITE 1 gt Array pageid gt 163703342377960 type gt COMMUNITY How can I

Thumbnail for Posts

How can I quickly delete a line in VIM starting at the cursor position

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Vim

I want to be able to delete the remainder of the line Im on starting at the cursors position in VIM Is there an easy command to do this To help illustrate this

Thumbnail for Posts

How can I truncate a datetime in SQL Server

๐Ÿ“‚ Categories: Sql

Whats the best way to truncate a datetime value as to remove hours minutes and seconds in SQL Server For example declare SomeDate datetime 20090528 163022

Thumbnail for Posts

How do I declare class-level properties in Objective-C

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Objective-C Cocoa Oop

Maybe this is obvious but I dont know how to declare class properties in ObjectiveC I need to cache perclass a dictionary and wonder how put it in the