Fix “OBS did not shut down properly during your last session” in Linux
OBS is awesome program but sometimes boring because it is giving this error. Let me show fix error:
General
OBS is awesome program but sometimes boring because it is giving this error. Let me show fix error:
This issue took me 6 months to figure this out. Adding explicit lifetime to the biggest function is what will make it clear to the rust compiler that a and b need to stay in scope just as long as return value. so once we add lifetimes to biggest we Devamı…
Every developer has own settings for each IDE. Because everybody have different habits and experiences. Now let me share my own settings for vscode. The config file path: .vscode/settings.json { “editor.tabSize”: 4, “search.exclude”: { “**/.git/objects/**”: true, “**/.git/subtree-cache/**”: true, “**/node_modules/*/**”: true, “**/bower_components”: true, “**/*.code-search”: true, “**/dist/*/**”: Devamı…
If you disabled IPv6 in your centos installation then you can receive some bad problems. Some services needs ipv6 for default and if you disable ipv6 systemvide then these services not working correctly. For example Amavisd. If amavisd not working correctly you can’t send and receive mails in your server. Devamı…
I’m creating ReactJS applications using “create-react-app” command. Then it creating a fresh react application and I’m using it. I’m coding and coding then building with “npm run build” command. Everything is nice until here but there is a problem after finishing build. It creating a map file under build/static/js/main.[uniquid].map file Devamı…
Örneğin birkaç tane DNS sunucunuz var. Hangi domain hangisinde tanımlı olduğunu öğrenmek istiyorsunuz. Komut satırından bu işi yapmanız mümkünç. İşte gerekli komut: dig @your.dns.server www.foo.bar Bu komut sayesinde istediğiniz domainin belirli serverda tanımlı olup olmadığını kontrol edebilirsiniz. Farklı domainlar farklı sunucularda barınması durumunda çok işe yarayan bir komut. Örneğin google.com domaininin 8.8.8.8 Devamı…
İlk “Merhaba Dünya” programımı yazdığımdan bu yana 10 yıl geçmiş. O günden bugüne kadar hep kendimi geliştirmeye, yazılım dünyasındaki gelişmeleri takip etmeye, iyi bir programcı olmaya çalıştım. Teknik lise ve üniversite boyunca hep teknik derslere ağırlık verdim. Bu derslerin sınavlarına hiç çalışmayarak veya çok az çalışarak girip yüksek not alıyordum. Devamı…
Actually everything in the web is a service. When you enter to a website lots of things doing in behind the door. Your browser makes GET request to the server. In this request sending cookie data, browser capabilities and data for server process. A typical GET request is seems like Devamı…
This so important thing. Becouse when you use some libraries with Codeigniter that library using native PHP session functions but Codeigniter not. This is so big problem. There is a method that you can use codeigniter’s session methods and native PHP session. We’re using Codeigniter version 2.2.0. I didn’t try this Devamı…
Önceki yazımda belirttiğim gibi Laravel çatısı çok bencildir. Koskoca sunucuyu sırf kendisini çalıştırmamız için konfigüre etmemizi ister. Apache veya Nginx’i Laravel için ayarlamamız gerekiyor. Laravel büyük ekiplerle büyük projeleri yapabilmek için geliştirilmiş bir çatı olduğu için bu istek mazur görülebilir ama herkes böyle büyük projeler geliştirecek diye bir kaide yok. Devamı…