Skip to content

Instantly share code, notes, and snippets.

<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
<excludeFolder url="file://$MODULE_DIR$/temp" />
<excludeFolder url="file://$MODULE_DIR$/tmp" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
<excludeFolder url="file://$MODULE_DIR$/temp" />
<excludeFolder url="file://$MODULE_DIR$/tmp" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
@HAfsari
HAfsari / untitled_.idea_modules.xml
Created October 7, 2017 06:17
Angular + Bootstrap
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/untitled.iml" filepath="$PROJECT_DIR$/.idea/untitled.iml" />
</modules>
</component>
</project>
@kennycoder
kennycoder / 0001-updated-for-tb78.patch
Last active May 1, 2024 19:48
Markdown Here patch for Thunderbird 78+
From: Nikolai Danylchyk
Date: Sun, 28 Mar 2021 18:32:05 +0200
Subject: [PATCH] updated for tb78+
---
src/chrome/backgroundscript.js | 38 +++++--
src/common/markdown-here.js | 2 +-
src/common/options-iframe.js | 2 -
src/common/options-store.js | 121 +----------------------
src/common/options.js | 10 --
@SivaTeja-mountblue
SivaTeja-mountblue / Athikari_Siva_Teja_CLI_Drills_II_1
Last active May 1, 2024 19:47
Athikari_Siva_Teja_CLI_Drills_II
siva@siva-IdeaPad-3-14ITL6:~$ mkdir drill2
siva@siva-IdeaPad-3-14ITL6:~$ cd drill2
siva@siva-IdeaPad-3-14ITL6:~/drill2$ wget https://raw.githubusercontent.com/bobdeng/owlreader/master/ERead/assets/books/Harry%20Potter%20and%20the%20Goblet%20of%20Fire.txt
--2022-03-02 14:44:55-- https://raw.githubusercontent.com/bobdeng/owlreader/master/ERead/assets/books/Harry%20Potter%20and%20the%20Goblet%20of%20Fire.txt
Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 2606:50c0:8000::154, 2606:50c0:8002::154, 2606:50c0:8003::154, ...
Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|2606:50c0:8000::154|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1140643 (1.1M) [text/plain]
Saving to: ‘Harry Potter and the Goblet of Fire.txt’
@simonista
simonista / .vimrc
Last active May 1, 2024 19:47
A basic .vimrc file that will serve as a good template on which to build.
" Don't try to be vi compatible
set nocompatible
" Helps force plugins to load correctly when it is turned back on below
filetype off
" TODO: Load plugins here (pathogen or vundle)
" Turn on syntax highlighting
syntax on
@mau21mau
mau21mau / README.md
Last active May 1, 2024 19:47
Configure Celery + Supervisor With Django
@mattbell87
mattbell87 / remote-wsl.md
Last active May 1, 2024 19:46
VSCode Remote: Connect to WSL2 from another machine

VSCode Remote: Connect to WSL2 from another machine

Do you want to do remote development on your WSL2 container in Visual Studio Code? Read this.

Proxy jump method

  1. On the host set up OpenSSH for Windows
  2. Run wsl --update to make sure you are running the latest WSL
  3. Open WSL and install another SSH server inside WSL with sudo apt-get install openssh-server
  4. Now run sudo systemctl enable --now ssh to automatically start ssh when WSL starts.
@dvoracek-jakub
dvoracek-jakub / WP_BootstrapNavigation.php
Last active May 1, 2024 19:45
Wordpress navigation in Bootstrap style
<?php
/**
* Class for rendering Wordpress navigation in Bootstrap style
*/
namespace YourCompany\Helpers;
Class Pagination
{