Shutfim - Home for Jewish Professionals
    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Users
    • Groups
    1. Home
    2. yzahn
    • Profile
    • Following 0
    • Followers 1
    • Topics 2
    • Posts 45
    • Best 26
    • Controversial 0
    • Groups 1
    • Blog

    yzahn

    @yzahn

    48
    Reputation
    50
    Profile views
    45
    Posts
    1
    Followers
    0
    Following
    Joined Last Online
    Location ירושלים

    yzahn Unfollow Follow
    DSP

    Best posts made by yzahn

    • RE: Windows tricks you might not know

      Press ctrl+c to copy the text from an error message.
      No need to painstakingly copy it out into the Google search…
      This works for all standard OS supplied message boxes.
      e.g.
      c339e1be-b0c4-4d5f-b749-e732dd12b603-image.png
      will copy as:

      ---------------------------
      Error!!!
      ---------------------------
      Error: 0xc000005. Access violation.
      ---------------------------
      OK   Cancel   
      ---------------------------
      
      posted in Software
      yzahn
      yzahn
    • RE: Hebrew font

      Note that these fonts are not free.
      You may want to think twice before using them for commercial use without paying, especially since they belong to a Jewish company.

      posted in Graphic Design
      yzahn
      yzahn
    • RE: Spellchecker for Lashon Hakodesh in Word

      This is free to distribute. I can’t find the source now for credit.
      CUSTOM.zip

      posted in Software
      yzahn
      yzahn
    • RE: Dynamic Email routes

      @Williamsburg sure it’s possible, and it shouldn’t be too difficult either.
      I will speak about Mailgun because I am familiar with them, but it may be possible with other services also.
      In Mailgun you route incoming email using “routes”. e.g. you can declare a route commanding mailgun to forward all mails who’s recipient address matches a certain regex to a certain email.
      The routing mechanism is controllable through the web UI and also programatically via their API.
      Their API documentation is clear and easy to understand.
      Basically you will need to programatically create a new route whenever a listing is added. It can be achieved using a simple POST request.

      posted in Development & Programming
      yzahn
      yzahn
    • RE: Populer Software Alternatives

      @CtrlAltDel said in Populer Software Alternatives:

      https://www.freephototool.com/

      That’s just photopea in an iframe with more ads… why not use the original?

      posted in Software
      yzahn
      yzahn
    • RE: How to create multiple txt files with incrementing numbers?

      How about something like this (run in CMD):

      FOR /L %G IN (1,1,100) DO mkdir %G & echo > %G\name-%G.txt
      
      posted in Development & Programming
      yzahn
      yzahn
    • RE: How to determine if PC is x32 or x64

      @Knaper-Yaden why don’t you try this simple experiment:
      run

      "C:\Windows\SysWOW64\cmd.exe" /c echo ^%processor_architecture^%
      

      on a 64bit machine…

      posted in Hardware
      yzahn
      yzahn
    • RE: How to create multiple txt files with incrementing numbers?

      @twist
      This slight correction will fix that:

      FOR /L %G IN (1,1,100) DO mkdir %G & echo. > %G\name-%G.txt
      
      posted in Development & Programming
      yzahn
      yzahn
    • RE: How to secure a server

      @Chocolate said in How to secure a server:

      I din’t get the point, if they will manage to crack my pass then whats the difference if it’s root on a non-root with sudo privileges? they can do whatever they wand with sudo.

      You are right if they have your password.
      There ways of getting into an account without having the password.

      Anything else to do except for whitelisting inbound connections, it’s not really possible for me to do that?

      It’s possible to whitelist/blacklist complete ranges of addresses. IDK, maybe that would work for you.

      Just out of curiosity how do they manage to hack a 16 digit password that is a combination of letters caps & digits, it should take years, no?

      It is indeed very very unlikely that they brute-forced/guessed a strong password.
      Why are you sure that they got in via SSH? Did you go through logs?
      Maybe your password was in the clear somewhere?
      There are many possibilities.
      It is כדאי to understand how they got in, in order to protect yourself in future.

      what are those guys gaining? except for them deleting a couple of files nothing changed, whats their goal?

      1. Not all servers are as invaluable as yours… until they get in they don’t know what valuable information may be there.
      2. Often they will run a bitcoin miner…
      3. They can earn a ransom sometimes by encrypting your files.
      4. They can make it part of a botnet.

      BTW, the general rule in the industry is that once bad guys have gotten on to your server, you should never trust it again. i.e. wipe it and start fresh.

      posted in Internet & Networking
      yzahn
      yzahn
    • RE: How to create multiple txt files with incrementing numbers?

      @twist said in How to create multiple txt files with incrementing numbers?:

      I need the files to contain the same number as the folder number

      oh…
      So this:

      FOR /L %G IN (1,1,100) DO mkdir %G & echo %G > %G\number.txt
      
      posted in Development & Programming
      yzahn
      yzahn

    Latest posts made by yzahn

    • RE: Hebrew font

      @ck-design it’s not me who has to agree to your טענה - it’s the רבש"ע…

      posted in Graphic Design
      yzahn
      yzahn
    • RE: Hebrew font

      Note that these fonts are not free.
      You may want to think twice before using them for commercial use without paying, especially since they belong to a Jewish company.

      posted in Graphic Design
      yzahn
      yzahn
    • RE: How to create multiple txt files with incrementing numbers?

      @twist that’s weird. copy should work on any file extension.

      posted in Development & Programming
      yzahn
      yzahn
    • RE: How to create multiple txt files with incrementing numbers?

      @twist hmm…
      Do you get the error 100 times?

      posted in Development & Programming
      yzahn
      yzahn
    • RE: How to create multiple txt files with incrementing numbers?

      @twist did you replace xxx.mp4 in the code with the real file name?

      posted in Development & Programming
      yzahn
      yzahn
    • RE: How to create multiple txt files with incrementing numbers?

      @twist you need to make sure all the paths are correct.

      posted in Development & Programming
      yzahn
      yzahn
    • RE: How to create multiple txt files with incrementing numbers?

      @twist how about this:

      FOR /L %G IN (1,1,100) DO copy xxx.mp4 %G
      

      (Make sure that you are running the command prompt in the parent directory of the folders, if not first run cd c:\xxx replacing xxx with the parent directory of the folders, if the file xxx.mp4 is not in the same directory you will need to write the full path to the file in the command).

      posted in Development & Programming
      yzahn
      yzahn
    • RE: How to create multiple txt files with incrementing numbers?

      @twist I’m not sure what you mean. You have a file and you want to copy the exact same file to multiple folders? Please explain clearly exactly what you need.

      posted in Development & Programming
      yzahn
      yzahn
    • RE: How to create multiple txt files with incrementing numbers?

      @twist said in How to create multiple txt files with incrementing numbers?:

      I need the files to contain the same number as the folder number

      oh…
      So this:

      FOR /L %G IN (1,1,100) DO mkdir %G & echo %G > %G\number.txt
      
      posted in Development & Programming
      yzahn
      yzahn
    • RE: How to create multiple txt files with incrementing numbers?

      @twist
      This slight correction will fix that:

      FOR /L %G IN (1,1,100) DO mkdir %G & echo. > %G\name-%G.txt
      
      posted in Development & Programming
      yzahn
      yzahn