Skip to content

Instantly share code, notes, and snippets.

View msarsha's full-sized avatar
🏠
Working from home

Matan Sar-Shalom msarsha

🏠
Working from home
View GitHub Profile
@msarsha
msarsha / room.yaml
Last active October 2, 2024 20:41
room card
card:
type: custom:mushroom-template-card
primary: הורים
secondary: ''
icon: mdi:bed-double
layout: vertical
fill_container: false
multiline_secondary: false
tap_action:
action: navigate
@msarsha
msarsha / cifs_automount.md
Last active July 19, 2024 05:06 — forked from akiross/cifs_automount.md
Automatically mount shared windows folders at boot on linux w/ systemd

Automount of CIFS (smbfs) folders w/ systemd

i.e. mounting your Windows shares on Linux at boot

First, let's see how to mount the remote directory. Assume that there is a shared folder over the network at \\192.168.1.1\users\self\shared which is accessible with user myuser and password secret123.

We could mount it manually in /mnt/winshare with:

# mount -t cifs //192.168.1.1/users/self/shared /mnt/winshare -o user=myuser,password=secret123

This should work on your Linux box, because systemd will basically call mount with the same arguments: What (//192.168.1.1/users/self/shared), Where (/mnt/winshare) and Options (user=myuser,password=secret123).

Proxmox

So if you're using Proxmox you need to open up ssh and run the following commands:

  1. Setup a root password
sudo passwd root
@msarsha
msarsha / timers.ts
Last active September 9, 2021 20:41
timers
// useTimer.tsx
function useTimer(timer: Timer) {
const { dispatch } = useContext(TimersContext);
const timeoutRef = useRef<number>();
useEffect(() => {
if (timer.done || timer.paused) {
cleanUp();
timeoutRef.current = 0;
} else {
export class MyComponent {
polling$ = interval(60000);
data$ = this.service.getData();
dataPolling$ = this.polling$.pipe(
switchMap(() => this.data$)
);
//Now you have two options, either .subscribe() in the constructor or use the async pipe
storeList$: Observable<Map<string,number>>;
stores$: Observable<string[]>;
ngOnInit() {
this.stores$ = this.itemsQuery.selectAll().pipe(map(entities =>
entities.map(entity => entity.store)
// .filter((elem, index, self) => {
// return index === self.indexOf(elem);
// })
));
getRate() {
this.items$ = this.service.getConversion()
.pipe(
tap((data) => {this.conversionRate = data.rates.USD;}),
switchMap(() => this.createItemsObservable())
)
}
private createItemsObservable(): Observable<Item[]>{
return this.itemsQuery.selectAll()
const createRequestTwo(data): Observable<any>{
return this.http.post(url, data);
}
return requestOne
.pipe(
switchMap(
(requestOneResult) => {return createRequestTwo(requestOneResult)}
)
).subscribe((requestTwoResult) => {...})
// --------
const singleTree = {
branches: [],
operation: null,
value: {
dataSource: 'customer props',
fieldOrFunc: 'installation date',
operation: {
name: 'between',
@msarsha
msarsha / tree.ts
Created January 22, 2020 09:57
tree
// --------
const singleTree = {
branches: [],
operation: null,
value: {
dataSource: 'customer props',
fieldOrFunc: 'installation date',
operation: {
name: 'between',