marcelpetrick

Get rid of the master-branch @ github

Written by  on October 30, 2016

issue:

solution:

  1. create a fake branch and push it
  2. go to github > $your_repo > settings > branches > default branch and make the fake branch the current one
  3. delete master
  4. push new master
  5. revert the default branch

share a folder via SMB on CLI

Written by  on October 23, 2016

The missing counter-part for this post.

    • create new smb-user pi: “$ sudo smbpasswd -a pi
    • create directory: “$ mkdir freigabeATminipc
    • set rights: “$ sudo chmod 770 freigabeATminipc/
    • edit config: “$ sudo nano /etc/samba/smb.conf
      add at end of the file the following and save-quit (CTRL+X; y)

  • restart: “$ sudo service smbd restart
  • check if everything fits: “$ testparm

Mixing SVN and Git

Written by  on October 23, 2016

When you join a new team, you don’t enforce your view of best tools of trade – instead you adapt to the new environment. Even if that means that you have to switch from your favorite CVS (Git) to something you used last time in 2008 (Subversion) …
I am aware, that the Git-client is fully backward-compatible to SVN and also able to do the most common tasks. But for me it was the branching model, the stashes and also the GUI from SmartGit, which lead me to the idea: why not mix both version-controls in one directory?

steps:

  1. clone the repository via SVN (TortoiseSVN)
  2. run $ git init
  3. add the following stuff to your .gitignore:
  4. add the following exclusions to your TortoiseSVN > Settings > General > Subversion > Global ignore-pattern:
  5. stash, branch, stage as much as you want – use TortoiseSVN for the final commit, which should be published to the team

I use this set-up now for some weeks and it works. Saved me lots of hassles. Because I have not figured out (yet?) how to create local “mile-stones” as safety-backup with SVN.

RPi: force certain resolution for VNC in headless mode

Written by  on October 7, 2016

Edit /boot/config.txt (maybe via “$ sudo nano /boot/config.txt”) and add the following two lines:

Other sources suggest also to tinker with the hdmi_mode, but for my Raspberry Pi 3 this was sufficient.

Full official manual for config.txt.

mount a smb-share (not via fstab!)

Written by  on October 7, 2016

Don’t know how often I did this on several systems and still always(!) have to pick the parameters.

Check for available shares in the network via “smbtree”.

“If Microsoft ever does applications for Linux it means I’ve won.”

Written by  on September 23, 2016

~ Linus Torvalds

I’ve given Visual Studio Code for Linux as prebuilt rpm-package a try. I don’t know what I expected ten minutes ago, but I am definitely under-whelmed! Another editor with syntax-highlighting, code-completion, integrated git-support and the ability to add “extensions” for all kinds of stuff. But: do I miss the trick or how do I start build binaries? (edith: possible via some “we need another build-configuration-system..”-JSON).

vscode

OK, it was fun to test, but now back to my favorite IDE* 😉 gedit & gcc on the terminal can do the same, so I don’t see any reason to use VS Code.  Maybe for Go or one of the other languages, but not C++.

*QtCreator

screencast @ Linux: byzanz

Written by  on September 18, 2016

Wanted to illustrate an annoying fact by a short animated clip.
byzanz is the tool to go. And this guy describes how to install and use it via a small helper-script.

test

apt-fast as multi-connection drop-in-replacement for apt-get

Written by  on September 14, 2016
  • how to install
  • edit “$ sudo gedit /etc/apt-fast.conf” in line “DOWNLOADBEFORE=true” to get rid of the annoying question-dialog (if you intend to use apt-fast, you don’t care about pre-loading stuff ..)
  •  how to use: $ sudo apt-fast update && sudo apt-fast dist-upgrade

Not much more to add. Can’t wait for a full reinstall and then testing apt-fast with the whole distributio-update. Use it now for month – updating has never been faster. Poor OSX- and Windows-users ..

aseprite: how to build @ Linux

Written by  on August 31, 2016

What should i say? I was searching for a more sophisticated GIF-editor to create more smooth animation-loops. Then I saw aseprite. Binaries require “donation”, so why not build it yourself since it is OSS? Sadly there were no clear official hints on how to build on Linux.
Turns out this guide is giving the correct directions:

Estimate quickly the ‘size’ of the project

Written by  on August 9, 2016

Nothing in comparison to SLOCCount or other tools, but sometimes you just need a ‘value‘ 😉


103 ./main.cpp
90 ./map.cpp
35 ./map.h
63 ./mapitem.cpp
29 ./mapitem.h
122 ./mapprocessor.cpp
27 ./mapprocessor.h
79 ./mapreader.cpp
23 ./mapreader.h
571 total

edith 20160819: sort the result before counting for a much nicer appearance 😉